:root {
  color-scheme: light dark;
  --bg: #0f0f10;
  --fg: #f4f4f5;
  --muted: #9a9aa2;
}

* {
  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", Roboto, sans-serif;
  text-align: center;
}

.wrap {
  padding: 2rem;
}

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

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

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