/* Fraga DEV — Spacing, radius, shadow, motion, layout tokens */

:root {
  /* ---- Spacing (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;

  /* ---- Radius ---- The mark's arrows are chunky with soft rounded
     ends, so the brand leans on medium-to-large rounding. */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* ---- Shadows — soft, indigo-tinted, never harsh ---- */
  --shadow-xs: 0 1px 2px rgba(30, 18, 61, 0.06);
  --shadow-sm: 0 2px 6px rgba(30, 18, 61, 0.08);
  --shadow-md: 0 8px 20px rgba(30, 18, 61, 0.10);
  --shadow-lg: 0 18px 42px rgba(30, 18, 61, 0.14);
  --shadow-focus: 0 0 0 3px rgba(107, 98, 198, 0.35);

  /* ---- Motion ---- calm, confident easing; no bounce ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* @kind other */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 320ms;   /* @kind other */

  /* ---- Layout ---- */
  --container-sm: 640px;
  --container-md: 960px;
  --container-lg: 1200px;
  --container-xl: 1360px;
}
