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

:root {
  --ink:    #0A0F1E;
  --ink2:   #111827;
  --card:   #141C30;
  --card2:  #1A2440;
  --gold:   #C49A3C;
  --gold2:  #F0D06A;
  --dim:    rgba(255,255,255,0.52);
  --dim2:   rgba(255,255,255,0.28);
  --border: rgba(255,255,255,0.07);
  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--ink); color: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--serif); font-size: 19px; color: #fff; letter-spacing: -0.02em; }
.logo span { color: var(--gold); }
img.logo { height: 24px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link { font-size: 13px; color: var(--dim); text-decoration: none; transition: color .15s; }
.nav-link:hover { color: #fff; }
.btn-cta {
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 6px;
  padding: 8px 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: opacity .15s;
}
.btn-cta:hover { opacity: .88; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: calc(100vh - 58px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% -10%, rgba(196,154,60,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 110%, rgba(26,36,64,0.8) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; position: relative;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold); opacity: .35;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 400; line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: 1.25rem; position: relative;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim); max-width: 520px; line-height: 1.65;
  margin: 0 auto 2.5rem; position: relative;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 8px; padding: 14px 30px;
  font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .15s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 14px 30px; font-size: 15px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .15s, transform .15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.45); transform: translateY(-1px); }
.hero-note { margin-top: 1rem; font-size: 12px; color: var(--dim2); position: relative; }

/* ── TRUST STRIP ────────────────────────────── */
.trust {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dim); }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── FUNNEL / HOW IT WORKS ──────────────────── */
.section { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.section-tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.section-title { font-family: var(--serif); font-size: clamp(26px,4vw,38px); font-weight: 400; letter-spacing: -.02em; margin-bottom: .75rem; }
.section-sub { font-size: 16px; color: var(--dim); max-width: 500px; line-height: 1.6; }
.section-note { font-size: 14px; color: var(--gold2); margin-top: .9rem; max-width: 560px; line-height: 1.6; }

.funnel-fork { display: flex; align-items: center; gap: 1rem; margin: 1.8rem 0 1.2rem; }
.funnel-fork-line { flex: 1; height: 1px; background: var(--border); }
.funnel-fork-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; white-space: nowrap; }
.funnel-choice { grid-template-columns: 1fr 1fr; margin-top: 0; background: transparent; border-radius: 0; gap: 16px; }
.funnel-step-choice { border: 1px solid rgba(196,154,60,0.22); position: relative; padding-top: 2.5rem; }
.funnel-choice-badge {
  position: absolute; top: -1px; left: 1.4rem;
  background: var(--gold); color: #0A0F1E;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 0 0 6px 6px;
}
.funnel { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; margin-top: 3rem; background: var(--border); border-radius: 14px; overflow: hidden; }
.funnel-step {
  background: var(--card); padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: background .2s;
}
.funnel-step:hover { background: var(--card2); }
.funnel-num { font-size: 11px; letter-spacing: .1em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.funnel-title { font-size: 16px; font-weight: 700; line-height: 1.3; }
.funnel-sub { font-size: 13px; color: var(--gold2); font-weight: 600; }
.funnel-desc { font-size: 13px; color: var(--dim); line-height: 1.55; margin-top: .25rem; }

/* ── DEPOSIT CALLOUT ────────────────────────── */
.deposit-wrap { max-width: 900px; margin: 0 auto; padding: 0 2rem 5rem; }
.deposit-open {
  display: flex; gap: 3rem; flex-wrap: wrap; align-items: flex-start;
}
.deposit-open .dq-left { padding-top: .5rem; }
.dq-why {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.7rem;
  flex-shrink: 0;
  width: 300px;
}
.dq-why-title { font-size: 14.5px; font-weight: 700; margin-bottom: 1rem; }
.dq-why p { font-size: 13.5px; color: var(--dim); line-height: 1.65; }
.dq-why p + p { margin-top: 1rem; }
@media (max-width: 760px) {
  .dq-why { width: 100%; }
}
.dq-left { flex: 1; min-width: 240px; }
.dq-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.dq-title { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: .5rem; }
.dq-desc { font-size: 14px; color: var(--dim); line-height: 1.6; }
.dq-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.2rem; }
.pill { border-radius: 40px; padding: 6px 16px; font-size: 13px; white-space: nowrap; }
.pill-gold { background: rgba(196,154,60,0.15); color: var(--gold2); border: 1px solid rgba(196,154,60,0.3); }
.pill-dim  { background: rgba(255,255,255,0.05); color: var(--dim); border: 1px solid var(--border); }
.dq-note { margin-top: 1rem; font-size: 12px; color: var(--dim2); }
.dq-right { flex-shrink: 0; }

