:root {
  color-scheme: dark;
  --bg: #101417;
  --panel: #151b1f;
  --text: #e8edf0;
  --muted: #9ca8af;
  --rule: #2b363c;
  --accent: #7dd3c7;
  --accent-soft: #294642;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 40px, 900px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-content: center;
  align-items: start;
  gap: clamp(32px, 8vw, 88px);
  padding: 64px 0;
}

.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.84rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 700;
}

.summary {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 0.95rem;
}

.location svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  font-size: 0.95rem;
}

.status {
  border: 1px solid var(--rule);
  background: var(--panel);
  box-shadow: 8px 8px 0 var(--accent-soft);
}

.bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--rule);
}

.bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.bar span:first-child {
  background: var(--accent);
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
}

code {
  font: inherit;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 520px);
    grid-template-columns: 1fr;
    align-content: center;
    align-items: stretch;
    padding: 48px 0;
  }

  .status {
    box-shadow: 6px 6px 0 var(--accent-soft);
  }
}
