/* ==========================================================================
   ZERATHEON FOUNDATION — WEB TWIN DESIGN TOKENS
   Source of truth: src/ordis/gui/theme/palette.py (Blackbox dark skin)
   Locked 2026-08-30 (R33). Do not drift from palette.py.
   ========================================================================== */

:root {
  /* ── Surfaces ─────────────────────────────────────────────────────── */
  --bg-deep:       #0C0C0C;   /* page background — near-black, not pure */
  --bg-panel:      #1A1A1A;   /* cards, pricing tiers, docks            */
  --bg-rail:       #141414;   /* nav rail / footer / side rails         */
  --bg-hover:      #222222;   /* hover states                           */
  --bg-active:     #2A2A2A;   /* active / selected states               */

  /* ── Accents — Ordis's voice (orange) / the USER's voice (gold) ──── */
  --accent:        #FF6901;   /* Ordis — links, CTAs, focus             */
  --accent-deep:   #E05E00;   /* accent hover / pressed                 */
  --accent-dim:    #4A2A0D;   /* accent at low intensity (glow base)    */
  --gold:          #E8B64C;   /* the USER — highlights, praise          */
  --gold-dim:      #3A2F1A;   /* gold at low intensity                  */

  /* ── Text ────────────────────────────────────────────────────────── */
  --text-primary:  #F2F2F0;   /* headings, body — warm off-white        */
  --text-muted:    #C4C4C0;   /* secondary text                         */
  --text-faint:    #666664;   /* tertiary / meta text                   */

  /* ── Status ──────────────────────────────────────────────────────── */
  --ok:            #4ADE80;
  --warn:          #FBBF24;
  --danger:        #F87171;

  /* ── Lines ───────────────────────────────────────────────────────── */
  --border:        #262626;   /* hairline borders                       */
  --border-strong: #3A3A3A;   /* emphasized borders                     */
  --glass:         rgba(255, 255, 255, 0.04);

  /* ── Radii — sharp, tight, professional ──────────────────────────── */
  --r-control:     8px;       /* buttons, inputs                        */
  --r-container:   10px;      /* cards, panels                          */
  --r-pill:        18px;      /* pills, chips                           */

  /* ── Fonts ───────────────────────────────────────────────────────── */
  --font-ui:  "Segoe UI", "Noto Sans Myanmar", system-ui, -apple-system, sans-serif;
  --font-body:"Roboto", "Noto Sans Myanmar", system-ui, -apple-system, sans-serif;
  --font-mono:"Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace;

  /* ── Motion — ~160ms, restrained, tasteful ───────────────────────── */
  --dur:    160ms;
  --dur-slow: 320ms;
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ── Layout ──────────────────────────────────────────────────────── */
  --nav-h:  64px;
  --maxw:   1120px;
  --gutter: 24px;
}
