/* ============================================================================
   AURORA — advanced scheme for the Strata marketing site.
   A third scheme next to dark-knight / desert-dunes, built the documented way:
   override only the tokens that differ, under :root[data-theme="aurora"],
   then register the id with [data-theme-toggle]. Polar-night indigo surfaces,
   aurora-green primary, violet accent; lines carry an indigo cast through
   --border-rgb so every kit border picks up the tint automatically.
   ============================================================================ */

:root[data-theme="aurora"]{
  color-scheme:dark;

  /* surfaces — deep polar night with an indigo undertone */
  --bg:#05070f;
  --surface:#0b0e1c;
  --surface-2:#141930;
  --surface-3:#0d1122;
  --surface-sunken:#030409;
  --surface-active:#111634;
  --skeleton:#1c2240;

  /* lines + text — indigo-cast neutrals */
  --border-rgb:165 180 252;
  --text:#eef0ff;
  --text-2:#aab2d8;
  --muted:#7d87b0;

  /* brand — aurora green with a violet counterpoint */
  --primary:#3ddc97;        --primary-rgb:61 220 151;
  --primary-bright:#7af5be; --primary-bright-rgb:122 245 190;
  --on-primary:#03190f;
  --accent:#c084fc;         --accent-rgb:192 132 252;  --on-accent:#1e1340;
  --info:#60a5fa;           --info-rgb:96 165 250;     --on-info:#04203f;
  --danger:#fb7185;         --danger-rgb:251 113 133;
  --warning:#fbbf24;        --warning-rgb:251 191 36;  --on-warning:#241200;

  /* geometry + elevation — softer corners, glow-deepened shadows */
  --radius:12px;
  --radius-lg:18px;
  --shadow-sm:0 2px 8px -3px rgb(3 4 12 / .6);
  --shadow:0 8px 24px -10px rgb(3 4 12 / .65);
  --shadow-lg:0 20px 50px -18px rgb(3 4 12 / .7), 0 0 60px -30px rgb(var(--primary-rgb) / .25);
}
