/* ===========================================================================
   DESATA · SPACING, RADII, SHADOWS, MOTION
   8px base grid. Rounded cards. Crisp shadows, no soft mush.
   =========================================================================== */
:root {
  /* Spacing — 4/8 grid */
  --space-0:   0;
  --space-1:   0.25rem;  /* 4 */
  --space-2:   0.5rem;   /* 8 */
  --space-3:   0.75rem;  /* 12 */
  --space-4:   1rem;     /* 16 */
  --space-5:   1.5rem;   /* 24 */
  --space-6:   2rem;     /* 32 */
  --space-7:   3rem;     /* 48 */
  --space-8:   4rem;     /* 64 */
  --space-9:   6rem;     /* 96 */
  --space-10:  8rem;     /* 128 */

  /* Section rhythm */
  --section-y:        clamp(4rem, 8vw, 8rem); /* @kind spacing */
  --container-max:    1200px;
  --container-pad:    clamp(1.25rem, 4vw, 3rem);

  /* Radii — Shakers-style rounded, generous on cards */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-2xl:  44px;
  --radius-pill: 999px;

  /* Border widths */
  --bw-hair:   1px;
  --bw-thin:   1.5px;
  --bw-bold:   2px;
  --bw-heavy:  3px;   /* the "ink outline" look from the isotype */

  /* Shadows — low-spread, grounded; not glowy */
  --shadow-xs:  0 1px 2px rgba(26,26,26,0.06);
  --shadow-sm:  0 2px 8px rgba(26,26,26,0.07);
  --shadow-md:  0 8px 24px rgba(26,26,26,0.09);
  --shadow-lg:  0 18px 48px rgba(26,26,26,0.12);
  --shadow-brand: 0 12px 32px rgba(210,230,0,0.40);  /* yellow glow on CTAs */

  /* Motion */
  --ease-out:    cubic-bezier(0.2, 0.7, 0.2, 1);       /* @kind other */
  --ease-in-out: cubic-bezier(0.6, 0.05, 0.2, 0.95);   /* @kind other */
  --ease-snap:   cubic-bezier(0.3, 1.4, 0.5, 1); /* @kind other */
  --dur-fast:    120ms;  /* @kind other */
  --dur-base:    200ms;  /* @kind other */
  --dur-slow:    360ms;  /* @kind other */

  /* Z-index */
  --z-base: 1;        /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-overlay: 1000;  /* @kind other */
  --z-toast: 1100;    /* @kind other */
}
