/* ============================================================================
   Netwerk Curaçao — wachtlijst 2026
   Component styles. Every rule here was an inline style attribute in the design
   canvas export; the visual result is unchanged apart from the documented
   contrast corrections in tokens.css.
   ============================================================================ */

/* ---------------------------------------------------------------- reset/base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font: var(--text-body-font);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img, video { max-width: 100%; display: block; }

/* Author `display` declarations beat the UA stylesheet's [hidden] { display: none },
   so several flex containers here would stay visible when JS sets .hidden = true.
   One authoritative rule keeps `hidden` meaning hidden everywhere. */
[hidden] { display: none !important; }

a { color: var(--link); text-decoration: none; transition: var(--transition-color); }
a:hover { color: var(--link-hover); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

input, select, textarea, button { font-family: var(--font-body); }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 100;
  padding: 12px 20px;
  background: var(--surface-page);
  color: var(--text-heading);
  border: 2px solid var(--focus-ring);
  font: var(--weight-semibold) 15px/1 var(--font-body);
}
.skip-link:focus { top: var(--space-4); }

/* ------------------------------------------------------------------- layout */

.row { width: var(--layout-row); margin-inline: auto; }

.section { padding: var(--section-y) 0; }
.section--cream { background: var(--surface-cream); }
.section--flush-top { padding-top: 0; }

.eyebrow {
  display: block;
  font: var(--weight-semibold) 13px/1.4 var(--font-body);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}
.eyebrow--on-ink { color: var(--qa-amber-300); }

.section__head { max-width: 760px; margin-bottom: 60px; }
.section__head > h2 { margin: var(--space-4) 0 var(--space-5); }

h2 {
  margin: 0;
  font: var(--weight-bold) clamp(32px, 3.4vw, 48px)/1.25 var(--font-display);
  color: var(--text-heading);
}

.lead { margin: 0; font: var(--text-body-font); color: var(--text-body); }
.lead + .note { margin-top: var(--space-4); }
.note {
  margin: 0;
  font: var(--weight-regular) 16px/1.8 var(--font-body);
  color: var(--text-muted);
}

.stack { display: flex; flex-direction: column; gap: var(--space-3); }
.stack > p { margin: 0; }

/* --------------------------------------------------------------- utility bar */

.utility-bar {
  background: var(--surface-utility-bar);
  color: var(--text-on-utility-bar);
  padding: 9px 0;
  font: var(--weight-semibold) 14px/1.4 var(--font-body);
}
.utility-bar .row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  justify-content: center;
}
.utility-bar a { color: inherit; text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; color: inherit; }

/* -------------------------------------------------------------------- header */

.site-header {
  border-bottom: 1px solid var(--border-hairline);
  background: var(--surface-page);
}
.site-header .row {
  min-height: 78px;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2) var(--space-6);
}
.wordmark {
  font: var(--weight-bold) clamp(15px, 3.4vw, 19px)/1.2 var(--font-display);
  letter-spacing: clamp(1.5px, .6vw, 3px);
  color: var(--text-heading);
}
.site-header__tag {
  font: var(--weight-semibold) 13px/1 var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
  align-items: stretch;
  background: var(--surface-page);
}
/* The copy block is deliberately top-biased rather than dead-centre, and the
   headline is a step down from the canvas size. On a 1366x768 laptop the CTA
   used to land 137px below the fold and on 1440x900 it was 28px below — the
   one thing this page exists to be clicked was not on screen. */
.hero__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 5vw, 80px) clamp(48px, 7vw, 84px);
}
.hero__inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero h1 {
  margin: 0;
  font: var(--weight-bold) clamp(28px, 3.4vw, 52px)/1.15 var(--font-display);
  color: var(--text-heading);
}
.hero__sub {
  margin: 0;
  font: var(--weight-regular) 18px/1.9 var(--font-body);
  color: var(--text-body);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
}
.hero__media {
  position: relative;
  min-height: clamp(340px, 62vw, 660px);
  background: var(--surface-sand);
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------- founding banner */

.founding-banner {
  background: var(--surface-ink);
  color: var(--text-inverse);
  padding: 22px 0;
}
.founding-banner .row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  justify-content: center;
  text-align: center;
}
.founding-banner__label {
  font: var(--weight-bold) 15px/1.4 var(--font-body);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--qa-amber-300);
}
.founding-banner__text {
  font: var(--weight-regular) 16px/1.6 var(--font-body);
  color: var(--text-on-ink-muted);
}

