/* ============================================================
   WinLocalbiz PR — Spacing, radius, shadow, layout tokens
   4px base grid. Soft, generous rounding (the brand reads
   rounded & approachable). Soft indigo-tinted shadows.
   ============================================================ */
: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 */

  /* Radius — rounded & friendly */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;    /* default card / input */
  --radius-lg: 20px;    /* feature cards */
  --radius-xl: 28px;    /* hero panels */
  --radius-pill: 999px; /* buttons, chips, tags */

  /* Shadows — soft, indigo-tinted (cool, not gray) */
  --shadow-xs: 0 1px 2px rgba(12, 16, 102, 0.06);
  --shadow-sm: 0 2px 8px rgba(12, 16, 102, 0.07);
  --shadow-md: 0 8px 24px rgba(12, 16, 102, 0.10);
  --shadow-lg: 0 18px 48px rgba(12, 16, 102, 0.14);
  --shadow-brand: 0 12px 30px rgba(46, 46, 240, 0.28); /* glows under blue CTAs */

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

  /* Motion */
  --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: 240ms;   /* @kind other */
  --dur-slow: 420ms;   /* @kind other */
}
