/* GoldenPharm — Spacing, radius, elevation
   Base unit 4px; 8px primary increment. Clinical = precise, modest radii, cool low shadows. */
:root {
  /* ---- Spacing scale ---- */
  --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;
  --space-32: 128px;

  /* Section rhythm */
  --space-section: 96px;
  --space-section-sm: 64px;

  /* Layout */
  --container-max: 1200px;
  --container-gutter: 24px;

  /* ---- Border radius ---- (modest, precise — pharma reads cleaner than pill-heavy) */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;   /* buttons, inputs */
  --radius-lg: 12px;  /* cards */
  --radius-xl: 16px;  /* feature panels */
  --radius-2xl: 24px; /* large showcases */
  --radius-pill: 999px; /* badges, chips, avatars */

  /* ---- Elevation (cool navy-tinted, restrained) ---- */
  --shadow-0: none;
  --shadow-1: 0 1px 2px rgba(16, 42, 67, 0.06);
  --shadow-2: 0 2px 8px rgba(16, 42, 67, 0.08);
  --shadow-3: 0 8px 24px rgba(16, 42, 67, 0.10);
  --shadow-4: 0 16px 40px rgba(16, 42, 67, 0.14);
  --shadow-focus: 0 0 0 3px rgba(42, 111, 176, 0.32);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 180ms; /* @kind other */
  --dur-slow: 280ms; /* @kind other */
}
