/* ── Binodia · Spacing, radii, layout ─────────────────────────────
   Generous vertical rhythm (sections breathe). Radii are medium-large
   and soft; nothing is sharp, nothing is a pill except chips/toggles. */
:root {
  /* Spacing scale (4px base) */
  --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: 100px; /* section vertical padding */

  /* Radii */
  --radius-sm:  8px;  /* inputs, small chips, toggles */
  --radius-md:  10px; /* buttons */
  --radius-lg:  14px; /* small cards, FAQ rows */
  --radius-xl:  16px; /* cards */
  --radius-2xl: 18px; /* feature cards */
  --radius-3xl: 28px; /* hero visual tiles */
  --radius-pill: 999px; /* capability chips, dots */

  /* Layout widths */
  --maxw-page:    1200px; /* header / hero container */
  --maxw-content: 1100px; /* standard section content */
  --maxw-prose:   780px;  /* FAQ / reading column */
  --maxw-title:   680px;  /* section title block */

  /* Section padding */
  --section-y: 100px;
  --section-x: 24px;
}
