/* ──────────────────────────────────────────────────────────
   SPACING, RADII & LAYOUT TOKENS
   8px base grid. Pills use a "full" radius (360px).
   ────────────────────────────────────────────────────────── */
:root {
  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 80px;
  --space-10: 120px;   /* hero side gutter */

  /* Radii */
  --radius-sm: 5px;    /* small surfaces, Figma component frames */
  --radius-md: 12px;
  --radius-lg: 20px;   /* cards */
  --radius-pill: 360px;/* buttons, badges, toggles */

  /* Layout */
  --page-gutter: 48px; /* outer page padding (Figma: 48px) */
  --content-max: 1344px;
  --nav-height: 56px;
}
