*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
/* Every in-page anchor target gets breathing room above it so the sticky,
   translucent header doesn't land on top of (and hide) whatever was jumped
   to — this covers every #id on every page, not just ones we know about. */
[id] { scroll-margin-top: 104px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img, video { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; margin: 0; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--purple);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.section-lede {
  max-width: 640px; margin: 14px auto 0; text-align: center;
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--purple); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 800; transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--aqua-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--pink); color: #fff; }

/* Lazy-loaded images fade in once loaded (progressive enhancement) */
img[loading="lazy"] { background: linear-gradient(135deg, #f7ecff, #ffe9f6 60%, #e8f4ff); }
