/* Clowdy — Spacing, radius, shadow, layout tokens
 * Geometric, structured design. NO rounded corners on layouts.
 * Small radii only on interactive controls; cards/sections stay square.
 */
:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ---- Radius (minimal, geometric) ---- */
  --radius-none: 0;
  --radius-sm: 2px;   /* inputs, buttons, badges */
  --radius-md: 4px;   /* controls, small cards */
  --radius-lg: 6px;   /* cards */
  --radius-pill: 999px; /* avatars, switches, status dots only */

  /* ---- Border widths ---- */
  --border-thin: 1px;
  --border-medium: 2px;
  --border-accent-rule: 3px; /* the signature thin orange edge rule */

  /* ---- Shadows (subtle, cool-tinted) ---- */
  --shadow-xs: 0 1px 2px rgba(0, 7, 89, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 7, 89, 0.08), 0 1px 2px rgba(0, 7, 89, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 7, 89, 0.08), 0 2px 4px rgba(0, 7, 89, 0.04);
  --shadow-lg: 0 12px 28px rgba(0, 7, 89, 0.12), 0 4px 10px rgba(0, 7, 89, 0.06);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* ---- Layout ---- */
  --container-sm: 640px;
  --container-md: 960px;
  --container-lg: 1200px;
  --container-xl: 1320px;
  --gutter: var(--space-6);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.2, 0, 0.1, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