/* ── SERVICES ───────────────────────────────── */
.services-wrap { background: var(--card2); }
.services { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.svc-label { margin-top: 2rem; margin-bottom: .6rem; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }

/* ── PRODUCT LINEUP ─────────────────────────── */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}
.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.9rem 1.6rem 1.6rem;
  display: flex; flex-direction: column;
  transition: border-color .18s;
}
.product:hover { border-color: rgba(196,154,60,.35); }
.product-num {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px; letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 10px;
}
.product-price {
  font-family: var(--serif);
  font-size: 24px; color: var(--gold);
  margin-bottom: 14px;
}
.product-price .price-note { font-family: var(--sans); font-size: 12px; color: var(--dim); margin-left: 2px; }
.product-desc { font-size: 13.5px; color: var(--dim); line-height: 1.65; margin-bottom: 1.2rem; }
.product-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.5rem;
  display: grid; gap: 9px;
}
.product-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 13px; color: var(--dim); line-height: 1.5;
}
.product-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; margin-top: 2px;
  background: rgba(196,154,60,.12);
  border: 1px solid rgba(196,154,60,.35);
  color: var(--gold2);
}
.product-list.tiers li { justify-content: space-between; gap: 12px; }
.product-list.tiers li::before { content: none; }
.product-list.tiers li strong { color: var(--gold2); font-weight: 600; white-space: nowrap; }
.product-btn { margin-top: auto; }
.product-note {
  margin-top: 10px;
  font-size: 11.5px; color: var(--dim2);
  text-align: center;
}
.svc-sub { font-size: 13.5px; color: var(--dim); line-height: 1.65; margin-bottom: 1.2rem; max-width: 640px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.card {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem;
  transition: border-color .15s, transform .2s;
}
.card:hover { border-color: rgba(196,154,60,.35); transform: translateY(-2px); }
.card-price { font-family: var(--serif); font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.price-note { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--dim); margin-left: 6px; }
.card-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--dim); line-height: 1.5; }
.card-tag { display: inline-block; margin-top: 10px; font-size: 11px; color: var(--gold); border: 1px solid rgba(196,154,60,.3); border-radius: 4px; padding: 2px 8px; }

