/* Kept in its own file so the page needs no 'unsafe-inline' in its CSP. */
:root {
  --bg: #fbfbfa;
  --fg: #1a1a18;
  --muted: #6b6b66;
  --line: #e4e4e0;
  --accent: #2f6f4f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161614;
    --fg: #ededea;
    --muted: #9a9a93;
    --line: #2c2c28;
    --accent: #7fc4a0;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 30rem; width: 100%; }

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lede { margin: 0; color: var(--muted); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}
