/* BlackSig Systems design tokens — SINGLE SOURCE OF TRUTH for the palette and type.
   Consumed by BOTH rendering systems:
     - App Router pages: via a <link> to /brand-tokens.css in app/layout.tsx
     - static public/*.html pages (case studies, offers, articles): via public/brand.css
       (which @imports this file)
   Change a token here once and it applies everywhere. Do not redefine these variables
   anywhere else. Values are ported verbatim from the original hand-built index.html so
   the migrated site is pixel-identical to the live one. */
:root{
  --bg:#04050A;
  --bg2:#070912;
  --bg3:#0B0E1B;
  --panel:rgba(255,255,255,.025);
  --panel2:rgba(255,255,255,.04);
  --white:#EEF1F8;
  --gray:#8990A8;
  --gray2:#525a76;
  --gray3:#2c3148;
  --violet:#7C6AF7;
  --vl:#A99BFB;
  --cyan:#22D3EE;
  --cl:#7DE7F7;
  --amber:#F5B14B;
  --al:#FBD38A;
  --rose:#F471A8;
  --line:rgba(255,255,255,.07);
  --line2:rgba(255,255,255,.12);
  --glow-v:rgba(124,106,247,.5);
  --glow-c:rgba(34,211,238,.5);
  --ff:'Sora',sans-serif;
  --fd:'Oxanium',sans-serif;
  --fm:'JetBrains Mono',monospace;
}
