/* MediBlue — Spacing, radius, shadows, motion. */
:root {
  /* 4px base scale */
  --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;

  /* Corner radii — generous, modern */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Blue-tinted soft shadows */
  --shadow-xs: 0 1px 2px rgba(16, 38, 92, 0.06);
  --shadow-sm: 0 2px 8px rgba(16, 38, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 38, 92, 0.10);
  --shadow-lg: 0 16px 48px rgba(16, 38, 92, 0.14);
  --shadow-brand: 0 8px 24px rgba(46, 107, 255, 0.28);
  --ring-focus: 0 0 0 3px rgba(46, 107, 255, 0.25);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