/* ── WHY US ─────────────────────────────────── */
.why-wrap { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.why-icon { font-size: 22px; margin-bottom: .75rem; }
.why-title { font-size: 14px; font-weight: 700; margin-bottom: .4rem; }
.why-desc { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ── SCENARIOS ──────────────────────────────── */
.scenario-wrap { background: var(--card2); }
.scenario { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.scene-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.scene-card { background: var(--ink); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.scene-who { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.scene-quote { font-family: var(--serif); font-size: 15px; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 1rem; }
.scene-how { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ── CTA ────────────────────────────────────── */
.cta-wrap { max-width: 900px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.cta-card {
  background: linear-gradient(135deg, #1A2440 0%, #0F1828 100%);
  border: 1px solid rgba(196,154,60,.25);
  border-radius: 16px; padding: 3rem; text-align: center;
}
.cta-title { font-family: var(--serif); font-size: clamp(24px,4vw,36px); font-weight: 400; margin-bottom: .75rem; }
.cta-sub { font-size: 16px; color: var(--dim); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: 13px; }
.footer-links a { color: var(--dim); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { margin-top: .75rem; font-size: 12px; color: rgba(255,255,255,.18); }

/* ── CHOOSER (2-step decision tree) ─────────── */
.chooser { max-width: 900px; margin: 0 auto; padding: 5rem 2rem 4rem; scroll-margin-top: 72px; }
.chooser-head { margin-bottom: 2rem; }
.step-label {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 1.1rem;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.step-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.step-label .n {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.choice {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s;
  position: relative;
  display: flex; flex-direction: column;
}
.choice .btn-card { margin-top: auto; }
.choice .price-hint { flex-shrink: 0; margin-top: auto; padding-top: 14px; }
.choice:hover {
  border-color: rgba(196,154,60,.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.choice:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.choice.selected { border-color: var(--gold); }
.choice.selected::after {
  content: '✓ Selected';
  position: absolute; top: 14px; right: 14px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px; border-radius: 30px;
  background: var(--gold); color: var(--ink);
}
.choice-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 23px;
  background: rgba(196,154,60,.12);
  border: 1px solid rgba(196,154,60,.35);
}
.choice-icon.neutral { background: rgba(255,255,255,.05); border-color: var(--border); }
.choice-icon-pair { display: flex; justify-content: center; margin: 0 auto 1rem; }
.choice-icon-pair .choice-icon { margin: 0; position: relative; }
.choice-icon-pair .choice-icon + .choice-icon {
  margin-left: -12px;
  background: var(--card2);
  z-index: 1;
}
.choice h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px; letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 6px;
}
.choice h2 .accent { color: var(--gold); font-style: italic; }
.choice .sub { font-size: 14px; color: var(--dim); margin-bottom: 1.2rem; }
.check-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
  display: grid; gap: 8px;
}
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--dim); line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 17px; height: 17px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9.5px; margin-top: 3px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--dim);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
  text-align: left;
}
.split-col {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem .9rem;
}
.split-head { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.split-head .split-icon {
  width: 25px; height: 25px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  background: rgba(196,154,60,.12);
  border: 1px solid rgba(196,154,60,.25);
  flex-shrink: 0;
}
.split-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--gold2);
  line-height: 1.2;
}
.split-tag { font-size: 10.5px; color: var(--dim2); margin-bottom: 8px; }
.split ul { list-style: none; display: grid; gap: 6px; }
.split li {
  display: flex; gap: 7px; align-items: flex-start;
  font-size: 12px; color: var(--dim); line-height: 1.45;
}
.split li::before {
  content: '✓';
  flex-shrink: 0;
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 8px; margin-top: 2px;
  background: rgba(196,154,60,.12);
  border: 1px solid rgba(196,154,60,.35);
  color: var(--gold2);
}
.btn-card {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  border: none; border-radius: 8px;
  padding: 13px 20px;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  transition: opacity .15s, transform .15s;
  text-decoration: none;
}
.btn-card:hover { opacity: .88; transform: translateY(-1px); }
.btn-card.gold { background: var(--gold); color: var(--ink); }
.btn-card.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-card.ghost:hover { opacity: 1; border-color: rgba(255,255,255,.5); }
.btn-card .arrow { transition: transform .15s; }
.btn-card:hover .arrow { transform: translateX(3px); }
.price-hint { margin-top: 10px; font-size: 11.5px; color: var(--dim2); }
#step2 { display: none; margin-top: 2.25rem; animation: rise .45s ease both; }
#step2.open { display: block; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.connector { display: flex; flex-direction: column; align-items: center; margin: 1.4rem 0 .25rem; }
.connector .stem {
  width: 1px; height: 26px;
  background: linear-gradient(180deg, transparent, rgba(196,154,60,.35));
}
.connector .stem.down { background: linear-gradient(180deg, rgba(196,154,60,.35), transparent); }
.connector .bubble {
  border: 1px dashed rgba(196,154,60,.35);
  background: var(--card2);
  border-radius: 12px;
  padding: 13px 24px;
  text-align: center;
  font-size: 13.5px; color: var(--dim);
}
.connector .bubble strong {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold2);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.3rem;
}
.mini {
  text-align: center;
  font-size: 11.5px; color: var(--dim);
  display: grid; gap: 6px; justify-items: center;
  line-height: 1.4;
}
.mini .glyph {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: rgba(196,154,60,.12);
  border: 1px solid rgba(196,154,60,.2);
}
.reset {
  display: block;
  margin: 1.4rem auto 0;
  background: none; border: none;
  font-family: inherit; font-size: 13px;
  color: var(--dim2); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.reset:hover { color: #fff; }
.svc-anchor { scroll-margin-top: 80px; }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity:0; animation: fadeUp .7s ease forwards; }
.anim-d1 { animation-delay:.1s; }
.anim-d2 { animation-delay:.25s; }
.anim-d3 { animation-delay:.4s; }
.anim-d4 { animation-delay:.55s; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.pulse { animation: pulse 2s ease infinite; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 560px) {
  nav { padding: 0 1.25rem; }
  .nav-link { display: none; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .section, .deposit-wrap, .why-wrap, .cta-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .services { padding-left: 1.25rem; padding-right: 1.25rem; }
  .scenario { padding-left: 1.25rem; padding-right: 1.25rem; }
  .chooser { padding: 3.5rem 1.25rem 3rem; }
  .choice { padding: 1.6rem 1.2rem 1.3rem; }
  .cta-card { padding: 2rem 1.5rem; }
  .trust { gap: 1.25rem; }
  .funnel { grid-template-columns: 1fr; }
  .funnel-choice { grid-template-columns: 1fr; }
}
