:root {
  color-scheme: light dark;
  --bg: #fdfaf5;
  --fg: #1f2320;
  --accent: #2f7d5b;
  --muted: #6b6f6c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14201a;
    --fg: #f2f0ea;
    --accent: #5fbf94;
    --muted: #a2a89f;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-align: center;
}

main {
  padding: 2rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.tagline {
  font-size: 1.25rem;
  margin: 0 0 2rem;
}

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