/* ===========================================================================
   FLASHMAC — SPACING, SIZING & LAYOUT TOKENS
   4px base grid. Generous, breathable in light/clean contexts; tighter
   density allowed in spec tables and gaming dashboards.
   =========================================================================== */

:root {
  --space-0:  0;
  --space-1:  0.25rem;  /* 4px  */
  --space-2:  0.5rem;   /* 8px  */
  --space-3:  0.75rem;  /* 12px */
  --space-4:  1rem;     /* 16px */
  --space-5:  1.5rem;   /* 24px */
  --space-6:  2rem;     /* 32px */
  --space-7:  3rem;     /* 48px */
  --space-8:  4rem;     /* 64px */
  --space-9:  6rem;     /* 96px */
  --space-10: 8rem;     /* 128px */

  /* ---- Container widths -------------------------------------------------- */
  --container-sm:  640px;
  --container-md:  960px;
  --container-lg:  1200px;
  /* --container-xl retired: zero usages found across components/screens.
     Superseded by --content-default (1224) / --shell-default (1280) in
     tokens/breakpoints.css — the measures actually verified against the
     prototype. */
  --gutter:        clamp(1rem, 4vw, 4rem); /* @kind spacing */

  /* ---- Control heights -------------------------------------------------- */
  --control-sm: 36px;
  --control-md: 44px;   /* min touch target */
  --control-lg: 56px;
}
