html, body { overflow-x: clip; }

/* ============================================================
   RPW BRAND TOKENS — per rpw-brand-voice §Visual Constants
   ============================================================ */
:root {
  --navy: #14192C;
  --navy-deep: #0B0F1C;
  --charcoal: #2A2F45;
  --gold: #B7A567;
  --gold-light: #D4C28A;
  --cream: #F5F1E8;
  --off-white: #FAF7F0;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --hairline: rgba(183, 165, 103, 0.3);
  --soft-grey: #E5E5E5;

  --font-display: 'Cormorant Garamond', 'Didot', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, Calibri, sans-serif;

  --radius: 2px;
  --container-desktop: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container-desktop);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   NAV — slimmed. No menu links: a landing page should not
   offer exits. Phone only (a call is also a conversion).
   ============================================================ */
.nav {
  background: var(--navy);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(183, 165, 103, 0.15);
}
.nav-inner {
  max-width: var(--container-desktop);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  color: var(--gold);
  overflow: hidden;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
}
.nav-phone {
  font-size: 12px; color: var(--gold-light);
  text-decoration: none; letter-spacing: 0.08em; font-weight: 600;
  white-space: nowrap;
}
.nav-phone-label { display: none; }
@media (min-width: 640px) {
  .nav-phone-label { display: inline; color: rgba(255,255,255,0.55); margin-right: 6px; font-weight: 400; }
  .logo-text { font-size: 12px; }
}

/* ============================================================
   HERO — two-column on desktop: proposition left, form right.
   The form must be visible without scrolling on a 1440x900
   laptop. This is the core structural bet of v22.
   ============================================================ */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 40px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(183,165,103,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 980px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.hero-left .eyebrow { margin-bottom: 16px; display: block; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 .gold-em { color: var(--gold); }
.hero h1 .reg {
  font-size: 0.4em; vertical-align: super;
  color: var(--gold); margin-left: 2px; font-weight: 400;
}

@media (min-width: 640px) { .hero h1 { font-size: 46px; } }
@media (min-width: 980px) { .hero h1 { font-size: 50px; } }

.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-sub strong { color: #fff; font-weight: 500; }

/* Three outcome bullets — outcomes, not features (brief item 5) */
.hero-bullets {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  max-width: 520px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(183,165,103,0.14);
}
.hero-bullets li:last-child { border-bottom: 0; }
.hero-bullets .tick {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 10px;
  line-height: 1;
}
@media (min-width: 640px) { .hero-bullets li { font-size: 15px; } }

/* Trust bar — proof above the fold (brief item 9) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(183,165,103,0.22);
  max-width: 520px;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-trust-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ============================================================
   HERO FORM CARD — 3 fields (DPE Module 5 §6)
   ============================================================ */
.form-card {
  background: #fff;
  border-top: 3px solid var(--gold);
  padding: 26px 22px 24px;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.55);
  position: relative;
}
@media (min-width: 640px) { .form-card { padding: 32px 30px 28px; } }

.form-card-head { margin-bottom: 20px; }
.form-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.form-card-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.form-card-note strong { color: var(--navy); font-weight: 600; }

.rpw-form { display: flex; flex-direction: column; gap: 14px; }
.rpw-field { display: flex; flex-direction: column; }
.rpw-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.rpw-input {
  padding: 14px 15px;
  font-family: var(--font-body);
  font-size: 16px; /* 16px prevents iOS zoom-on-focus */
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rpw-input::placeholder { color: #aaa; }
.rpw-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,165,103,0.18);
}
.rpw-input.has-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.rpw-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}
.rpw-error.is-visible { display: block; }

/* Honeypot — bots fill this, humans never see it */
.rpw-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.rpw-submit {
  margin-top: 4px;
  padding: 18px 26px;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  width: 100%;
}
.rpw-submit:hover:not(:disabled) {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.rpw-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.rpw-microcopy {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.rpw-microcopy strong { color: var(--navy); font-weight: 600; }

.rpw-status {
  display: none;
  padding: 12px 14px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: var(--radius);
  text-align: center;
}
.rpw-status.is-visible { display: block; }
.rpw-status.is-loading { background: var(--cream); color: var(--charcoal); }
.rpw-status.is-success { background: var(--cream); color: var(--navy); font-weight: 600; }
.rpw-status.is-error { background: #fdf2f0; color: #c0392b; }

/* Form footer trust line */
.form-card-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--soft-grey);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-card-foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 52px 0; }
@media (min-width: 768px) { .section { padding: 76px 0; } }
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 660px;
  margin: 0 auto 14px;
}
.section-dark .section-head h2 { color: #fff; }
.section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-dark .section-head p { color: rgba(255,255,255,0.72); }
@media (min-width: 768px) {
  .section-head h2 { font-size: 38px; }
  .section-head p { font-size: 16px; }
}

/* ============================================================
   SOCIAL PROOF BAND — position 2
   ============================================================ */
.proof-band {
  background: var(--navy-deep);
  border-top: 1px solid rgba(183,165,103,0.2);
  border-bottom: 1px solid rgba(183,165,103,0.2);
  padding: 22px 0;
}
.proof-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.proof-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  white-space: nowrap;
}
.proof-chip strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  text-transform: none;
}
.proof-stars { display: inline-flex; gap: 2px; }
.proof-stars .star {
  width: 13px; height: 13px; background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.proof-band-awards {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 0 20px;
}
.proof-band-awards img { width: 100%; opacity: 0.92; }
.proof-band-caption {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 14px;
}

/* ============================================================
   OUTCOME BLOCK — the transformation, moved up (brief item 6)
   ============================================================ */
.outcome {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.outcome::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 2px;
  background: var(--gold);
}
@media (min-width: 768px) { .outcome { padding: 76px 0; } }

.outcome-inner { max-width: 960px; margin: 0 auto; padding: 0 20px; text-align: center; }
.outcome-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
}
.outcome-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 27px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 auto 40px;
  max-width: 660px;
}
@media (min-width: 640px) { .outcome-heading { font-size: 34px; margin-bottom: 48px; } }

