:root {
  --bg: #0d0d10;
  --fg: #f4f2ee;
  --muted: #8d8a84;
  --accent: #ff6b1a;
  --font: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.5;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
}

main {
  max-width: 38rem;
  text-align: center;
}

.wordmark {
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.wordmark span { color: var(--accent); }

.tagline {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.status {
  display: inline-block;
  border: 1px solid rgba(244, 242, 238, 0.18);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

footer {
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

footer a { color: inherit; }

@media (prefers-reduced-motion: no-preference) {
  main { animation: fade 0.6s ease-out both; }
  @keyframes fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }
}
