/* ============================================================
   SPACING, RADIUS, SHADOW & MOTION TOKENS — Work Excellence
   Generous whitespace, precise 4px rhythm, quiet elevation.
   Corners are gently rounded (structured, not soft/bubbly).
   Shadows are low-contrast and cool-toned — used sparingly to
   imply layered "systems", never for decoration.
   ============================================================ */

:root {
  /* Spacing — 4px base rhythm */
  --space-0: 0px;
  --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;
  --space-32: 128px;
  --space-40: 160px;

  /* Radius — structured, not pill-shaped by default */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 999px;

  /* Shadows — cool, low-opacity, tight */
  --shadow-xs: 0 1px 2px rgba(10, 12, 17, 0.05);
  --shadow-sm: 0 1px 3px rgba(10, 12, 17, 0.07), 0 1px 2px rgba(10, 12, 17, 0.04);
  --shadow-md: 0 4px 10px rgba(10, 12, 17, 0.08), 0 1px 2px rgba(10, 12, 17, 0.04);
  --shadow-lg: 0 12px 24px rgba(10, 12, 17, 0.12), 0 2px 6px rgba(10, 12, 17, 0.06);
  --shadow-xl: 0 24px 48px rgba(10, 12, 17, 0.16), 0 4px 10px rgba(10, 12, 17, 0.06);
  --shadow-focus: var(--focus-ring);

  /* Borders */
  --border-width-hairline: 1px;
  --border-width-thick: 1.5px;

  /* Motion — quiet, precise, no bounce */
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 180ms; /* @kind other */
  --duration-slow: 280ms; /* @kind other */

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
}
