/* ==========================================================================
   Evoq — Spacing, radius, shadow, motion tokens
   ========================================================================== */

:root {
  /* Spacing scale (4px base) */
  --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;

  /* Radius — subtle, technical/clinical feel (not overly rounded) */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Shadows — soft, cool-tinted, low-key (clinical precision, not playful) */
  --shadow-sm: 0 1px 2px oklch(0.16 0.02 260 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.16 0.02 260 / 0.08), 0 1px 3px oklch(0.16 0.02 260 / 0.06);
  --shadow-lg: 0 12px 32px oklch(0.16 0.02 260 / 0.12), 0 2px 6px oklch(0.16 0.02 260 / 0.06);
  --shadow-gold-glow: 0 0 0 1px oklch(0.66 0.145 77 / 0.4), 0 4px 16px oklch(0.66 0.145 77 / 0.25);

  /* Motion — precise, quick, no bounce (technical/confident tone) */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-decel:    cubic-bezier(0, 0, 0.2, 1); /* @kind other */
  --ease-accel:    cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --duration-fast:   120ms; /* @kind other */
  --duration-base:   200ms; /* @kind other */
  --duration-slow:   360ms; /* @kind other */

  /* Layout */
  --content-max: 1240px;
  --border-width: 1px;
}
