/* Walumar Capotas — Spacing, radius, shadow, layout tokens */

:root {
  /* Spacing scale (4px base) */
  --sp-0: 0; /* @kind spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Radius — moderate, industrial-friendly (not pill-heavy) */
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-pill: 999px;

  /* Elevation — cool steel-tinted shadows */
  --shadow-sm: 0 1px 2px rgba(16, 22, 29, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 22, 29, 0.10);
  --shadow-lg: 0 12px 30px rgba(16, 22, 29, 0.14);
  --shadow-xl: 0 24px 60px rgba(16, 22, 29, 0.20);
  --shadow-accent: 0 8px 22px rgba(18, 149, 209, 0.28);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --header-h: 76px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 380ms; /* @kind other */
}
