/* Automatic dark mode — linked only by /privacy and /terms, not the
   landing page (index.html deliberately stays light-only, per explicit
   scope). Follows the visitor's OS/browser setting, no manual toggle.
   Reuses the mobile app's own established dark "Midnight" palette
   (src/constants/auth-theme.ts) for brand consistency rather than
   inventing new dark tokens. */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1116;
    --paper: #171b22;
    --ink: #eaedf2;
    --body: #c2c8d2;
    --sub: #7c8595;
    --nav-muted: rgba(234, 237, 242, 0.55);
    --line: rgba(255, 255, 255, 0.08);
    --red: #ff453a;
    --footer-bg: #171b22;
    --footer-text: rgba(234, 237, 242, 0.62);
    --footer-muted: rgba(234, 237, 242, 0.35);
    --logo-plate: none;
    --logo-track: rgba(255, 255, 255, 0.16);
  }
}
