@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --black: #0b0b0b;
  --charcoal: #252525;
  --cream: #f7f2e8;
  --cream-deep: #eee5d6;
  --white: #ffffff;
  --gold: #d6a34a;
  --gold-dark: #a8762d;
  --warm-gray: #d9d2c7;
  --muted: #6d675f;
  --line: rgba(37, 37, 37, 0.16);
  --shadow: 0 24px 64px rgba(25, 18, 9, 0.18);
  --wrap: 1120px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.context-bar {
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-bottom: 1px solid rgba(214, 163, 74, 0.18);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.context-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}

.context-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.context-bar__brand img {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
}

/* V1-07: set in caps. Done here rather than in the markup so the accessible
   name and any copied text keep their real casing. Caps needs more tracking
   and a slightly larger size to stay legible at this weight. */
.context-bar__brand > span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.context-bar__note {
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .context-bar__inner {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 6px 0;
    text-align: center;
  }

  .context-bar__note {
    text-align: center;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 0 56px;
  background:
    radial-gradient(circle at 50% -18%, rgba(214, 163, 74, 0.13), transparent 32rem),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(37, 37, 37, 0.035) 1px, transparent 1px);
  background-size: 100% 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

.hero__inner {
  text-align: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 15px;
  color: var(--black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.01;
  text-wrap: balance;
}

.hero__question-line {
  display: block;
}

.hero__subhead {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #5f584f;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.45;
  text-wrap: balance;
}

.vsl {
  position: relative;
  overflow: hidden;
  width: min(740px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid rgba(214, 163, 74, 0.32);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.vsl__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vsl__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

/* V1-05: lightened from 0.28. The old poster was a bright reception room; the
   founder frame is already low-key, so a heavy scrim buried the face. The gold
   play button keeps its contrast on its own. */
.vsl__shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.16);
}

.vsl__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--white);
  text-align: center;
}

.play-button {
  display: inline-flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.play-button__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding-left: 5px;
  color: var(--black);
  background: var(--gold);
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  font-size: 1rem;
}

.play-button:disabled {
  cursor: default;
  opacity: 1;
}

.hero__action {
  display: flex;
  margin-top: 28px;
  flex-direction: column;
  align-items: center;
}

.hero__action p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.play-button:focus-visible,
.modal__close:focus-visible,
.choice-list label:has(input:focus-visible),
.compact-checks label:has(input:focus-visible),
.consent:has(input:focus-visible) {
  outline: 3px solid #4677ff;
  outline-offset: 3px;
}

.button--primary {
  min-width: 390px;
  min-height: 64px;
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold-dark);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(146, 96, 25, 0.2);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.button--primary:hover {
  background: #e1b35e;
  box-shadow: 0 18px 36px rgba(146, 96, 25, 0.26);
}

.button--secondary {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* V1-06: the founder statement is now a dark band. Previously white, which sat
   against the cream hero at a 1.12x luminance step — effectively invisible as a
   section change. Dark also carries the founder poster's tone straight down into
   the "who you'd be working with" block. */
.proof-section {
  padding: 96px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.proof-section .eyebrow {
  color: #e8bc6c;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 80px;
  align-items: start;
}

.proof-intro h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.02;
}

.proof-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.proof-founder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 34px 0 0;
}

.proof-founder__photo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  flex: none;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.proof-founder figcaption strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.proof-founder figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.proof-founder--placeholder .proof-founder__photo {
  border: 2px dashed rgba(214, 163, 74, 0.6);
}

/* V1-05: with the venue-quote column removed, this section is a single centered
   statement block. Restore the two-column grid when real quotes are added. */
