/* Turbo — Spacing, radius, shadows, motion, layout */

:root {
  /* spacing scale (4px base) */
  --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;

  /* radii — Turbo leans friendly/rounded */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* shadows — soft, cool, purple-tinted */
  --shadow-xs: 0 1px 2px rgba(28, 0, 63, 0.06);
  --shadow-sm: 0 1px 3px rgba(28, 0, 63, 0.08), 0 1px 2px rgba(28, 0, 63, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 0, 63, 0.08), 0 2px 4px rgba(28, 0, 63, 0.05);
  --shadow-lg: 0 12px 28px rgba(28, 0, 63, 0.12), 0 4px 8px rgba(28, 0, 63, 0.06);
  --shadow-xl: 0 24px 48px rgba(28, 0, 63, 0.16);
  --shadow-brand: 0 8px 24px rgba(49, 0, 111, 0.28);
  --shadow-accent: 0 8px 20px rgba(232, 5, 5, 0.26);

  /* 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 */
  --ease-in: cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 320ms; /* @kind other */

  /* layout */
  --container-max: 1200px; /* @kind spacing */
  --sidebar-w: 264px; /* @kind spacing */
  --header-h: 64px; /* @kind spacing */
}
