/* incirqel — spacing, radius, shadow, motion */
:root {
  /* Spacing — 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;

  /* Radii — restrained, engineering-forward */
  --radius-sm: 4px;    /* inputs, tags */
  --radius-md: 8px;    /* buttons, cards */
  --radius-lg: 12px;   /* large cards, dialogs */
  --radius-full: 999px;/* pills, switch */

  /* Shadows — cool-toned, subtle */
  --shadow-card: 0 1px 3px rgba(22, 36, 63, 0.08), 0 1px 2px rgba(22, 36, 63, 0.05);
  --shadow-raised: 0 4px 12px rgba(22, 36, 63, 0.10);
  --shadow-overlay: 0 12px 32px rgba(22, 36, 63, 0.18);

  /* Motion — quick, precise; no bounce */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
}
