/* ============================================================
   GUARDIAN MESH — DESIGN TOKENS
   Raw palette values. No light/dark opinions here.
   ============================================================ */

:root {
  /* ── Brand Palette ── */
  --color-black:    #0A0A0A;
  --color-dark:     #1A1A1A;
  --color-charcoal: #2C2C2C;
  --color-mid:      #6B6B6B;
  --color-silver:   #D4D4D4;
  --color-cream:    #F5F4F2;
  --color-white:    #FFFFFF;

  /* ── Branded Experience Accent ──
     Defaults to charcoal (invisible on the existing theme).
     applyBrandedExperience() overrides this on <html> when an
     HID/WaveLynx/LEGIC partner logs in. See js/branded.js. */
  --brand-accent:      #2C2C2C;
  --brand-accent-dark: #1A1A1A;
  --brand-accent-soft: #6B6B6B;

  /* ── Typography ── */
  --font-primary: 'Aptos', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  /* ── Radius ── */
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 100px;

  /* ── Transitions ── */
  --transition-fast: 0.1s;
  --transition-base: 0.15s;
}
