/* Pep Master — Spacing, radii, shadows, motion */
: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;

  /* Radii — soft, rounded, capsule-friendly */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --radius-capsule: 999px;

  /* Shadows — soft, diffuse, faintly tinted (never harsh black) */
  --shadow-xs: 0 1px 2px rgba(75, 69, 75, 0.06);
  --shadow-sm: 0 2px 8px rgba(142, 104, 177, 0.08);
  --shadow-md: 0 8px 24px rgba(142, 104, 177, 0.10);
  --shadow-lg: 0 18px 48px rgba(142, 104, 177, 0.14);
  --shadow-xl: 0 30px 70px rgba(142, 104, 177, 0.18);
  --shadow-rose: 0 12px 32px rgba(201, 101, 150, 0.20);
  /* Inner sheen for glassy / metallic surfaces */
  --shadow-inset-sheen: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --ring-focus: 0 0 0 3px rgba(185, 154, 216, 0.45);

  /* Motion — gentle, premium, never bouncy */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 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 */

  /* Layout */
  --container-sm: 640px;
  --container-md: 880px;
  --container-lg: 1120px;
  --container-xl: 1320px; /* @kind spacing */
}
