/* MentorIA Consulting — Spacing, radius, shadow, motion tokens */
:root {
  /* Spacing scale — 4px base */
  --space-0: 0px;
  --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 — the brand's star mark is soft/rounded; UI follows suit with generous,
     consistent rounding rather than sharp corners or full-pill defaults everywhere. */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 999px;

  /* Shadow — soft, cool-tinted (navy, not black) low-elevation shadows; no hard drop shadows */
  --shadow-xs: 0 1px 2px rgba(10, 14, 46, 0.06);
  --shadow-sm: 0 2px 6px rgba(10, 14, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 14, 46, 0.10);
  --shadow-lg: 0 16px 40px rgba(10, 14, 46, 0.14);
  --shadow-brand-glow: 0 0 0 1px rgba(199, 162, 74, 0.35), 0 8px 28px rgba(199, 162, 74, 0.22);

  /* Motion — calm, purposeful; no bouncy easing, no infinite decorative loops */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */

  /* Layout */
  --content-max-width: 1120px;
  --container-padding: clamp(20px, 5vw, 64px);
}