.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(183,165,103,0.2);
  border: 1px solid rgba(183,165,103,0.2);
  max-width: 880px;
  margin: 0 auto 30px;
}
@media (min-width: 640px) { .outcome-grid { grid-template-columns: repeat(3, 1fr); } }

.outcome-stat { background: var(--navy); padding: 32px 20px; text-align: center; }
.outcome-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.outcome-num .unit { font-size: 0.42em; color: var(--gold-light); margin-left: 2px; font-weight: 400; letter-spacing: 0; }
.outcome-num .prefix { font-size: 0.5em; color: var(--gold-light); margin-right: 1px; font-weight: 400; vertical-align: 0.2em; }
@media (min-width: 640px) { .outcome-num { font-size: 56px; } }
@media (min-width: 900px) { .outcome-num { font-size: 62px; } }

.outcome-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4;
}
.outcome-sub {
  display: block; font-size: 11px; color: rgba(255,255,255,0.52);
  text-transform: none; letter-spacing: 0.04em; margin-top: 7px; font-weight: 400;
}
.outcome-frame {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 22px;
  max-width: 600px;
  line-height: 1.5;
}
@media (min-width: 640px) { .outcome-frame { font-size: 19px; } }

.outcome-disclaimer {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   VIDEO + REASONS — video adjacent to CTA rationale
   ============================================================ */
.video-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .video-reasons-grid { grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border: 1px solid var(--gold);
  overflow: hidden;
}
.video-frame iframe, .video-frame .video-poster {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-poster {
  background:
    linear-gradient(180deg, rgba(20,25,44,0.35) 0%, rgba(11,15,28,0.75) 100%),
    url('https://i.ytimg.com/vi/tI1b0ysupCc/maxresdefault.jpg') center/cover no-repeat,
    linear-gradient(135deg, #14192C 0%, #0B0F1C 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}
.video-poster-label {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 5px 11px;
  border: 1px solid rgba(183,165,103,0.5);
  background: rgba(11,15,28,0.7); z-index: 2;
}
.play-btn {
  position: relative;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 11px rgba(183,165,103,0.2);
  transition: transform 0.3s ease;
}
.video-poster:hover .play-btn { transform: scale(1.07); }
.play-btn::after {
  content: ""; width: 0; height: 0;
  border-left: 16px solid var(--navy);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.video-caption {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

.reasons-list { display: flex; flex-direction: column; gap: 20px; }
.reason {
  display: flex; gap: 15px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.reason:last-child { border-bottom: 0; padding-bottom: 0; }
.reason-num {
  font-family: var(--font-display);
  font-weight: 600; font-size: 19px;
  color: var(--gold); line-height: 1;
  min-width: 26px; padding-top: 2px;
}
.reason-body h3 {
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.reason-body p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   WHAT HAPPENS NEXT — timeline (brief item 8)
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  counter-reset: tl;
}
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.tl-step {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 24px 22px;
  position: relative;
}
@media (min-width: 860px) {
  .tl-step { border-right: 0; }
  .tl-step:last-child { border-right: 1px solid var(--hairline); }
}
@media (max-width: 859px) {
  .tl-step { border-bottom: 0; }
  .tl-step:last-child { border-bottom: 1px solid var(--hairline); }
}

.tl-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  opacity: 0.35;
}
.tl-step[data-step="1"]::before { opacity: 1; }
.tl-step[data-step="2"]::before { opacity: 0.75; }
.tl-step[data-step="3"]::before { opacity: 0.55; }
.tl-step[data-step="4"]::before { opacity: 0.4; }

.tl-when {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.tl-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.tl-body { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   TESTIMONIAL — single, video-led
   ============================================================ */
.testimonial-inner { max-width: 860px; margin: 0 auto; padding: 0 20px; text-align: center; }
.testimonial-video-wrap { max-width: 680px; margin: 0 auto 32px; }
.testimonial-video-frame {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: #000; border: 1px solid var(--gold); overflow: hidden;
}
.testimonial-video-frame iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; }
.star {
  width: 17px; height: 17px; background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 21px; line-height: 1.4;
  color: var(--navy); margin-bottom: 18px;
  letter-spacing: -0.005em;
}
@media (min-width: 640px) { .quote { font-size: 26px; } }
.quote-attr {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.testimonial-consent {
  font-size: 10px; color: var(--muted); margin-top: 16px;
  line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   GUARANTEES — compact 4-up
   ============================================================ */
.guarantees-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 560px) { .guarantees-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .guarantees-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

.guarantee {
  background: var(--navy-deep);
  border: 1px solid rgba(183,165,103,0.25);
  padding: 24px 20px; text-align: center;
}
.guarantee-icon {
  width: 32px; height: 32px; margin: 0 auto 12px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
}
.guarantee h4 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  color: var(--gold-light); margin-bottom: 8px; line-height: 1.2;
}
.guarantee p { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.guarantee-terms {
  text-align: center; max-width: 700px; margin: 26px auto 0;
  font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
  position: relative;
}
.final-cta::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 48px; height: 2px; background: var(--gold);
}
@media (min-width: 768px) { .final-cta { padding: 80px 0; } }

.final-cta-inner { max-width: 620px; margin: 0 auto; padding: 0 20px; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 28px; line-height: 1.18;
  color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em;
}
@media (min-width: 640px) { .final-cta h2 { font-size: 36px; } }
.final-cta p {
  font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 28px;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 18px 38px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.final-cta-alt {
  display: block; margin-top: 20px;
  font-size: 13px; color: var(--muted); text-decoration: none;
}
.final-cta-alt a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  padding: 20px 0; text-align: left;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; letter-spacing: -0.005em;
}
.faq-toggle {
  width: 22px; height: 22px; border: 1px solid var(--gold);
  flex-shrink: 0; position: relative; transition: transform 0.3s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--gold);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 9px; height: 1px; }
.faq-toggle::after { width: 1px; height: 9px; transition: transform 0.3s ease; }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding-bottom: 22px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.faq-a-inner strong { color: var(--navy); font-weight: 600; }
.faq-a-inner em { display: block; margin-top: 10px; font-size: 12px; font-style: italic; opacity: 0.85; }
.faq-item.open .faq-a { max-height: 720px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 44px 0 30px;
  font-size: 12px; text-align: center;
}
.footer .logo-mark { margin: 0 auto 14px; }
.footer-links { margin: 18px 0; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer a { color: var(--gold-light); text-decoration: none; letter-spacing: 0.06em; }
.footer a:hover { color: var(--gold); }
.footer-address { font-size: 11px; line-height: 1.7; margin: 14px 0; color: rgba(255,255,255,0.5); }
.footer-disclaimer {
  max-width: 760px; margin: 20px auto 0;
  font-size: 10px; line-height: 1.7; color: rgba(255,255,255,0.42);
}
.footer-legal {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(183,165,103,0.15);
  font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
}

/* ============================================================
   STICKY MOBILE CTA — scrolls to hero form
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  transform: translateY(105%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(20,25,44,0.35);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta button {
  display: block; width: 100%;
  background: var(--gold); color: var(--navy);
  border: 0; padding: 15px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 76px; } }

/* ============================================================
   v23 — TIER LADDER + ENGAGEMENT STATE
   ============================================================ */
.tier-ladder {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 700px) { .tier-ladder { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tier-ladder { grid-template-columns: repeat(5, 1fr); gap: 10px; } }

.tier {
  background: #fff; border: 1px solid var(--hairline);
  padding: 22px 18px; position: relative;
  display: flex; flex-direction: column;
}
.tier::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
}
.tier[data-t="1"]::before { opacity: 0.3; }
.tier[data-t="2"]::before { opacity: 0.45; }
.tier[data-t="3"]::before { opacity: 0.65; }
.tier[data-t="4"]::before { opacity: 0.85; }
.tier[data-t="5"]::before { opacity: 1; }

.tier-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; color: var(--navy); line-height: 1.1;
  margin-bottom: 6px; letter-spacing: -0.005em;
}
.tier-tag {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.tier-for {
  font-size: 12.5px; line-height: 1.55; color: var(--muted);
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--hairline); flex-grow: 1;
}
.tier-bench { display: flex; flex-direction: column; gap: 4px; }
.tier-bench-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; color: var(--navy); line-height: 1; letter-spacing: -0.01em;
}
.tier-bench-label {
  font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.tier-note {
  max-width: 760px; margin: 28px auto 0; text-align: center;
  font-size: 13px; line-height: 1.7; color: var(--muted); font-style: italic;
}

/* Engagement state */
.state-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 860px; margin: 0 auto;
}
@media (min-width: 700px) { .state-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.state {
  background: var(--navy-deep);
  border: 1px solid rgba(183,165,103,0.25);
  padding: 28px 24px;
}
.state-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 24px; color: var(--gold-light);
  margin-bottom: 4px; line-height: 1.1;
}
.state-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.state p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.75); }
.state p + p { margin-top: 10px; }
.state-foot {
  max-width: 760px; margin: 26px auto 0; text-align: center;
  font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.6);
}

/* ============================================================
   v25 — CAPITAL ANSWER BLOCK (message match for question terms)
   ============================================================ */
.answer-block {
  background: var(--cream);
  padding: 52px 0;
  position: relative;
  border-top: 1px solid var(--hairline);
}
.answer-block::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 56px; height: 2px; background: var(--gold);
}
@media (min-width: 768px) { .answer-block { padding: 76px 0; } }

.answer-intro { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.answer-intro h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 28px; line-height: 1.18; color: var(--navy);
  letter-spacing: -0.01em; margin-bottom: 14px;
}
@media (min-width: 768px) { .answer-intro h2 { font-size: 36px; } }
.answer-intro p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* Tab switcher */
.cap-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin: 0 auto 28px; max-width: 720px;
}
.cap-tab {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 20px; border: 1px solid var(--hairline);
  background: #fff; color: var(--navy); cursor: pointer;
  border-radius: var(--radius); transition: all 0.2s ease;
}
.cap-tab:hover { border-color: var(--gold); }
.cap-tab.is-active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

.cap-panel { display: none; max-width: 880px; margin: 0 auto; }
.cap-panel.is-active { display: block; }

.cap-card {
  background: #fff; border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold); padding: 28px 24px;
}
@media (min-width: 640px) { .cap-card { padding: 34px 34px; } }

.cap-lead {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; line-height: 1.45; color: var(--navy);
  margin-bottom: 24px; padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 640px) { .cap-lead { font-size: 22px; } }

.cap-rows { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 22px; }
.cap-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(183,165,103,0.18);
}
.cap-row:last-child { border-bottom: 0; }
.cap-row-label { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.cap-row-value {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--navy); white-space: nowrap; letter-spacing: -0.005em;
}
.cap-row.is-total { border-top: 1px solid var(--hairline); margin-top: 6px; padding-top: 16px; }
.cap-row.is-total .cap-row-label { color: var(--navy); font-weight: 600; font-size: 14px; }
.cap-row.is-total .cap-row-value { color: var(--gold); font-size: 20px; }

