/* Nduw's Family — spacing, radius, shadow, motion tokens */
:root {
  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Corner radii — brand is soft & rounded everywhere */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows — soft, blue-tinted, never harsh */
  --shadow-card: 0 2px 8px rgba(0, 59, 99, 0.08), 0 1px 2px rgba(0, 59, 99, 0.06);
  --shadow-raised: 0 8px 24px rgba(0, 59, 99, 0.14);
  --shadow-overlay: 0 20px 60px rgba(0, 59, 99, 0.25);

  /* Motion — gentle, friendly */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
}
