:root {
  --bg: #f8f9ff;
  --ink: #1a1a2e;
  --muted: #5a5a78;
  --accent: #f97316;
  --max-w: 48rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0c14;
    --ink: #e8e8f0;
    --muted: #8a8aa8;
    --accent: #fb923c;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
}

main {
  max-width: var(--max-w);
  width: 100%;
  text-align: left;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.brand__icon {
  display: block;
  width: clamp(80px, 12vw, 112px);
  height: auto;
}

.brand__wordmark {
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}

.brand__accent {
  font-weight: 700;
  color: var(--accent);
}

h1 {
  font-size: clamp(1.25rem, 5.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  white-space: nowrap;
}

.status {
  font-size: 1.0625rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: -0.005em;
}