/* --------------------------------------------------------------- two-column */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(36px, 6vw, 64px);
  align-items: start;
}
.split--wide-gap { gap: clamp(32px, 5vw, 48px) 72px; }
.split--center { align-items: center; }
.split > div > h2 { margin-bottom: 28px; }
.split__intro > h2 { margin: var(--space-4) 0 var(--space-5); }

.pull {
  margin: 0;
  font: var(--weight-bold) 18px/1.8 var(--font-body);
  color: var(--text-heading);
}

/* Definition rows — "Wij doen het anders" and "Voor wie" */
.rows { border-top: 1px solid var(--border-hairline); }
.rows > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--border-hairline);
}
.rows h3 {
  margin: 0 0 6px;
  font: var(--weight-bold) 20px/1.4 var(--font-body);
  color: var(--text-heading);
}
.rows p {
  margin: 0;
  font: var(--weight-regular) 16px/1.8 var(--font-body);
  color: var(--text-body);
}

/* ------------------------------------------------------------ benefits grid */

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 48px) 56px;
}
.benefit {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: 26px;
  border-top: 1px solid var(--border-hairline);
}
.benefit__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.benefit__num {
  flex: 0 0 auto;
  font: var(--weight-bold) 26px/1 var(--font-display);
  color: var(--text-accent);
}
.benefit h3 {
  margin: 0;
  font: var(--weight-bold) 21px/1.35 var(--font-body);
  color: var(--text-heading);
}
.benefit ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.benefit li {
  display: flex;
  gap: 14px;
  font: var(--weight-regular) 16px/1.7 var(--font-body);
  color: var(--text-body);
}
.benefit li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: var(--radius-avatar);
  background: var(--surface-accent);
}

/* ---------------------------------------------------------------- quote band */

.quote-band {
  position: relative;
  min-height: clamp(320px, 52vw, 460px);
  display: grid;
  align-items: center;
  background: var(--surface-ink);
  isolation: isolate;
}
.quote-band__media,
.quote-band__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.quote-band__media img { width: 100%; height: 100%; object-fit: cover; }
.quote-band__scrim { background: var(--overlay-photo-strong); }
.quote-band__inner {
  width: var(--layout-row);
  margin-inline: auto;
  padding: clamp(64px, 12vw, 112px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  text-align: center;
}
.quote-band__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-avatar);
  border: 2px solid var(--qa-amber-300);
  color: var(--qa-amber-300);
  font: var(--weight-bold) 27px/1 var(--font-body);
  padding-top: 13px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.quote-band blockquote {
  margin: 0;
  max-width: 20em;
  font: var(--weight-bold) clamp(28px, 3.1vw, 44px)/1.45 var(--font-display);
  color: var(--text-inverse);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}
.quote-band cite {
  font: var(--weight-semibold) 13px/1.4 var(--font-body);
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

/* ------------------------------------------------------------------ reviews */

/* Two columns, matching the "Wij doen het anders" and "Voor wie" sections above.
   The cards previously sat in an 820px column inside a 1200px row, which left a
   dead 380px gutter on the right. As a grid column they fill the row, and the
   text measure drops from ~93 to ~62 characters — better on both counts. */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 36px;   /* clearance for the first card's overhanging avatar */
}

/* The reviews column is far taller than the heading, so the heading follows the
   reader down instead of stranding a screen of white space beside the cards. */
.reviews__intro { align-self: stretch; }
.reviews__intro-inner { position: sticky; top: var(--space-10); }
.reviews__intro-inner > h2 { margin: var(--space-4) 0 0; }