.cap-note {
  font-size: 13px; line-height: 1.7; color: var(--muted);
  padding-top: 18px; border-top: 1px solid var(--hairline);
}
.cap-note strong { color: var(--navy); font-weight: 600; }

.answer-honest {
  max-width: 720px; margin: 32px auto 0;
  background: var(--navy); color: #fff; padding: 28px 26px;
  border-left: 3px solid var(--gold);
}
.answer-honest h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--gold-light); margin-bottom: 12px; line-height: 1.2;
}
.answer-honest p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.82); }
.answer-honest p + p { margin-top: 12px; }
.answer-honest a {
  color: var(--gold); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(183,165,103,0.5);
}

.answer-disclaimer {
  max-width: 780px; margin: 24px auto 0; text-align: center;
  font-size: 11px; line-height: 1.7; color: var(--muted);
}

/* ============================================================
   v27 — REFRAME + PSSR CROSS-LINK
   ============================================================ */
.reframe { background: var(--navy); color:#fff; padding:48px 0; position:relative; }
.reframe::before{ content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:56px; height:2px; background:var(--gold); }
@media (min-width:768px){ .reframe{ padding:68px 0; } }
.reframe-inner{ max-width:820px; margin:0 auto; padding:0 20px; text-align:center; }
.reframe-pair{ display:grid; grid-template-columns:1fr; gap:14px; max-width:760px; margin:22px auto 26px; }
@media (min-width:700px){ .reframe-pair{ grid-template-columns:1fr 1fr; gap:18px; } }
.reframe-side{ padding:24px 22px; border:1px solid rgba(183,165,103,0.25); text-align:left; }
.reframe-side.is-them{ background:rgba(255,255,255,0.03); }
.reframe-side.is-us{ background:rgba(183,165,103,0.08); border-color:var(--gold); }
.reframe-label{ font-size:10px; letter-spacing:0.2em; text-transform:uppercase; font-weight:700; margin-bottom:12px; }
.reframe-side.is-them .reframe-label{ color:rgba(255,255,255,0.5); }
.reframe-side.is-us .reframe-label{ color:var(--gold); }
.reframe-q{ font-family:var(--font-display); font-size:21px; line-height:1.3; color:#fff; margin-bottom:10px; font-weight:500; }
.reframe-side.is-us .reframe-q{ color:var(--gold-light); }
.reframe-sub{ font-size:13px; line-height:1.6; color:rgba(255,255,255,0.7); }
.reframe-close{ font-family:var(--font-display); font-style:italic; font-size:17px;
  line-height:1.5; color:rgba(255,255,255,0.85); max-width:620px; margin:0 auto; }
@media (min-width:640px){ .reframe-close{ font-size:19px; } }

.owner-bridge {
  background: var(--cream); border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline);
  padding: 30px 0;
}
.owner-bridge-inner {
  max-width: 780px; margin:0 auto; padding:0 20px;
  display:flex; flex-direction:column; gap:14px; align-items:center; text-align:center;
}
@media (min-width:760px){ .owner-bridge-inner{ flex-direction:row; text-align:left; justify-content:space-between; gap:26px; } }
.owner-bridge-text h3 {
  font-family:var(--font-display); font-weight:600; font-size:20px;
  color:var(--navy); margin-bottom:6px; line-height:1.2;
}
.owner-bridge-text p{ font-size:14px; line-height:1.6; color:var(--muted); }
.owner-bridge a {
  flex-shrink:0; display:inline-block; background:transparent; color:var(--navy);
  border:1px solid var(--navy); padding:14px 24px; text-decoration:none;
  font-size:11px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  border-radius:var(--radius); transition:all 0.2s ease; white-space:nowrap;
}
.owner-bridge a:hover{ background:var(--navy); color:#fff; }

/* ============================================================
   v28 — TRAJECTORY SIMULATOR
   ============================================================ */
.sim { background: var(--navy); color:#fff; padding:52px 0; position:relative; }
.sim::before{ content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:56px; height:2px; background:var(--gold); }
@media (min-width:768px){ .sim{ padding:76px 0; } }
.sim-inner{ max-width:1060px; margin:0 auto; padding:0 20px; }
.sim-head{ text-align:center; max-width:720px; margin:0 auto 34px; }
.sim-head h2{ font-family:var(--font-display); font-weight:600; font-size:29px;
  line-height:1.18; color:#fff; letter-spacing:-0.01em; margin-bottom:14px; }
@media (min-width:768px){ .sim-head h2{ font-size:37px; } }
.sim-head p{ font-size:15px; line-height:1.7; color:rgba(255,255,255,0.75); }

.sim-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
@media (min-width:900px){ .sim-grid{ grid-template-columns: 340px 1fr; gap:32px; align-items:start; } }

/* Inputs */
.sim-panel{ background:rgba(255,255,255,0.04); border:1px solid rgba(183,165,103,0.25); padding:24px 22px; }
.sim-panel-t{ font-size:10px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin-bottom:20px; }
.sim-field{ margin-bottom:20px; }
.sim-label{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; margin-bottom:9px; }
.sim-label span:first-child{ font-size:12px; letter-spacing:0.06em; color:rgba(255,255,255,0.8); font-weight:500; }
.sim-val{ font-family:var(--font-display); font-weight:600; font-size:19px; color:var(--gold); letter-spacing:-0.01em; }
.sim-range{ -webkit-appearance:none; appearance:none; width:100%; height:3px;
  background:rgba(255,255,255,0.18); outline:none; border-radius:2px; }
.sim-range::-webkit-slider-thumb{ -webkit-appearance:none; appearance:none; width:20px; height:20px;
  border-radius:50%; background:var(--gold); cursor:pointer; border:2px solid var(--navy); }
.sim-range::-moz-range-thumb{ width:20px; height:20px; border-radius:50%; background:var(--gold);
  cursor:pointer; border:2px solid var(--navy); }
.sim-hint{ font-size:11px; color:rgba(255,255,255,0.45); margin-top:7px; line-height:1.5; }

.sim-seg{ display:flex; gap:6px; flex-wrap:wrap; }
.sim-seg button{ flex:1 1 auto; min-width:64px; padding:10px 8px; background:transparent;
  border:1px solid rgba(183,165,103,0.3); color:rgba(255,255,255,0.75);
  font-family:var(--font-body); font-size:12px; font-weight:600; letter-spacing:0.04em;
  cursor:pointer; border-radius:2px; transition:all 0.18s ease; }
.sim-seg button:hover{ border-color:var(--gold); }
.sim-seg button.is-on{ background:var(--gold); border-color:var(--gold); color:var(--navy); }

/* Results */
.sim-out{ display:flex; flex-direction:column; gap:16px; }
.sim-compare{ display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width:620px){ .sim-compare{ grid-template-columns:1fr 1fr; } }
.sim-card{ border:1px solid rgba(183,165,103,0.25); padding:22px 20px; }
.sim-card.is-now{ background:rgba(255,255,255,0.03); }
.sim-card.is-next{ background:rgba(183,165,103,0.1); border-color:var(--gold); }
.sim-card-l{ font-size:10px; letter-spacing:0.18em; text-transform:uppercase; font-weight:700; margin-bottom:12px; }
.sim-card.is-now .sim-card-l{ color:rgba(255,255,255,0.5); }
.sim-card.is-next .sim-card-l{ color:var(--gold); }
.sim-num{ font-family:var(--font-display); font-weight:600; font-size:38px; line-height:1;
  letter-spacing:-0.02em; margin-bottom:8px; }
.sim-card.is-now .sim-num{ color:rgba(255,255,255,0.9); }
.sim-card.is-next .sim-num{ color:var(--gold); }
@media (min-width:620px){ .sim-num{ font-size:42px; } }
.sim-cap{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.6); line-height:1.5; }
.sim-meta{ margin-top:12px; padding-top:12px; border-top:1px solid rgba(183,165,103,0.18);
  font-size:12px; color:rgba(255,255,255,0.65); line-height:1.6; }

/* The gap */
.sim-gap{ background:var(--navy-deep); border:1px solid var(--gold); padding:24px 22px; text-align:center; }
.sim-gap-l{ font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:12px; }
.sim-gap-n{ font-family:var(--font-display); font-weight:600; font-size:46px; line-height:1;
  color:var(--gold); letter-spacing:-0.02em; margin-bottom:10px; }
@media (min-width:620px){ .sim-gap-n{ font-size:56px; } }
.sim-gap-t{ font-size:13.5px; line-height:1.65; color:rgba(255,255,255,0.8); max-width:520px; margin:0 auto; }

/* Chart */
.sim-chart{ background:rgba(255,255,255,0.03); border:1px solid rgba(183,165,103,0.2); padding:20px 18px; }
.sim-chart-t{ font-size:10px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin-bottom:4px; }
.sim-chart-s{ font-size:11px; color:rgba(255,255,255,0.5); margin-bottom:16px; }
.sim-legend{ display:flex; gap:18px; flex-wrap:wrap; margin-top:14px; font-size:11px; color:rgba(255,255,255,0.65); }
.sim-legend i{ display:inline-block; width:14px; height:2px; margin-right:7px; vertical-align:3px; }

.sim-cta{ background:rgba(183,165,103,0.1); border-left:3px solid var(--gold); padding:22px 22px; }
.sim-cta p{ font-size:14px; line-height:1.7; color:rgba(255,255,255,0.85); margin-bottom:14px; }
.sim-cta p strong{ color:#fff; font-weight:600; }
.sim-cta-row{ display:flex; gap:10px; flex-wrap:wrap; }
.sim-cta-row button, .sim-cta-row a{
  display:inline-block; padding:14px 22px; font-family:var(--font-body); font-size:11px;
  font-weight:700; letter-spacing:0.14em; text-transform:uppercase; border-radius:2px;
  cursor:pointer; text-decoration:none; transition:all 0.2s ease; border:1px solid var(--gold);
}
.sim-cta-row .is-primary{ background:var(--gold); color:var(--navy); }
.sim-cta-row .is-primary:hover{ background:var(--gold-light); border-color:var(--gold-light); }
.sim-cta-row .is-ghost{ background:transparent; color:var(--gold); }
.sim-cta-row .is-ghost:hover{ background:rgba(183,165,103,0.15); }

.sim-assume{ margin-top:22px; }
.sim-assume summary{
  cursor:pointer; font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gold); font-weight:600; padding:12px 0; border-top:1px solid rgba(183,165,103,0.2);
}
.sim-assume-body{ font-size:12px; line-height:1.75; color:rgba(255,255,255,0.6); padding-top:8px; }
.sim-assume-body ul{ margin:10px 0 0 18px; }
.sim-assume-body li{ margin-bottom:7px; }
.sim-disc{ margin-top:18px; font-size:11px; line-height:1.7; color:rgba(255,255,255,0.45); }

/* ============================================================
   v29 — GATED 3-SCENARIO SIMULATOR
   ============================================================ */
.sim-stage { position: relative; }

/* Teaser (pre-gate) */
.sim-teaser { text-align:center; padding: 8px 0 4px; }
.sim-teaser-l { font-size:10px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin-bottom:14px; }
.sim-teaser-n { font-family:var(--font-display); font-weight:600; font-size:52px;
  line-height:1; color:var(--gold); letter-spacing:-0.02em; margin-bottom:12px; }
@media (min-width:620px){ .sim-teaser-n{ font-size:66px; } }
.sim-teaser-t { font-size:14px; line-height:1.7; color:rgba(255,255,255,0.8);
  max-width:540px; margin:0 auto 8px; }
.sim-teaser-sub { font-size:12px; color:rgba(255,255,255,0.5); max-width:520px; margin:0 auto; }

/* Locked preview */
.sim-locked { position:relative; margin-top:22px; }
.sim-locked-blur { filter: blur(7px); opacity:0.42; pointer-events:none; user-select:none; }
.sim-lock-panel {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:16px;
}
.sim-lock-card {
  background:var(--navy-deep); border:1px solid var(--gold); padding:26px 24px;
  max-width:430px; width:100%; text-align:center;
  box-shadow:0 24px 60px -20px rgba(0,0,0,0.7);
}
.sim-lock-t { font-family:var(--font-display); font-weight:600; font-size:23px;
  color:#fff; line-height:1.2; margin-bottom:10px; }
.sim-lock-p { font-size:13px; line-height:1.65; color:rgba(255,255,255,0.7); margin-bottom:18px; }
.sim-lock-list { text-align:left; margin:0 auto 18px; max-width:300px; }
.sim-lock-list li { list-style:none; font-size:12.5px; line-height:1.5;
  color:rgba(255,255,255,0.78); padding:6px 0 6px 20px; position:relative; }
.sim-lock-list li::before { content:"✓"; position:absolute; left:0; color:var(--gold); font-size:11px; }

.sim-gate-form { display:flex; flex-direction:column; gap:10px; }
.sim-gate-form input {
  padding:13px 14px; font-family:var(--font-body); font-size:16px; color:var(--navy);
  background:#fff; border:1px solid rgba(255,255,255,0.25); border-radius:var(--radius);
  outline:none; width:100%; -webkit-appearance:none;
}
.sim-gate-form input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(183,165,103,0.25); }
.sim-gate-form input.has-error { border-color:#e08a7d; box-shadow:0 0 0 3px rgba(224,138,125,0.2); }
.sim-gate-err { font-size:12px; color:#ffb4b4; text-align:left; display:none; }
.sim-gate-err.is-visible { display:block; }
.sim-gate-btn {
  margin-top:4px; padding:16px 22px; background:var(--gold); color:var(--navy);
  border:1px solid var(--gold); border-radius:var(--radius); font-family:var(--font-body);
  font-size:12px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; cursor:pointer;
  transition:background-color 0.2s ease;
}
.sim-gate-btn:hover:not(:disabled){ background:var(--gold-light); }
.sim-gate-btn:disabled{ opacity:0.6; cursor:not-allowed; }
.sim-gate-note { font-size:10.5px; line-height:1.6; color:rgba(255,255,255,0.45); margin-top:12px; }

/* 3-scenario grid */
.sim-three { display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width:760px){ .sim-three{ grid-template-columns:repeat(3,1fr); } }
.sim-sc { border:1px solid rgba(183,165,103,0.25); padding:22px 18px; }
.sim-sc.is-do-nothing { background:rgba(255,255,255,0.03); }
.sim-sc.is-one { background:rgba(183,165,103,0.07); }
.sim-sc.is-two { background:rgba(183,165,103,0.13); border-color:var(--gold); }
.sim-sc-l { font-size:10px; letter-spacing:0.16em; text-transform:uppercase; font-weight:700; margin-bottom:11px; }
.sim-sc.is-do-nothing .sim-sc-l{ color:rgba(255,255,255,0.5); }
.sim-sc.is-one .sim-sc-l{ color:var(--gold-light); }
.sim-sc.is-two .sim-sc-l{ color:var(--gold); }
.sim-sc-n { font-family:var(--font-display); font-weight:600; font-size:33px; line-height:1;
  letter-spacing:-0.02em; margin-bottom:7px; color:#fff; }
.sim-sc.is-two .sim-sc-n{ color:var(--gold); }
.sim-sc-c { font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); line-height:1.5; margin-bottom:12px; }
.sim-sc-m { padding-top:11px; border-top:1px solid rgba(183,165,103,0.18);
  font-size:11.5px; color:rgba(255,255,255,0.62); line-height:1.6; }
.sim-sc-badge { display:inline-block; font-size:9px; letter-spacing:0.14em; text-transform:uppercase;
  font-weight:700; padding:3px 8px; border-radius:2px; margin-top:9px;
  background:rgba(183,165,103,0.2); color:var(--gold); }

.sim-constraints { display:grid; grid-template-columns:1fr; gap:14px; margin-top:14px; }
.sim-con { display:flex; gap:14px; align-items:flex-start;
  padding-bottom:14px; border-bottom:1px solid rgba(183,165,103,0.15); }
.sim-con:last-child{ border-bottom:0; padding-bottom:0; }
.sim-con-n { font-family:var(--font-display); font-weight:600; font-size:16px;
  color:var(--gold); min-width:24px; padding-top:2px; }
.sim-con h4 { font-family:var(--font-body); font-weight:600; font-size:14px;
  color:#fff; margin-bottom:5px; }
.sim-con p { font-size:12.5px; line-height:1.65; color:rgba(255,255,255,0.68); }
.sim-con-foot { margin-top:14px; padding-top:13px; border-top:1px solid rgba(183,165,103,0.2);
  font-size:12.5px; line-height:1.65; color:var(--gold-light); font-style:italic; }

/* ============================================================
   v31 — QUESTION-MATCH BLOCK + 3-WAY ROUTING
   ============================================================ */
.qmatch{ background:var(--off-white); padding:44px 0 20px; }
.qmatch-inner{ max-width:900px; margin:0 auto; padding:0 20px; text-align:center; }
.qmatch-lead{ font-family:var(--font-display); font-weight:500; font-size:20px;
  line-height:1.5; color:var(--navy); max-width:680px; margin:0 auto 24px; }
@media(min-width:640px){ .qmatch-lead{ font-size:23px; } }
.qmatch-lead .gold-em{ color:var(--gold); font-style:italic; }
.qmatch-grid{ display:grid; grid-template-columns:1fr; gap:10px; max-width:760px; margin:0 auto; text-align:left; }
@media(min-width:640px){ .qmatch-grid{ grid-template-columns:1fr 1fr; } }
.qmatch-q{ display:flex; gap:11px; align-items:flex-start; padding:13px 16px;
  background:#fff; border:1px solid var(--hairline); border-left:2px solid var(--gold); }
.qmatch-q span{ font-size:13.5px; line-height:1.5; color:var(--navy); }
.qmatch-q .qm{ color:var(--gold); font-family:var(--font-display); font-weight:600;
  font-size:15px; line-height:1; flex-shrink:0; }
.qmatch-foot{ font-size:14px; line-height:1.7; color:var(--muted); max-width:620px;
  margin:24px auto 0; }
.qmatch-foot strong{ color:var(--navy); font-weight:600; }

/* 3-way routing */
.route3{ display:grid; grid-template-columns:1fr; gap:12px; max-width:960px; margin:0 auto; }
@media(min-width:820px){ .route3{ grid-template-columns:1fr 1fr; } }
.route3 .rc{ background:var(--navy-deep); border:1px solid rgba(183,165,103,0.25);
  padding:22px 22px; display:flex; flex-direction:column; }
.route3 .rc.is-primary{ border-color:var(--gold); background:rgba(183,165,103,0.08); }
.route3 .rc-l{ font-size:10px; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); font-weight:700; margin-bottom:9px; }
.route3 .rc h3{ font-family:var(--font-display); font-weight:600; font-size:19px;
  color:#fff; line-height:1.2; margin-bottom:8px; }
.route3 .rc p{ font-size:13px; line-height:1.6; color:rgba(255,255,255,0.72); flex-grow:1; margin-bottom:14px; }
.route3 .rc a{ display:inline-block; align-self:flex-start; background:transparent; color:var(--gold);
  border:1px solid var(--gold); padding:11px 18px; text-decoration:none; font-size:10.5px;
  font-weight:700; letter-spacing:0.13em; text-transform:uppercase; border-radius:2px; transition:all .2s ease; }
.route3 .rc a:hover{ background:var(--gold); color:var(--navy); }

/* Universal 4-way routing grid */
.route4{ display:grid; grid-template-columns:1fr; gap:12px; max-width:1080px; margin:0 auto; }
@media(min-width:640px){ .route4{ grid-template-columns:1fr 1fr; } }
@media(min-width:1000px){ .route4{ grid-template-columns:repeat(4,1fr); } }
.route4 .rc{ background:var(--navy-deep); border:1px solid rgba(183,165,103,0.25); padding:20px 18px; display:flex; flex-direction:column; }
.route4 .rc.is-primary{ border-color:var(--gold); background:rgba(183,165,103,0.08); }
.route4 .rc-l{ font-size:9.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:8px; line-height:1.3; }
.route4 .rc h3{ font-family:var(--font-display); font-weight:600; font-size:17px; color:#fff; line-height:1.2; margin-bottom:8px; }
.route4 .rc p{ font-size:12.5px; line-height:1.55; color:rgba(255,255,255,0.72); flex-grow:1; margin-bottom:14px; }
.route4 .rc a{ display:inline-block; align-self:flex-start; background:transparent; color:var(--gold); border:1px solid var(--gold); padding:10px 15px; text-decoration:none; font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; border-radius:2px; transition:all .2s ease; }
.route4 .rc a:hover{ background:var(--gold); color:var(--navy); }

/* v32 — DESTINATION / "WHERE THIS GETS YOU" */
.dest{ background:var(--navy); color:#fff; padding:56px 0; position:relative; overflow:hidden; }
.dest::before{ content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:56px; height:2px; background:var(--gold); }
@media(min-width:768px){ .dest{ padding:82px 0; } }
.dest-inner{ max-width:960px; margin:0 auto; padding:0 20px; position:relative; z-index:1; }
.dest-head{ text-align:center; max-width:720px; margin:0 auto 40px; }
.dest-head h2{ font-family:var(--font-display); font-weight:600; font-size:30px; line-height:1.16; letter-spacing:-0.01em; margin-bottom:16px; }
@media(min-width:768px){ .dest-head h2{ font-size:40px; } }
.dest-head h2 .ge{ color:var(--gold); font-style:italic; }
.dest-head p{ font-size:16px; line-height:1.7; color:rgba(255,255,255,0.78); }
.dest-arc{ display:grid; grid-template-columns:1fr; gap:0; max-width:760px; margin:0 auto 40px; }
@media(min-width:720px){ .dest-arc{ grid-template-columns:1fr auto 1fr; align-items:center; gap:24px; } }
.dest-state{ padding:26px 24px; border:1px solid rgba(183,165,103,0.25); }
.dest-state.is-now{ background:rgba(255,255,255,0.03); }
.dest-state.is-then{ background:rgba(183,165,103,0.1); border-color:var(--gold); }
.dest-state-l{ font-size:10px; letter-spacing:0.18em; text-transform:uppercase; font-weight:700; margin-bottom:12px; }
.dest-state.is-now .dest-state-l{ color:rgba(255,255,255,0.5); }
.dest-state.is-then .dest-state-l{ color:var(--gold); }
.dest-state h3{ font-family:var(--font-display); font-weight:600; font-size:21px; line-height:1.25; color:#fff; margin-bottom:12px; }
.dest-state p{ font-size:13.5px; line-height:1.65; color:rgba(255,255,255,0.72); }
.dest-arrow{ text-align:center; color:var(--gold); font-size:26px; line-height:1; }
@media(max-width:719px){ .dest-arrow{ padding:14px 0; transform:rotate(90deg); } }
.dest-mech{ text-align:center; max-width:680px; margin:0 auto 40px; padding-top:32px; border-top:1px solid rgba(183,165,103,0.2); }
.dest-mech-l{ font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:14px; }
.dest-mech p{ font-size:16px; line-height:1.7; color:rgba(255,255,255,0.85); }
.dest-mech p strong{ color:#fff; font-weight:600; }
.dest-mech .big{ font-family:var(--font-display); font-weight:600; color:var(--gold); font-size:1.05em; }
/* composite proof */
.dest-proof{ background:var(--navy-deep); border:1px solid rgba(183,165,103,0.3); border-left:3px solid var(--gold); padding:30px 28px; max-width:760px; margin:0 auto; }
.dest-proof-tag{ font-size:9.5px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.45); font-weight:700; margin-bottom:16px; }
.dest-proof-grid{ display:grid; grid-template-columns:1fr; gap:18px; margin-bottom:20px; }
@media(min-width:560px){ .dest-proof-grid{ grid-template-columns:1fr 1fr; } }
.dest-proof-col-l{ font-size:10px; letter-spacing:0.14em; text-transform:uppercase; font-weight:700; margin-bottom:8px; }
.dest-proof-col.now .dest-proof-col-l{ color:rgba(255,255,255,0.5); }
.dest-proof-col.then .dest-proof-col-l{ color:var(--gold); }
.dest-proof-col ul{ list-style:none; margin:0; padding:0; }
.dest-proof-col li{ font-size:13px; line-height:1.5; color:rgba(255,255,255,0.75); padding:5px 0 5px 16px; position:relative; }
.dest-proof-col li::before{ content:"—"; position:absolute; left:0; color:var(--gold); }
.dest-proof-close{ font-size:14px; line-height:1.7; color:rgba(255,255,255,0.85); font-style:italic; padding-top:18px; border-top:1px solid rgba(183,165,103,0.2); }
.dest-cta{ text-align:center; margin-top:38px; }
.dest-cta .btn-primary{ display:inline-block; }
.dest-disc{ font-size:10.5px; line-height:1.6; color:rgba(255,255,255,0.4); max-width:720px; margin:22px auto 0; text-align:center; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
