/* ──────────────────────────────────────────────────────────────
   BadgePirates Theme Tokens — Single Source of Truth
   ──────────────────────────────────────────────────────────────
   This file is the canonical source for design tokens used across
   all BadgePirates web properties. Update HERE first, then sync.

   See: BPDocs/runbooks/ops/theme-tokens.md for sync procedure.
   ────────────────────────────────────────────────────────────── */

:root {
  /* Backgrounds — darkest to lightest */
  --bg-0: #080808;
  --bg-1: #0f0f0f;
  --bg-2: #161616;
  --bg-3: #1e1e1e;
  --bg-4: #262626;

  /* Accent — primary blue */
  --accent:      #00aaff;
  --accent-dim:  #0077bb;
  --accent-glow: rgba(0, 170, 255, 0.15);

  /* Secondary */
  --gold:  #f0a500;
  --green: #00cc66;

  /* Text — brightest to dimmest */
  --text-0: #ffffff;
  --text-1: #cccccc;
  --text-2: #888888;

  /* Surfaces */
  --border: rgba(255, 255, 255, 0.07);

  /* Layout */
  --nav-h:  64px;
  --radius: 8px;

  /* Fonts */
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Motion */
  --transition: 0.2s ease;
}