.review {
  position: relative;
  background: var(--surface-card);
  padding: 62px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.review__avatar {
  position: absolute;
  top: -36px;
  left: 30px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--qa-gray-300);
  border: 2px solid var(--surface-accent);
}
.review__avatar img { width: 100%; height: 100%; object-fit: cover; }
/* Per-portrait framing — each headshot sits differently in its square crop. */
.review--helena .review__avatar img { object-position: 50% 22%; }
.review--iris   .review__avatar img { object-position: 50% 30%; }
.review__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font: var(--text-body-font);
  color: var(--text-body);
}
.review__body p { margin: 0; }
.review__meta { display: flex; flex-direction: column; gap: 2px; }
.review__name {
  font: var(--weight-bold) 16px/1.6 var(--font-body);
  color: var(--text-heading);
  font-style: normal;
}
.review__role {
  font: var(--weight-regular) 15px/1.6 var(--font-body);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------- team */

.team__intro { max-width: 620px; margin-bottom: clamp(36px, 5vw, 56px); }
.team__intro > h2 { margin: var(--space-4) 0 var(--space-6); }
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}
.team__member { display: flex; flex-direction: column; gap: 18px; }
.team__frame {
  aspect-ratio: 3 / 4;
  background: var(--qa-gray-300);
  box-shadow: var(--shadow-photo);
  overflow: hidden;
}
.team__frame > img,
.team__frame > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__frame > img.is-zoomed {
  object-position: 60% 45%;
  transform: scale(1.35);
  transform-origin: 60% 45%;
}
.team__meta { display: flex; flex-direction: column; gap: var(--space-1); }
.team__meta h3 {
  margin: 0;
  font: var(--weight-bold) 20px/1.35 var(--font-body);
  color: var(--text-heading);
}
.team__role {
  font: var(--weight-regular) 15px/1.6 var(--font-body);
  color: var(--text-muted);
}
.team__craft {
  font: var(--weight-regular) 15px/1.6 var(--font-body);
  color: var(--text-body);
}

/* ------------------------------------------------------------------ pricing */

.pricing { display: flex; flex-direction: column; gap: var(--space-5); }
.price {
  background: var(--surface-card);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.price--secondary {
  background: transparent;
  border: 1px solid var(--border-hairline);
  padding: 30px 32px;
}
.price__label {
  font: var(--weight-semibold) 13px/1.4 var(--font-body);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-accent);
}
.price--secondary .price__label { color: var(--text-muted); }
.price__amount {
  font: var(--weight-bold) 40px/1.1 var(--font-display);
  color: var(--text-heading);
}
.price--secondary .price__amount { font-size: 30px; }
.price__note {
  font: var(--weight-regular) 16px/1.7 var(--font-body);
  color: var(--text-body);
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: var(--text-button-font);
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  transition: var(--transition-color);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--surface-accent);
  border-color: var(--surface-accent);
  color: var(--text-on-accent);
}
.btn--primary:hover {
  background: var(--surface-accent-hover);
  border-color: var(--surface-accent-hover);
  color: var(--text-inverse);
}
.btn--ghost {
  background: transparent;
  border-color: var(--qa-ink);
  color: var(--text-heading);
  font-weight: var(--weight-semibold);
  min-height: 46px;
  padding: 12px 26px;
}
.btn--ghost:hover { background: var(--qa-gray-100); color: var(--text-heading); }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ------------------------------------------------------------- closing CTA */

.closing {
  background: var(--surface-ink);
  padding: clamp(60px, 11vw, 104px) 0;
}
.closing__inner {
  width: min(90%, 780px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.closing h2 {
  margin: 0;
  font: var(--weight-bold) clamp(30px, 3.2vw, 46px)/1.25 var(--font-display);
  color: var(--text-inverse);
}
.closing__sub {
  margin: 0;
  max-width: 38em;
  font: var(--weight-regular) 17px/1.85 var(--font-body);
  color: var(--text-on-ink-muted);
}
.closing__meta {
  font: var(--weight-regular) 15px/1.6 var(--font-body);
  color: var(--text-on-ink-muted);
}
.closing a { color: var(--qa-amber-300); text-decoration: underline; }
.closing a:hover { color: var(--qa-white); }
.closing .btn { margin-top: var(--space-2); }

/* -------------------------------------------------------------------- footer */

.site-footer {
  border-top: 1px solid var(--border-hairline);
  padding: 48px 0;
  background: var(--surface-page);
}
.site-footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  justify-content: space-between;
  align-items: center;
}
.site-footer__wordmark {
  font: var(--weight-bold) 15px/1 var(--font-display);
  letter-spacing: 2.4px;
  color: var(--text-heading);
}
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  font: var(--weight-regular) 15px/1.6 var(--font-body);
  color: var(--text-muted);
}
.site-footer__meta a { color: var(--text-muted); text-decoration: underline; }
.site-footer__meta a:hover { color: var(--text-heading); }

