:root {
  --bg: #0e0e10;
  --fg: #e8e6e3;
  --muted: #8a8681;
  --accent: #7dd3a0;
  --rule: #26262a;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #faf9f7;
    --fg: #1a1a1c;
    --muted: #6b6862;
    --accent: #1f8b57;
    --rule: #e2e0dc;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 2rem clamp(1.5rem, 8vw, 8rem);
  background: var(--bg);
  color: var(--fg);
  font: 400 16px/1.6 ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "liga" 0;
}

main { max-width: 44ch; }

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
}

.blurb {
  margin: 0 0 2.25rem;
  color: var(--muted);
  text-wrap: pretty;
}

nav {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

a:hover,
a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

footer {
  color: var(--muted);
  font-size: 0.75rem;
}
