/* ============================================================
   wildLOGIC — Spacing & layout tokens
   4px base grid. Generous, editorial whitespace — the brand
   breathes. Containers are wide; rhythm is calm.
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ----------------------------- */
  --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:   2.5rem;   /* 40 */
  --space-8:   3rem;     /* 48 */
  --space-9:   4rem;     /* 64 */
  --space-10:  5rem;     /* 80 */
  --space-11:  6rem;     /* 96 */
  --space-12:  8rem;     /* 128 */
  --space-14:  10rem;    /* 160 */

  /* ---- Container widths ------------------------------------- */
  --container-xs:  30rem;   /* 480  */
  --container-sm:  40rem;   /* 640  */
  --container-md:  52rem;   /* 832  */
  --container-lg:  64rem;   /* 1024 */
  --container-xl:  80rem;   /* 1280 */
  --container-2xl: 90rem;   /* 1440 */
  --gutter:        clamp(1.25rem, 5vw, 5rem); /* @kind spacing */

  /* ---- Radii — restrained. The brand favours crisp edges and
     true circles, not soft app-y rounding. ------------------- */
  --radius-none: 0;
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --radius-pill: 999px;
  --radius-full: 50%;
}
