/* ============================================================================
   Infinitum Cor — DESIGN TOKENS (single source of truth)
   The "New Earth" bioluminescent system shared by the hub and every app route.
   Values are the flagship homepage (index.html) palette; interior pages and all
   migrated app "organs" inherit from here so the whole ecosystem recolors in
   lockstep. DO NOT introduce new fonts or colors — extend via tokens here.
   ========================================================================== */
:root{
  /* --- surfaces (Deep Void) --- */
  --cream:#0C1712; --cream-2:#10201A; --paper:#0E1A15;
  --white:rgba(18,30,26,.62);
  --line:rgba(143,216,194,.22); --line-2:rgba(143,216,194,.13);
  --glass:rgba(20,34,28,.66); --glass-2:rgba(8,16,12,.82); --panel:var(--glass);

  /* --- text --- */
  --ink:#EDE7D8; --ink-soft:#B7C6B2; --muted:#7F9089; --taupe:#9AA79A;

  /* --- bioluminescent accents --- */
  --green:#9FD8C2; --green-l:#BFE8D6; --green-d:#8FD8C2; --forest:#4FA98A;
  --terra:#E6A24E; --tan:#E6C66A; --gold:#E6C66A;
  --teal:#5FE6CE; --teal-d:#2BB3A3;

  /* --- type --- */
  --font-display:'Cormorant Garamond', serif;   /* cues, headings */
  --font-body:'Outfit', sans-serif;             /* body */
  --font-mono:'Space Mono', monospace;          /* labels / HUD */

  /* --- motion --- */
  --breath:6s;                                  /* one shared breath for the whole organism */

  /* --- semantic aliases (plan vocabulary → palette) --- */
  --deep-void:var(--cream);
  --signal-teal:var(--teal);
  --stellar-gold:var(--gold);
}
