/* 3 Tier Consulting — Spacing, Radius, Shadow, Motion Tokens */
:root {
  /* Spacing — 8px base grid with 4px half-step */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 96px;
  --space-section-tablet: 64px;
  --space-section-mobile: 48px;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 720px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadow — soft, low-contrast; consulting brand stays understated */
  --shadow-xs: 0 1px 2px rgba(16, 22, 26, 0.06);
  --shadow-sm: 0 2px 8px rgba(16, 22, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 22, 26, 0.10);
  --shadow-lg: 0 16px 48px rgba(16, 22, 26, 0.14);
  --shadow-focus-ring: 0 0 0 3px rgba(20, 126, 89, 0.25);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-standard: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
