/**
 * Sophia STARS — dark theme (roadmap Phase 1, §1.1)
 *
 * Token overrides ONLY. Components style themselves through the tokens
 * defined in tokens.css/here — never add component selectors to this
 * file. Screen brightness/contrast tuning belongs here; layout doesn't.
 *
 * tokens.css already defines the same values under
 * @media (prefers-color-scheme: dark) for OS-level preference — this
 * file is for the explicit [data-theme="dark"] toggle in the app's own
 * settings, so both paths must be kept in sync by hand until a build
 * step can share them.
 */

:root[data-theme="dark"] {
  --bg: #0b1220;
  --surface: #111a2c;
  --surface-2: #182338;
  --border: rgba(255, 255, 255, 0.09);
  --text: #e2e8f0;
  --text-2: #94a3b8;
}
