*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--coap-text);
  background: var(--coap-background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(43, 139, 230, 0.42); outline-offset: 4px; }
::selection { background: var(--coap-icon-background); color: var(--coap-navy); }
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  padding: 12px 16px; border-radius: 12px; background: var(--coap-navy); color: #fff;
  transform: translateY(-160%); transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 96px), var(--container)); margin-inline: auto; }
.section { padding-block: 96px; }
.section-kicker {
  margin: 0 0 16px; color: var(--coap-blue); font-size: 14px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--coap-navy); line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(44px, 5vw, 68px); font-weight: 800; }
h2 { font-size: clamp(36px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
p { color: var(--coap-text-soft); font-size: 16px; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p:last-child { margin-bottom: 0; }
.reveal { --parallax-y: 0px; opacity: 0; transform: translate3d(0, calc(24px + var(--parallax-y)), 0); transition: opacity 620ms cubic-bezier(.2,.9,.2,1), transform 620ms cubic-bezier(.2,.9,.2,1); will-change: transform, opacity; }
.reveal.is-visible { opacity: 1; transform: translate3d(0, var(--parallax-y), 0); }
