/* ── Nattal spacing, radii, shadows ───────────────────────────────
   Radius base is 0.75rem (--radius in the app). Cards use lg,
   controls use md (radius − 2px). Shadows are soft and low.
------------------------------------------------------------------ */
:root {
  /* Spacing scale (4px base) */
  --space-1:  0.25rem;   /* 4  */
  --space-2:  0.5rem;    /* 8  */
  --space-3:  0.75rem;   /* 12 */
  --space-4:  1rem;      /* 16 */
  --space-5:  1.25rem;   /* 20 */
  --space-6:  1.5rem;    /* 24 — card padding */
  --space-8:  2rem;      /* 32 */
  --space-10: 2.5rem;    /* 40 */
  --space-12: 3rem;      /* 48 */
  --space-16: 4rem;      /* 64 */

  /* Radii */
  --radius:    0.75rem;              /* 12px — base */
  --radius-sm: calc(var(--radius) - 4px); /* 8px  */
  --radius-md: calc(var(--radius) - 2px); /* 10px — buttons/inputs */
  --radius-lg: var(--radius);        /* 12px — cards */
  --radius-xl: 1rem;                 /* 16px */
  --radius-full: 9999px;

  /* Shadows — soft, warm-neutral */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 0.15s; /* @kind other */
  --duration-base: 0.2s; /* @kind other */
}
