/* ===========================================================================
   Pretence Games & Pretencify — Spacing, radii, shadows, layout
   The brand is soft and rounded: generous pill radii, big card corners,
   low-contrast soft shadows. No hard borders on cards.
   =========================================================================== */
:root {
  /* --- Spacing scale (4px base) ------------------------------------------- */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4  */
  --space-2: 0.5rem;    /* 8  */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 */

  /* --- Radii — soft & generous -------------------------------------------- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;     /* default card corner                             */
  --radius-xl: 32px;     /* large feature cards / image masks               */
  --radius-pill: 999px;  /* buttons, badges, chips                          */

  /* --- Shadows — soft, purple-tinted, never harsh ------------------------- */
  --shadow-sm: 0 1px 2px rgba(31, 0, 71, 0.06),
               0 2px 6px rgba(31, 0, 71, 0.05);
  --shadow-md: 0 6px 16px rgba(31, 0, 71, 0.08),
               0 2px 6px rgba(31, 0, 71, 0.05);
  --shadow-lg: 0 18px 40px rgba(31, 0, 71, 0.14),
               0 6px 14px rgba(31, 0, 71, 0.08);
  --shadow-pill: 0 8px 20px rgba(194, 63, 255, 0.28); /* glow under accent   */

  /* --- Layout ------------------------------------------------------------- */
  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 4rem); /* @kind spacing */
  --section-gap: clamp(3.5rem, 9vw, 7rem);

  /* --- Motion ------------------------------------------------------------- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);      /* @kind other */
  --dur-fast: 140ms;  /* @kind other */
  --dur-base: 240ms;  /* @kind other */
  --dur-slow: 420ms;  /* @kind other */
}
