/* Koubit — Spacing, radius, shadow, motion tokens */
:root {
  --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;
  --space-10: 128px;

  /* Radii — the source site favors soft, almost-capsule corners on cards
     and fully-round pill buttons/badges */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-capsule: 999px;

  /* Shadows — the source site is flat / matte (no drop shadows on dark
     panels); shadows here are restrained, for cards lifted on light UI only */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.28);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.32);
  --shadow-glow-teal: 0 0 0 4px rgba(10,188,194,0.18);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */

  --container-max: 1180px;
  --border-width: 1.5px;
}
