/* ============================================================
   CVDentus — Spacing, radius, shadow, motion tokens
   ============================================================ */
:root {
  /* Spacing — 4px base step */
  --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;

  /* Radius — the brand geometry is faceted/angular (the diamond),
     so corners stay modest. Pills only for tags/avatars. */
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 2px;

  /* Shadows — soft, cool-tinted, never heavy */
  --shadow-xs: 0 1px 2px rgba(22, 32, 43, 0.06);
  --shadow-sm: 0 1px 3px rgba(22, 32, 43, 0.08), 0 1px 2px rgba(22, 32, 43, 0.06);
  --shadow-md: 0 4px 12px rgba(22, 32, 43, 0.10);
  --shadow-lg: 0 12px 28px rgba(22, 32, 43, 0.14);
  --shadow-brand: 0 8px 24px rgba(0, 74, 145, 0.22);
  --shadow-focus: 0 0 0 3px rgba(46, 125, 185, 0.35);

  /* Motion — crisp and businesslike; subtle, no bounce */
  --ease-standard: cubic-bezier(0.2, 0, 0.1, 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 */

  /* Layout */
  --container-sm: 640px;
  --container-md: 880px;
  --container-lg: 1120px;
  --container-xl: 1320px;
}
