/* ============================================================
   Deliseeds · Spacing, radius, shadow, layout tokens
   ============================================================ */
: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;
  --space-32: 128px;

  /* Radii — soft, organic but not pill-everything */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;   /* default card / input */
  --radius-lg: 20px;   /* large cards, media */
  --radius-xl: 28px;   /* feature panels */
  --radius-pill: 999px;/* buttons, chips, badges */

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* Shadows — gentle, warm-tinted, never harsh black */
  --shadow-xs: 0 1px 2px rgba(11, 28, 23, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 28, 23, 0.07);
  --shadow-md: 0 8px 24px rgba(11, 28, 23, 0.09);
  --shadow-lg: 0 18px 48px rgba(11, 28, 23, 0.12);
  --shadow-focus: 0 0 0 3px rgba(176, 206, 52, 0.45);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --section-pad-y: clamp(48px, 7vw, 112px);
  --gutter: clamp(16px, 4vw, 48px); /* @kind spacing */

  /* 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-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
