/* Standalone pages: they sit outside the SPA bundle so Google's review and any
   visitor with JavaScript disabled can read them. Tokens are duplicated rather
   than imported for the same reason -- these must render with no build step and
   no application CSS. Keep them in sync with src/ui/tokens.css by hand; there is
   very little here and it changes rarely. */
:root {
  color-scheme: dark;
  --surface-base: #040816;
  --text-primary: #dae2fd;
  --text-muted: #94a3b8;
  --text-strong: #ffffff;
  --line-soft: rgba(255, 255, 255, 0.08);
  --state-live: #4cd7f6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 48px 24px 96px;
  background: var(--surface-base);
  color: var(--text-primary);
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
main { max-width: 68ch; margin: 0 auto; }
a { color: var(--state-live); }
h1 { font-size: 32px; line-height: 1.15; letter-spacing: -0.03em; color: var(--text-strong); margin: 0 0 8px; }
h2 { font-size: 19px; letter-spacing: -0.015em; color: var(--text-strong); margin: 40px 0 8px; }
.updated { margin: 0 0 40px; color: var(--text-muted); font-size: 14px; }
.back { display: inline-block; margin-bottom: 32px; font-size: 14px; }
ul { padding-left: 20px; }
li { margin-bottom: 8px; }
strong { color: var(--text-strong); }
.note { border: 1px solid var(--line-soft); border-radius: 12px; padding: 16px 18px; margin: 32px 0; color: var(--text-muted); font-size: 15px; }
