/* ============================================================
   Ansiq — Spacing, radii, shadows
   ============================================================ */
:root {
  /* 4px base 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 */

  /* Radii — calm, slightly soft. Pills for actions, gentle rounds for cards */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   22px;
  --radius-pill: 999px;

  /* Shadows — low, warm-tinted, never heavy */
  --shadow-sm: 0 1px 2px rgba(17, 21, 27, 0.06);
  --shadow-md: 0 4px 14px rgba(17, 21, 27, 0.08);
  --shadow-lg: 0 12px 32px rgba(17, 21, 27, 0.10);

  /* Motion — calm, no bounce */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
}
