/* Hatchery — Spacing, radius, shadow, motion tokens */

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

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --gutter: 24px;

  /* Radius — brand favours generous, soft-but-not-pill corners */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* Shadows — soft, green-tinted, low contrast */
  --shadow-xs: 0 1px 2px rgba(35,60,54,0.06);
  --shadow-sm: 0 2px 8px rgba(35,60,54,0.08);
  --shadow-md: 0 8px 24px rgba(35,60,54,0.10);
  --shadow-lg: 0 20px 48px rgba(35,60,54,0.14);
  --shadow-focus: 0 0 0 3px rgba(222,255,90,0.55);

  /* Motion */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);          /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
