/* ===========================================================================
   UCL Express — Spacing, radius, layout tokens
   Base unit: 4px. Generous, freight-grade rhythm.
   =========================================================================== */

:root {
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Corner radii — squared-industrial, small radii only */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Container widths */
  --container-sm: 640px;  /* @kind other */
  --container-md: 960px;  /* @kind other */
  --container-lg: 1200px; /* @kind other */
  --container-xl: 1400px; /* @kind other */

  /* Control sizing */
  --control-h-sm: 34px; /* @kind spacing */
  --control-h-md: 42px; /* @kind spacing */
  --control-h-lg: 52px; /* @kind spacing */

  /* Z layers */
  --z-base: 1;        /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-overlay: 500;   /* @kind other */
  --z-modal: 1000;    /* @kind other */
  --z-toast: 1500;    /* @kind other */
}
