/* CSDS — Spacing, radius, shadow, layout */
:root {
  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows — soft, cool-tinted */
  --shadow-xs: 0 1px 2px rgba(16, 21, 77, 0.06);
  --shadow-sm: 0 2px 8px rgba(16, 21, 77, 0.07);
  --shadow-md: 0 8px 24px rgba(16, 21, 77, 0.10);
  --shadow-lg: 0 20px 48px rgba(16, 21, 77, 0.14);
  --shadow-brand: 0 12px 32px rgba(35, 45, 150, 0.24);

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

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
