:root {
  color-scheme: light dark;
  --bg: #fafaf9;
  --fg: #1c1c1a;
  --muted: #6b6b66;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161614;
    --fg: #f2f2ef;
    --muted: #9a9a94;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  padding: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.status {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
