/* ============================================================
   SCRIPT — SPACING, RADII, SHADOWS
   Generous whitespace; soft rounded surfaces; gentle blue-tinted
   shadows. 8px base grid.
   ============================================================ */
:root {
  /* ---- Spacing scale (8px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* page gutter / max content width */
  --page-gutter: 102px;   /* @kind spacing */
  --content-max: 1236px;  /* @kind spacing */

  /* ---- Radii ---- */
  --radius-sm: 8px;     /* small cards, inputs (squared-ish) */
  --radius-md: 16px;    /* media, talent cards */
  --radius-lg: 24px;    /* large panels */
  --radius-xl: 44px;    /* hero feature cards (the big soft panel) */
  --radius-pill: 999px; /* buttons, tags, chips, avatars */

  /* ---- Shadows ---- */
  --shadow-xs: 0 2px 4px 0 rgba(0, 0, 0, 0.1);          /* nav pill, chips */
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.2);          /* small float (icon discs) */
  --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.15);     /* cards */
  --shadow-brand: 0 16px 24px -8px rgba(42, 161, 255, 0.3); /* the signature blue CTA glow */

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);  /* @kind other */
  --dur-fast: 120ms;  /* @kind other */
  --dur: 200ms;       /* @kind other */
  --dur-slow: 320ms;  /* @kind other */
}
