/* WPDMarketing — Spacing, layout, radii, motion tokens. */
:root {
  /* Spacing scale (4px base rhythm) */
  --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;

  /* Layout */
  --container-max: 1140px;   /* corporate content width */
  --container-pad: 24px;     /* gutter on small viewports */
  --section-gap:   var(--space-10); /* vertical rhythm between sections */
  --grid-gap:      24px;

  /* Radii — restrained, corporate. Squares stay square (country tags). */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px; /* reserved; avoid on tags per brand rules */

  /* Elevation — subtle on dark; rely on borders more than shadow */
  --shadow-card:  0 1px 0 rgba(255,255,255,0.02) inset, 0 8px 24px rgba(0,0,0,0.35);
  --shadow-hover: 0 1px 0 rgba(255,255,255,0.04) inset, 0 14px 40px rgba(0,0,0,0.45);

  /* Motion — discreet, elegant. */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 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: 520ms; /* @kind other */
}
