/* ─────────────────────────────────────────────────────────────
   Prospector — spacing & radius tokens

   Decided 2026-04-24. Standard 4/8/12/16/24/32/48/64 scale for
   spacing; radius scale lifted from prod (6/10/14) — the repo
   already uses these values hardcoded, tokenizing them makes
   future global tweaks (e.g. softer/sharper corners) a one-line
   change.

   Sprint 01 introduces these; Sprint 02+ starts consuming them.
   No name collisions with style.css (all new keys).
   ───────────────────────────────────────────────────────────── */

:root {
  /* Spacing scale (8-pt rhythm with a 4px half-step) */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;   /* default card radius */
  --radius-lg: 14px;   /* elevated cards */
  --radius-pill: 999px;
}
