/* ==========================================================================
   Escbot — Spacing, radii & layout tokens
   8px base rhythm; generous breathing room (Apple-like minimalism).
   ========================================================================== */

:root {
  /* Spacing scale */
  --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 vertical padding */

  /* Radii — soft, generous on cards; pill on chips/buttons */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;   /* inputs, small cards */
  --radius-xl: 24px;   /* bento cards */
  --radius-2xl: 32px;  /* hero containers */
  --radius-pill: 999px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* Z-index */
  --z-nav: 100; /* @kind other */
  --z-overlay: 200; /* @kind other */
  --z-modal: 300; /* @kind other */
}
