/* ==========================================================================
   STREAM Lab — Spacing, radius, shadow, layout tokens
   ========================================================================== */

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

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 28, 0.06), 0 1px 1px rgba(20, 24, 28, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 24, 28, 0.08), 0 1px 2px rgba(20, 24, 28, 0.05);
  --shadow-lg: 0 12px 32px rgba(0, 23, 61, 0.14), 0 2px 6px rgba(0, 23, 61, 0.06);
  --shadow-focus: 0 0 0 3px rgba(47, 158, 217, 0.35);

  --container-max: 1240px;
  --container-pad: clamp(20px, 4vw, 64px);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
