/* ============================================================
   Digital Experts — Spacing, radius, elevation, motion
   Minimal, refined, generous whitespace ("breathing room").
   ============================================================ */

:root {
  /* Spacing scale (4px base) */
  --sp-1:  0.25rem;   /* 4  */
  --sp-2:  0.5rem;    /* 8  */
  --sp-3:  0.75rem;   /* 12 */
  --sp-4:  1rem;      /* 16 */
  --sp-5:  1.5rem;    /* 24 */
  --sp-6:  2rem;      /* 32 */
  --sp-7:  3rem;      /* 48 */
  --sp-8:  4rem;      /* 64 */
  --sp-9:  6rem;      /* 96 */
  --sp-10: 8rem;      /* 128 */

  /* Radius — restrained, mostly small. Orb/pills are the only
     fully-round shapes. */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --radius-orb:  50%;

  /* Elevation — soft, low-contrast, warm shadows (premium, not glossy) */
  --shadow-xs: 0 1px 2px rgba(20,20,15,0.06);
  --shadow-sm: 0 2px 8px rgba(20,20,15,0.07);
  --shadow-md: 0 10px 30px -12px rgba(20,20,15,0.22);
  --shadow-lg: 0 26px 60px -24px rgba(20,20,15,0.30);
  --shadow-orb: 0 0 40px -6px rgba(31,98,73,0.55);

  /* Motion — calm, confident. Long ease-outs, no bounce. */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0.05, 0.36, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   480ms; /* @kind other */

  /* Layout */
  --container-max: 1200px; /* @kind other */
  --container-wide: 1440px; /* @kind other */
}