/* ========================================================== waitlist modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 3vw, 40px);
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: min(94vh, 100%);
  display: flex;
  flex-direction: column;
  background: var(--surface-page);
  border-top: 3px solid var(--surface-accent);
  box-shadow: var(--shadow-photo);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-avatar);
  background: var(--surface-page);
  border: 1px solid var(--border-input);
  color: var(--text-heading);
  font: var(--weight-regular) 19px/1 var(--font-body);
}
.modal__close:hover { background: var(--qa-gray-100); }

body.is-locked { overflow: hidden; }

/* ---- funnel chrome ---- */

.funnel { display: flex; flex-direction: column; min-height: 0; }

.funnel__header {
  flex: 0 0 auto;
  background: var(--surface-cream);
  padding: clamp(28px, 4vw, 38px) clamp(24px, 5vw, 44px) 0;
}
.funnel__step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 44px;
}
/* Explicit class, not `span:first-child` — that descendant selector also matched
   the step-number span nested inside .funnel__step-label and painted a 26x1px
   amber bar over the digits. */
.funnel__rule {
  width: 26px;
  height: 1px;
  background: var(--qa-amber-800);
  flex: 0 0 auto;
}
.funnel__step-label {
  font: var(--weight-semibold) 12px/1.4 var(--font-body);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--qa-amber-800);
}
.funnel__title {
  margin: 18px 0 10px;
  font: var(--weight-bold) clamp(26px, 3.4vw, 34px)/1.2 var(--font-display);
  color: var(--text-heading);
}
.funnel__sub {
  margin: 0;
  font: var(--weight-regular) 16px/1.7 var(--font-body);
  color: var(--text-body);
}
.funnel__progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
  padding: 26px 0 24px;
}
.funnel__progress span {
  height: 2px;
  background: var(--qa-gray-300);
  transition: background-color var(--duration-base) var(--ease-standard);
}
.funnel__progress span.is-done { background: var(--surface-accent); }

.funnel__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: clamp(26px, 4vw, 34px) clamp(24px, 5vw, 44px);
}

.funnel__footer {
  flex: 0 0 auto;
  border-top: 1px solid var(--border-hairline);
  padding: 20px clamp(20px, 5vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3) var(--space-4);
}
.funnel__footer .btn { flex: 0 1 auto; min-width: 180px; min-height: 46px; padding: 12px 26px; }
.funnel__footer .btn--ghost { min-width: 120px; padding: 12px 22px; }
.funnel__spacer { flex: 1 1 220px; }

/* ---- fields ---- */

.step { display: flex; flex-direction: column; gap: 30px; }
.step[hidden] { display: none; }
.step--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px 24px;
}
.step--prose { gap: 26px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--narrow { max-width: 420px; }
.field--medium { max-width: 460px; }
.field__label {
  font: var(--weight-semibold) 14px/1.5 var(--font-body);
  color: var(--text-heading);
}
.field__hint {
  font: var(--weight-regular) 14px/1.6 var(--font-body);
  color: var(--text-muted);
}
.req { color: var(--text-accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  font: var(--weight-regular) 16px/1.5 var(--font-body);
  color: var(--text-heading);
  background: var(--surface-page);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-input);
}
.field textarea {
  min-height: 100px;
  line-height: 1.7;
  resize: vertical;
}
.field :is(input, select, textarea):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--focus-ring);
}
.field :is(input, textarea)::placeholder { color: var(--text-muted); opacity: 1; }

