/* ============================================================
   DRIVE — Shared Design Tokens
   ============================================================
   Single source of truth for the CSS custom properties that were
   previously declared identically in both styles.css (:root) and
   core/style.css (:root).

   This file changes NOTHING visually — it only centralizes values
   that already matched byte-for-byte in both places, so future
   edits to the base palette/easing happen in one spot instead of
   two. Values that intentionally differ between the marketing
   pages and the reader (e.g. --border, .mono letter-spacing) stay
   local to their own stylesheet and are NOT touched here.

   Load this file BEFORE styles.css and BEFORE core/style.css.
   ============================================================ */

:root {
  --bg:     #05070b;
  --text:   #edf2f7;
  --muted:  rgba(255,255,255,.48);
  --green:  #7dffb3;
  --red:    #ff6b6b;
  --ease:   cubic-bezier(.16,.84,.44,1);
}
