/* ============================================================================
   VICE — COLOUR TOKENS  ·  v1
   Spec §3. Every colour is named by the spec and traceable to a canon surface.
   The rule: no scene may duplicate a colour this sheet already owns.
   ==========================================================================*/

:root {

  /* ---- THE VOID (page + sky base) --------------------------------------- */
  --vice-void:          #06060c;  /* canon: HONU page ground                  */
  --vice-night-sky:     #120822;  /* canon: penthouse night sky               */
  --vice-deep-indigo:   #0b0b12;  /* canon: DECK --deck-void (shared floor)   */

  /* ---- THE NEON TRIO (the VICE signature — every scene carries all three)- */
  /* cyan / teal */
  --vice-cyan:          #00e5ff;  /* canon: penthouse neon cyan               */
  --vice-cyan-bright:   #8ff7ff;  /* canon: penthouse window light (teal half)*/
  --vice-cyan-honu:     #19e3ff;  /* canon: HONU firework palette PAL[2]      */
  --vice-cyan-brand:    #1fb6c9;  /* canon: HONU brand teal                   */
  /* magenta / pink */
  --vice-magenta:       #ff007a;  /* canon: penthouse neon magenta            */
  --vice-magenta-soft:  #ff4f9e;  /* canon: penthouse soft pink               */
  --vice-magenta-honu:  #ff4fa3;  /* canon: HONU firework palette PAL[1]      */
  --vice-magenta-dusk:  #ff3e95;  /* canon: HONU dusk pink                    */
  /* gold / amber */
  --vice-gold:          #ffd23f;  /* canon: HONU firework palette PAL[0]      */
  --vice-amber:         #ffe7a3;  /* canon: penthouse amber-brass / headlights*/
  --vice-gold-warm:     #f1bf54;  /* canon: penthouse warm gold               */
  --vice-gold-window:   #ffd15b;  /* canon: penthouse window light (amber half)*/

  /* ---- THE LUXURY VOICE -------------------------------------------------- */
  /* The ONLY token called "brass": serif text, gold underlines, glass borders. */
  --vice-brass:         #d4af37;  /* canon: penthouse blackletter/rail brass  */
  --vice-brass-border:  rgba(212,175,55,0.28); /* Law 5: glass-card 1px border */
  --vice-brass-line:    rgba(212,175,55,0.55); /* gold underline accent        */

  /* ---- SEMANTIC ---------------------------------------------------------- */
  --vice-money:         #00ff88;  /* RESERVED for REAL revenue numbers only.  */

  /* ---- SCENE SPECIFICS --------------------------------------------------- */
  /* window lights — 50/50 teal + amber, deterministic blink (spec §5).
     Aliases, NOT new colours — a sheet that kills duplication must not add it. */
  --vice-window-teal:   var(--vice-cyan-bright);
  --vice-window-amber:  var(--vice-gold-window);
  /* water */
  --vice-water-night:   #04314a;  /* canon: penthouse night water             */
  --vice-water-deep:    #061014;  /* canon: penthouse deep water              */
  /* sky bands */
  --vice-sky-day:       #0f5a7c;  /* canon: penthouse day sky                 */
  --vice-sky-dawn:      #17345a;  /* canon: penthouse dawn sky                */
  --vice-sky-dusk:      #2b113d;  /* canon: penthouse dusk sky                */
  /* traffic */
  --vice-taillight:     #ff4f6f;  /* canon: penthouse taillights              */
  --vice-headlight:     #ffe7a3;  /* canon: penthouse headlights              */
  /* celestial orb */
  --vice-moon:          #fff3d4;  /* canon: penthouse moon core               */
  --vice-moon-cool:     #eef0e2;  /* canon: penthouse moon rim                */
  --vice-sun:           #ff9a4d;  /* canon: penthouse sun core                */
  --vice-sun-hot:       #fff3c0;  /* canon: penthouse sun hot centre          */

  /* ---- INK (DECK §2 — text on glass) ------------------------------------- */
  --vice-ink:           #e8e6ef;
  --vice-ink-muted:     #8d8a99;
  --vice-ink-faint:     #5c5968;
}
