*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }
::selection { background: var(--pink-100); color: var(--navy-950); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--surface-soft); }
.section--dark { background: var(--navy-950); color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-600); }
h1, h2, h3, h4 { margin: 0 0 .55em; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); line-height: 1.02; font-weight: 800; }
h2 { font-size: var(--fs-h2); line-height: 1.08; font-weight: 700; }
h3 { font-size: var(--fs-h3); line-height: 1.15; font-weight: 700; }
h4 { font-size: var(--fs-h4); line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1em; font-size: var(--fs-body); line-height: 1.7; }
.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--text-muted); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack { display: grid; gap: 20px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 12px 16px; background: #fff; color: var(--navy-950); border-radius: 10px; box-shadow: var(--shadow-card); }
.skip-link:focus { top: 16px; }
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].reveal-pending.is-visible { opacity: 1; transform: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