fieldset { border: 0; margin: 0; padding: 0; }
legend {
  padding: 0;
  margin-bottom: 6px;
  font: var(--weight-semibold) 14px/1.5 var(--font-body);
  color: var(--text-heading);
}
fieldset > .field__hint { display: block; margin-bottom: 14px; }
legend + .chips { margin-top: 14px; }

/* ---- chips ---- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: var(--weight-semibold) 15px/1.4 var(--font-body);
  transition: var(--transition-color);
  background: var(--surface-page);
  color: var(--text-heading);
  border: 1px solid var(--border-input);
}
.chip:hover { border-color: var(--qa-amber-700); }
.chip:has(input:focus-visible) {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.chip:has(input:checked) {
  background: var(--surface-accent);
  color: var(--text-on-accent);
  border-color: var(--surface-accent);
}

/* ---- consent ---- */

.consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--surface-cream);
  border-left: 3px solid var(--surface-accent);
  cursor: pointer;
  font: var(--weight-regular) 15px/1.7 var(--font-body);
  color: var(--text-body);
}
.consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--qa-amber-800);
  cursor: pointer;
}
.consent a { text-decoration: underline; }

/* ---- feedback ---- */

.funnel__error {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-left: 3px solid var(--qa-amber-800);
  background: var(--qa-amber-100);
  font: var(--weight-semibold) 15px/1.6 var(--font-body);
  color: var(--qa-amber-800);
}
.funnel__error[hidden] { display: none; }

.funnel__done {
  padding: clamp(48px, 7vw, 76px) clamp(24px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.funnel__done[hidden] { display: none; }
.funnel__done-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: var(--radius-avatar);
  border: 2px solid var(--surface-accent);
  color: var(--text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font: var(--weight-bold) 24px/1 var(--font-body);
}
.funnel__done h3 {
  margin: 0;
  font: var(--weight-bold) clamp(26px, 3vw, 36px)/1.25 var(--font-display);
  color: var(--text-heading);
}
.funnel__done p { margin: 0; max-width: 40em; font: var(--text-body-font); color: var(--text-body); }
.funnel__done p.is-small {
  font: var(--weight-regular) 14px/1.6 var(--font-body);
  color: var(--text-muted);
}

/* ====================================================== content pages (legal) */

.prose {
  width: min(90%, 720px);
  margin-inline: auto;
  padding: var(--section-y) 0;
}
.prose h1 {
  margin: 0 0 var(--space-4);
  font: var(--weight-bold) clamp(30px, 4vw, 48px)/1.2 var(--font-display);
  color: var(--text-heading);
}
.prose h2 {
  margin: var(--space-12) 0 var(--space-4);
  font: var(--weight-bold) clamp(22px, 2.4vw, 28px)/1.3 var(--font-display);
}
.prose h3 {
  margin: var(--space-8) 0 var(--space-3);
  font: var(--weight-bold) 18px/1.4 var(--font-body);
  color: var(--text-heading);
}
.prose p, .prose li { font: var(--text-body-font); color: var(--text-body); }
.prose p { margin: 0 0 var(--space-paragraph); }
.prose ul { margin: 0 0 var(--space-paragraph); padding-left: 1.3em; }
.prose li { margin-bottom: var(--space-2); }
.prose a { text-decoration: underline; }
.prose__updated { font: var(--weight-regular) 15px/1.6 var(--font-body); color: var(--text-muted); }
.prose__back { margin-top: var(--space-12); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-paragraph);
  font: var(--weight-regular) 15px/1.6 var(--font-body);
}
.prose th, .prose td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-hairline);
  vertical-align: top;
}
.prose th { color: var(--text-heading); font-weight: var(--weight-semibold); }

.error-page {
  width: min(90%, 620px);
  margin-inline: auto;
  padding: clamp(80px, 16vw, 160px) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.error-page h1 {
  margin: 0;
  font: var(--weight-bold) clamp(32px, 5vw, 56px)/1.2 var(--font-display);
  color: var(--text-heading);
}

/* -------------------------------------------------------------- motion pref */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