.proof-grid--solo {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.proof-grid--solo .proof-founder {
  justify-content: center;
  margin-top: 38px;
}

.proof-grid--solo .proof-founder figcaption {
  text-align: left;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .proof-intro h2 {
    font-size: 2.6rem;
  }
}

/* V1-07: dark again. The proof section above it is hidden, so without this the
   page would run cream hero straight into a white section — a 1.12x luminance
   step, i.e. no visible break at all. If the proof section is ever un-hidden,
   flip this back to var(--white) or the page gets two dark bands in a row. */
.decision-section {
  padding: 108px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.decision-section .eyebrow {
  color: #e8bc6c;
}

.decision-section .outcome-list {
  border-top-color: rgba(255, 255, 255, 0.17);
}

.decision-section .outcome-list li {
  border-bottom-color: rgba(255, 255, 255, 0.17);
}

.decision-section .outcome-list li > span {
  color: var(--gold);
}

.decision-section .outcome-list strong {
  color: var(--white);
}

.decision-section .outcome-list p {
  color: rgba(255, 255, 255, 0.58);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 88px;
  align-items: start;
}

.decision-intro {
  position: sticky;
  top: 40px;
}

/* Edited in place rather than overridden above — these rules sit after the
   .decision-section block, so an override up there would lose on source order. */
.decision-intro h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.decision-intro > p:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.outcome-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list li > span {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.outcome-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 1.1rem;
}

.outcome-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.eyebrow--light {
  color: #e8bc6c;
}

.fit-section h2,
.section-heading h2 {
  margin-bottom: 24px;
  color: var(--black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.fit-section h2 {
  color: var(--white);
}

/* V1-06: cream-deep rather than cream. It follows the now-light decision section,
   so it needs a visible tonal step; the hairline makes the boundary explicit. */
.review-section {
  padding: 108px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.review-agenda {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-agenda article {
  padding: 28px 26px 30px;
}

.review-agenda article + article {
  border-left: 1px solid var(--line);
}

.review-agenda article > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.review-agenda h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1rem;
}

.review-agenda p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-action {
  display: flex;
  margin-top: 44px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-action p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* The closing CTA keeps breathing room after the FAQs without adding a second
   divider beneath the final accordion row. */
.section-action--faq {
  margin-top: 48px;
  padding-top: 0;
  border-top: 0;
}

.check-list,
.minus-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.minus-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before,
.minus-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-dark);
  content: "—";
}

.fit-section {
  padding: 108px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #171614;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
}

.fit-lists {
  display: grid;
  gap: 42px;
}

.fit-lists > div {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fit-lists h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.check-list li::before {
  color: var(--gold);
  content: "+";
}

.minus-list li::before {
  color: rgba(255, 255, 255, 0.44);
  content: "–";
}

.faq-section {
  padding: 108px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--black);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--gold-dark);
  content: "+";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 48px 20px 0;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
  border-top: 1px solid rgba(214, 163, 74, 0.24);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 32px;
  align-items: center;
}

.site-footer img {
  width: 112px;
  height: 112px;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer__legal {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 0.76rem;
}

.modal {
  width: min(680px, calc(100% - 32px));
  margin: auto;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #6b5b40 #151412;
  scrollbar-gutter: stable both-edges;
  color: var(--white);
  background: transparent;
  border: 0;
}

.modal::backdrop {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  padding: 34px 44px 44px;
  background: #151412;
  border: 1px solid rgba(214, 163, 74, 0.34);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal__topline {
  display: grid;
  gap: 4px;
  padding: 0 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress {
  height: 3px;
  margin: 16px 0 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--gold);
  transition: width 220ms ease;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h2 {
  max-width: 540px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.05;
}

.form-step[data-form-step="1"] h2 {
  font-size: 3.15rem;
}

.form-step h2:focus {
  outline: none;
}

.form-step__help {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.form-step > .eyebrow { text-align: center; }

.form-confirmation {
  padding: 50px 0 22px;
  text-align: center;
}

.form-confirmation h2 {
  margin-bottom: 16px;
  font: 500 2.8rem/1.1 "Cormorant Garamond", Georgia, serif;
}

.form-confirmation p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
}

[hidden] { display: none !important; }

.choice-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-list label {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.choice-list label:has(input:checked) {
  color: var(--white);
  background: rgba(214, 163, 74, 0.14);
  border-color: var(--gold);
}

.choice-list input {
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  accent-color: var(--gold);
}

.range-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-inline: 0;
  padding: 0;
  border: 0;
}

.range-choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.range-choice-grid label {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.range-choice-grid label:hover {
  color: var(--white);
  border-color: rgba(214, 163, 74, 0.65);
  transform: translateY(-1px);
}

.range-choice-grid label:has(input:checked) {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.range-choice-grid label:has(input:focus-visible) {
  outline: 2px solid rgba(214, 163, 74, 0.5);
  outline-offset: 3px;
}

.range-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-list--compact {
  margin-top: 26px;
}

.choice-list legend,
.check-fieldset legend {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.field-grid {
  display: grid;
  gap: 18px;
}

.field-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid--two .field--wide {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.field--spaced {
  margin-top: 24px;
}

.field__optional {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  resize: vertical;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(214, 163, 74, 0.3);
  outline-offset: 1px;
}

.field.is-hidden {
  display: none;
}

.field select option {
  color: var(--black);
}

.check-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.compact-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.compact-checks label {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.compact-checks label:has(input:checked) {
  color: var(--white);
  background: rgba(214, 163, 74, 0.14);
  border-color: var(--gold);
}

.compact-checks input {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  accent-color: var(--gold);
}

/* V1-07: inline disclosure above the submit button, replacing the consent
   checkbox. Deliberately quieter than a field label and quieter than the CTA —
   it has to be readable without competing with the submit action. Kept at
   0.75rem/1.5 so it stays legible on a 390px screen. */
.form-disclosure {
  max-width: 46rem;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.form-privacy-link {
  color: rgba(240, 206, 140, 0.86);
  text-decoration-color: rgba(240, 206, 140, 0.48);
  text-underline-offset: 2px;
}

.form-privacy-link:hover,
.form-privacy-link:focus-visible {
  color: var(--gold);
}

/* Retained for the archived consent-checkbox markup in earlier versions. */
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 400;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: #f0ce8c;
  font-size: 0.86rem;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 20px;
}

.form-status:empty, .form-error:empty { display: none; }
.field-grid + .form-error { margin-top: 20px; }
.field-grid ~ .form-disclosure { margin-top: 24px; }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.form-actions--end {
  justify-content: flex-end;
}

.form-actions--center {
  justify-content: center;
}

.form-error {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: #ffb6a7;
  font-size: 0.88rem;
  text-align: center;
}

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

@media (max-width: 1100px) {
  .hero h1 {
    max-width: 900px;
  }

  .decision-grid {
    gap: 60px;
  }

  .fit-grid {
    gap: 64px;
  }

  .faq-grid {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 36px, 720px);
  }

  .hero {
    padding: 28px 0 56px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .vsl__content {
    padding: 24px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .decision-intro {
    position: static;
  }

  .decision-intro h2 {
    font-size: 3.4rem;
  }

  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .fit-section h2,
  .section-heading h2 {
    font-size: 3.4rem;
  }

  .review-agenda {
    grid-template-columns: 1fr;
  }

  .review-agenda article + article,
  .review-agenda article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

}

@media (max-width: 600px) {
  /* V1-06 mobile pass. Three things were wrong: gutters were 14px a side,
     section headings rendered at 48px on a 390px screen, and headings alternated
     between left- and centre-aligned. Gutters are now 20px, headings step down
     to 2.15rem, and every heading / eyebrow / lead paragraph / CTA is centred.
     Bullet lists and FAQ answers stay left-aligned — centred body copy is harder
     to scan, and ragged-left bullets read as broken. */
  .wrap {
    width: min(100% - 40px, 540px);
  }

  .context-bar__inner {
    min-height: 38px;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 24px 0 44px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .hero__subhead {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  /* V1-05: the poster is now 16:9 like the container, so the object-position
     nudges and the heavier scrim that the square placeholder needed are gone. */
  .vsl {
    aspect-ratio: 16 / 9;
  }

  .vsl__content {
    padding: 16px;
  }

  .play-button {
    gap: 8px;
    padding: 0;
    font-size: 0.68rem;
  }

  .play-button__icon {
    width: 56px;
    height: 56px;
    border-width: 2px;
  }

  .hero__action {
    margin-top: 20px;
  }

  .button,
  .button--primary {
    width: 100%;
    min-width: 0;
  }

  .proof-section,
  .decision-section,
  .review-section,
  .fit-section,
  .faq-section {
    padding: 62px 0;
  }

  /* One heading size across every section on mobile. */
  .proof-intro h2,
  .decision-intro h2,
  .fit-section h2,
  .section-heading h2 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  /* Centre the argument, not the lists. */
  .proof-intro,
  .decision-intro,
  .section-heading,
  .fit-grid > div:first-child,
  .decision-intro > p:last-child,
  .mechanism-copy {
    text-align: center;
  }

  .section-heading {
    margin-inline: auto;
  }

  .fit-lists h3,
  .fit-lists ul,
  .faq-list {
    text-align: left;
  }

  .review-agenda {
    grid-template-columns: 1fr;
  }

  .review-agenda article,
  .review-agenda article + article,
  .review-agenda article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-agenda article:first-child {
    border-top: 0;
  }

  .field-grid--two,
  .compact-checks {
    grid-template-columns: 1fr;
  }

  .range-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-choice-grid label:last-child {
    grid-column: 1 / -1;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .site-footer__inner {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .site-footer img {
    width: 76px;
    height: 76px;
  }

  .outcome-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .modal {
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    margin: 0;
    inset: 0;
    height: 100dvh;
  }

  .modal__close {
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
  }

  .modal__panel {
    min-height: 100dvh;
    padding: max(28px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  }

  .modal__topline {
    display: grid;
    padding: 0 44px;
  }

  .modal__topline span:last-child {
    display: block;
    margin-top: 5px;
  }

  .progress {
    margin-bottom: 30px;
  }

  /* Matches the 2.15rem section headings so the modal doesn't shout louder
     than the page it opened from. */
  .form-step h2 {
    font-size: 1.95rem;
    line-height: 1.1;
  }

  .form-step[data-form-step="1"] h2 {
    font-size: 2.25rem;
  }

  .modal.modal--received {
    width: calc(100% - 32px);
    height: fit-content;
    max-height: calc(100dvh - 32px);
    margin: auto;
  }

  .modal--received .modal__panel { min-height: 0; }
  .form-confirmation h2 { font-size: 2.35rem; }
}

@media (max-height: 760px) and (min-width: 601px) {
  .hero {
    padding: 20px 0 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .hero__subhead {
    margin-bottom: 20px;
    font-size: 1.08rem;
  }

  /* V1-05: the old 335px fixed height existed to give the SQUARE placeholder
     poster presence on mobile. The real poster is 16:9, so forcing a near-square
     box cropped the founder's head. Staying 16:9 also means the video itself
     plays without letterboxing. Matches the ACQ reference (320x180 at 390px). */
  .vsl__content {
    padding: 24px;
  }

  .hero__action {
    margin-top: 16px;
  }

  /* Keep the complete CTA in view on short laptop/tablet windows while
     preserving the founder video's 16:9 crop. */
  .vsl {
    width: min(740px, calc((100svh - 390px) * 16 / 9), 100%);
    min-width: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* V1-11: mobile typography follows phrases, not incidental title-case wraps. */
@media (max-width: 600px) {
  .context-bar__inner {
    flex-direction: column;
    gap: 3px;
    padding-block: 8px;
  }

  .context-bar__brand > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
  }

  .context-bar__note {
    font-size: 0.6875rem;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__question-line {
    display: block;
    white-space: nowrap;
  }

  .hero__subhead {
    max-width: 19rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .hero__action p {
    max-width: 19rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    text-wrap: balance;
  }
}

@media (max-width: 359px) {
  .hero h1 {
    font-size: 1.375rem;
  }
}
