/* ==========================================================================
   VisitHealth — 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 — brand uses generous, consistent rounding (cards, buttons, inputs) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px; /* buttons, nav chips, badges */

  /* Shadows — brand is mostly flat (dark cards read via fill contrast, not shadow).
     Reserve soft shadow for light-mode raised cards & popovers only. */
  --shadow-sm: 0 1px 2px rgba(var(--shadow-color) / 0.06);
  --shadow-md: 0 4px 16px rgba(var(--shadow-color) / 0.08);
  --shadow-lg: 0 12px 32px rgba(var(--shadow-color) / 0.12);

  /* Motion — subtle, quick, no bounce. Fades and gentle ease-out only. */
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */

  /* Layout */
  --content-max-width: 1200px;
  --container-padding: clamp(20px, 5vw, 96px);
}
