/* StatDeep spacing, radius, shadow, motion */
: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;

  /* Radii — generously rounded, echoing the logo's soft geometry */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows — soft, cool-tinted, low elevation */
  --shadow-sm: 0 1px 2px rgba(18, 21, 28, 0.05);
  --shadow-md: 0 2px 8px rgba(18, 21, 28, 0.06), 0 1px 2px rgba(18, 21, 28, 0.04);
  --shadow-lg: 0 8px 24px rgba(18, 21, 28, 0.10), 0 2px 6px rgba(18, 21, 28, 0.05);
  --shadow-focus: 0 0 0 3px rgba(37, 99, 235, 0.25);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 250ms; /* @kind other */
  --duration-slow: 500ms; /* @kind other */
}
