/* Flag for Heroes — 25th Anniversary 9/11 Memorial Flag FREE+Ship funnel (mockup only)
   Isolated funnel. Patriotic navy / gold / red visual system. */
:root {
  --teal: #0a1f44;
  --teal-mid: #1a3a6b;
  --teal-deep: #061428;
  --green: #c41e3a;
  --green-dark: #9f1239;
  --green-soft: #fef2f2;
  --gold: #c59238;
  --gold-bright: #e0a83a;
  --cream: #f4f7fb;
  --soft: #eef4fc;
  --ink: #0e0e0e;
  --muted: #565656;
  --line: #e5e7eb;
  --white: #fff;
  --ok: #b91c1c;
  --danger: #c10e19;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Helvetica, Arial, sans-serif;
  --display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 50px rgba(6, 20, 40, .10);
  --shadow-sm: 0 8px 24px rgba(6, 20, 40, .08);
  --shadow-lg: 0 28px 70px rgba(6, 20, 40, .14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.wrap { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Mock banner */
.mock-banner {
  background: #1a1400;
  color: var(--gold-bright);
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .75rem;
}
.mock-banner span { opacity: .75; font-weight: 500; letter-spacing: 0; text-transform: none; }

/* Buttons — green CTAs */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 52px; padding: .85rem 1.5rem; border-radius: 12px;
  font-weight: 800; font-size: .98rem; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .15s, border-color .15s;
  text-align: center; text-decoration: none; letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, #dc2626, #b91c1c);
  color: #fff; box-shadow: 0 8px 24px rgba(185,28,28,.4);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 12px 28px rgba(185,28,28,.5);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,31,68,.25);
}
.btn-teal:hover { background: var(--teal-mid); }
.btn-ghost {
  background: transparent; border-color: rgba(255,255,255,.45); color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline {
  background: #fff; border: 2px solid var(--line); color: var(--muted);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-decline {
  background: transparent; border: none; color: var(--muted);
  font-size: .88rem; font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; min-height: auto; padding: .75rem;
  cursor: pointer;
}
.btn-decline:hover { color: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { min-height: 58px; padding: 1rem 1.75rem; font-size: 1.08rem; border-radius: 14px; }
.btn-xl {
  min-height: 64px; padding: 1.1rem 2rem; font-size: 1.15rem;
  letter-spacing: -.01em; border-radius: 14px;
}
.btn-pulse { animation: ctaPulse 2.4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(185,28,28,.4); }
  50% { box-shadow: 0 8px 32px rgba(185,28,28,.65), 0 0 0 6px rgba(185,28,28,.15); }
}

/* Marquee + promo */
.marquee-bar {
  background: var(--teal-deep);
  color: rgba(255,255,255,.88);
  overflow: hidden;
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 600;
}
.marquee-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: .5rem 0;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.25rem;
  padding-inline-end: 2.25rem; /* must match gap so loop seam is invisible */
}
.marquee-track span,
.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-track span::before,
.marquee-group span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(196,30,58,.22);
  color: var(--green);
  font-size: .6rem;
  font-weight: 900;
}
/* -50% = exactly one .marquee-group (two identical groups side by side) */
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.promo-bar {
  background: linear-gradient(90deg, #050f22, #0a1f44 45%, #0a1f44);
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem 1rem;
}
.promo-bar em {
  font-style: normal;
  color: var(--green);
}
.promo-bar .promo-sep { opacity: .4; margin: 0 .45rem; }

/* Top bar — clean white */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(6,20,40,.04);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .5rem; }
.brand-logo {
  width: 36px; height: 36px; object-fit: contain;
  background: #fff; border-radius: 50%; padding: 3px;
  border: 1px solid var(--line);
}
.brand-name { font-family: var(--display); font-size: 1.05rem; color: var(--teal); font-weight: 700; }
.brand-name b { font-weight: 800; }
.urgency-chip {
  display: none; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; color: var(--danger);
  background: #fef2f2; border: 1px solid #fecaca;
  padding: .35rem .7rem; border-radius: 999px;
}
@media (min-width: 640px) { .urgency-chip { display: inline-flex; } }
.topbar-cta {
  min-height: 40px !important;
  padding: .45rem 1rem !important;
  font-size: .85rem !important;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.25);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

/* Progress steps (checkout / upsell) */
.funnel-progress {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: .85rem 0;
}
.progress-steps {
  display: flex; justify-content: center; align-items: center; gap: 0;
  max-width: 520px; margin: 0 auto;
}
.progress-step {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em;
}
.progress-step .num {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--line); color: var(--muted); font-size: .7rem;
}
.progress-step.active { color: var(--teal); }
.progress-step.active .num { background: var(--teal); color: #fff; }
.progress-step.done { color: var(--ok); }
.progress-step.done .num { background: var(--ok); color: #fff; }
.progress-line {
  width: 28px; height: 2px; background: var(--line); margin: 0 .35rem;
  flex-shrink: 0;
}
.progress-line.done { background: var(--ok); }
@media (min-width: 480px) {
  .progress-line { width: 40px; margin: 0 .5rem; }
  .progress-step { font-size: .78rem; }
}

/* Soft top bar — trust, not fake countdown */
.urgency-bar {
  background: #0a1f44;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .5rem 0;
  font-size: .8rem;
  font-weight: 700;
}
.urgency-bar-soft {
  background: #061428;
}
.urgency-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .35rem .85rem;
  text-align: center;
}
.urgency-bar-msg { color: rgba(255,255,255,.85); font-weight: 600; font-size: .78rem; }
.urgency-bar-spots { color: var(--gold-bright); font-size: .78rem; }

.guarantee-line {
  margin: .75rem 0 0;
  padding: .7rem .85rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--teal);
  text-align: center;
}
.guarantee-line strong { color: var(--ink); }

.topbar-logo-only {
  justify-content: center;
}
.topbar-logo-only .brand {
  margin: 0 auto;
}
.topbar-logo-left {
  justify-content: flex-start !important;
}
.topbar-logo-left .brand {
  margin: 0;
}

.countdown {
  display: inline-flex; align-items: center; gap: .2rem;
  font-variant-numeric: tabular-nums;
}
.cd-unit {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  min-width: 42px;
  padding: .25rem .35rem;
  text-align: center;
  line-height: 1.1;
}
.cd-unit b {
  display: block; font-size: 1rem; font-weight: 900; color: #fff;
}
.cd-unit small {
  font-size: .55rem; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.55); font-weight: 700;
}
.cd-sep { color: var(--gold-bright); font-weight: 900; padding: 0 .1rem; }

/* Form countdown MUST come after global .cd-unit so it stays one line */
.order-panel-head .form-countdown {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin: .35rem 0 0;
  padding: 0;
  background: none;
  border: none;
  white-space: nowrap;
}
.order-panel-head .form-countdown-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.order-panel-head .countdown-form,
.order-panel-head .countdown.countdown-form {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0;
}
.order-panel-head .countdown-form .cd-unit {
  display: inline !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  line-height: 1 !important;
}
.order-panel-head .countdown-form .cd-unit b {
  display: inline !important;
  font-size: .85rem !important;
  font-weight: 800 !important;
  color: #e11d48 !important;
  font-variant-numeric: tabular-nums;
  line-height: 1 !important;
}
.order-panel-head .countdown-form .cd-unit small {
  display: none !important;
}
.order-panel-head .countdown-form .cd-sep {
  display: inline !important;
  color: #e11d48 !important;
  font-weight: 700;
  font-size: .85rem;
  padding: 0 2px !important;
}
.order-panel-head .form-countdown-label {
  color: #e11d48 !important;
}

/* ID-level lock so nothing can override to teal */
#formCountdown,
#formCountdown .cd-unit,
#formCountdown .cd-unit b,
#formCountdown .cd-sep,
#cdH,
#cdM,
#cdS {
  color: #e11d48 !important;
}
.form-countdown-label {
  color: #e11d48 !important;
}

.countdown-lg .cd-unit { min-width: 52px; padding: .4rem .45rem; }
.countdown-lg .cd-unit b { font-size: 1.25rem; }
.countdown-inline .cd-unit {
  background: var(--cream); border-color: var(--line);
}
.countdown-inline .cd-unit b { color: var(--teal); }
.countdown-inline .cd-unit small { color: var(--muted); }
.countdown-inline .cd-sep { color: var(--gold); }
.countdown-on-dark .cd-unit {
  background: rgba(0,0,0,.25); border-color: rgba(224,184,58,.35);
}
.countdown-card {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(239,68,68,.35);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin: 1.15rem 0 1.25rem;
}
.countdown-card-label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 800; color: #fca5a5;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .65rem;
}
.countdown-card .countdown { width: 100%; justify-content: flex-start; }
.countdown-card-sub {
  margin-top: .65rem; font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 600;
}
.countdown-card-sub em { font-style: normal; color: #fca5a5; }

/* Trust badges grid */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-bottom: 1.15rem;
}
@media (min-width: 520px) {
  .trust-badges { grid-template-columns: 1fr 1fr 1fr; }
}
.trust-badge {
  display: flex; gap: .45rem; align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .55rem .6rem;
  font-size: .72rem;
  line-height: 1.25;
  color: rgba(255,255,255,.75);
}
.trust-badge b { display: block; color: #fff; font-size: .78rem; margin-bottom: .1rem; }
.trust-badge small { font-size: .68rem; opacity: .85; }
.tb-icon { font-size: .95rem; line-height: 1.2; flex-shrink: 0; }

.hero-product-row {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 1.1rem;
}
.hero-vial-thumb {
  width: 100px; height: 100px; object-fit: cover;
  border-radius: 14px; flex-shrink: 0;
  border: 2px solid rgba(224,184,58,.45);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  background: #fff;
}
@media (min-width: 480px) {
  .hero-vial-thumb { width: 120px; height: 120px; }
}
.hero-product-row .price-stack {
  flex: 1; margin-bottom: 0; min-width: 0;
}

.hero-micro-proof {
  font-size: .88rem; color: var(--muted);
  border-left: 3px solid var(--green);
  padding-left: .85rem; margin: 0;
}
.hero-micro-proof .stars { color: #f5b301; margin-right: .35rem; }
.hero-micro-proof strong { color: var(--ink); }

.topbar-trust {
  display: none; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; color: var(--muted);
}
.topbar-trust span:first-child { color: #f5b301; letter-spacing: 1px; }
@media (min-width: 700px) { .topbar-trust { display: inline-flex; } }
@media (max-width: 699px) { .hide-sm { display: none; } }

.form-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .85rem;
  margin-top: .55rem; font-size: .72rem; font-weight: 700; color: var(--muted);
}

/* Risk-reversal under CTA — tight, not a fat banner */
.cta-risk {
  margin: .55rem 0 0;
  text-align: center;
  font-size: .72rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
}
.cta-risk strong {
  color: var(--ok);
  font-weight: 800;
}

.proof-strip-strong { padding: 1.1rem 0; }
.proof-dot { opacity: .4; }

.sticky-cd {
  display: block; font-size: .72rem; font-weight: 700; color: var(--danger);
  font-variant-numeric: tabular-nums;
}

/* Hero convert layout: copy | checkout — fixed content width, NOT full bleed */
.hero-convert {
  padding: 1.75rem 0 2.25rem;
  overflow: visible;
}
/* Override global .wrap width so hero is a tight conversion unit */
.hero-convert > .wrap.hero-convert-grid,
.hero-convert .hero-convert-grid.wrap {
  width: min(100% - 1.5rem, 1060px);
  max-width: 1060px;
  margin-inline: auto;
}
.hero-convert-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
/* Mobile: copy first, then form (same story as desktop) */
@media (max-width: 899px) {
  .hero-convert-grid {
    grid-template-columns: 1fr;
  }
  .offer-copy {
    order: 1;
  }
  .hero-checkout {
    order: 2;
    max-width: 100%;
    justify-self: stretch;
    width: 100%;
  }
  /* Keep hero tight on small screens — bullets/quote still available on desktop */
  .bullet-list-desktop,
  .hero-micro-desktop {
    display: none;
  }
  .offer-sub-hero {
    font-size: .95rem;
    margin-bottom: .85rem;
  }
  .offer-copy h1 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin-bottom: .65rem;
  }
}
@media (min-width: 900px) {
  .hero-convert-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 440px);
    gap: 1.75rem;
    align-items: start;
  }
  .offer-copy {
    order: 1;
  }
  .hero-checkout {
    order: 2;
  }
  .hero-convert-grid:not(.is-step-2) .hero-checkout {
    position: sticky;
    top: 78px;
  }
}
.hero-checkout {
  width: 100%;
  max-width: 440px;
  min-width: 0;
  scroll-margin-top: 100px;
  align-self: start;
  position: relative;
  top: auto;
  z-index: 2;
  justify-self: end;
}
@media (max-width: 899px) {
  .hero-checkout {
    max-width: 100%;
    justify-self: stretch;
  }
}
.hero-convert-grid > .offer-copy {
  min-width: 0;
  max-width: none; /* fills its column only — column itself is capped by wrap */
}
.offer-copy h1 .nowrap {
  white-space: nowrap;
}
.order-panel-hero {
  /* Coupon-box look — dashed border, pops off hero */
  position: relative;
  background:
    linear-gradient(180deg, #fffef9 0%, #fff 55%, #faf8f3 100%);
  border: 2.5px dashed #b91c1c;
  border-radius: 18px;
  box-shadow:
    0 0 0 6px rgba(185, 28, 28, .08),
    0 22px 50px rgba(6, 20, 40, .16),
    0 4px 14px rgba(185, 28, 28, .12);
  max-height: none;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Coupon ticket notches */
.order-panel-hero::before,
.order-panel-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1.5px rgba(185, 28, 28, .28);
}
.order-panel-hero::before { left: -10px; }
.order-panel-hero::after { right: -10px; }
.sales-hero .order-panel-hero::before,
.sales-hero .order-panel-hero::after {
  background: linear-gradient(180deg, #fff 0%, var(--cream, #f4f7fb) 100%);
}
.order-panel-hero form,
.order-panel-hero #formStep1,
.order-panel-hero #formStep2 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.offer-price-line {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  margin: 0 0 1rem;
  line-height: 1.4;
}
.offer-price-line strong { color: var(--gold-bright); }
.offer-price-was {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  text-decoration: line-through;
}
/* % off must be loud — not just a silent strike-through */
.save-pop {
  color: var(--green-dark) !important;
  font-weight: 800 !important;
  white-space: nowrap;
}
@media (max-width: 899px) {
  .offer-sub-hero {
    font-size: .9rem;
  }
}
.offer-sub-hero s,
.offer-sub-hero .offer-price-was {
  text-decoration: line-through;
  opacity: .75;
}
.order-product-mini .save-inline {
  color: var(--ok);
  font-weight: 800;
  font-size: .78rem;
}
.order-product-mini s {
  color: var(--muted);
  font-weight: 600;
}

/* Compact trust chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1rem;
  max-width: 100%;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: .4rem .7rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--teal);
  background: #fff;
  border: 1px solid var(--line);
  white-space: nowrap;
  line-height: 1.2;
}
/* Mobile: show key trust under short copy even when desktop chips hide */
@media (max-width: 899px) {
  .offer-copy .trust-chips-mobile {
    display: flex;
    margin-top: .75rem;
  }
}

#formStep2 .order-summary-box { padding: .75rem .85rem; margin: .65rem 0; }
#formStep2 .step2-title { margin-bottom: .55rem; font-size: 1.05rem; }
#formStep2 .ship-grid { gap: .55rem; }
#formStep2 .ship-field input { min-height: 42px; }
#formStep2 .guarantee-line { font-size: .75rem; padding: .55rem .65rem; }
.order-panel-head {
  text-align: center;
  margin-bottom: .85rem;
  padding-bottom: .75rem;
  border-bottom: 2px dashed rgba(185, 28, 28, .28);
}
.order-panel-head h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 .15rem;
  line-height: 1.2;
}
.order-panel-head p { font-size: .85rem; color: var(--muted); }

/* Slimmer topbar — logo only, left aligned */
.topbar-inner.topbar-logo-only,
.topbar-inner.topbar-logo-left {
  height: 56px;
}
.topbar-inner.topbar-logo-left {
  justify-content: flex-start;
}

/* ═══════════════ SALES PAGE ═══════════════ */
.sales-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(196,30,58,.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(10,31,68,.06), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  color: var(--ink);
  padding: 2rem 0 2.5rem;
  position: relative;
  overflow: visible;
}
.sales-hero:not(.hero-convert) {
  overflow: hidden;
}
.sales-hero::before { display: none; }
.hero-convert.sales-hero { padding-top: 1.5rem; padding-bottom: 2rem; }
.hero-badge-row {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .65rem; border-radius: 999px;
}
.badge-gold {
  background: var(--soft); color: var(--teal);
  border: 1px solid var(--line);
}
.badge-live {
  background: #fef2f2; color: var(--danger);
  border: 1px solid #fecaca;
}
.badge-live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ef4444;
  animation: livePulse 1.4s ease-in-out infinite;
}

.sales-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 900px) {
  .sales-grid { grid-template-columns: 1fr 1.05fr; gap: 2.5rem; }
}

/* Product visual card */
.product-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.product-img-wrap {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.product-img-wrap img {
  width: 88%; height: 88%; object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(6,20,40,.2));
}
.free-stamp {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff; font-weight: 900; font-size: .85rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .45rem .75rem; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(185,28,28,.4);
  transform: rotate(-6deg);
  line-height: 1.15;
}
.free-stamp small { display: block; font-size: .65rem; font-weight: 700; opacity: .9; }
.value-chip {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--teal); color: #fff;
  font-size: .78rem; font-weight: 800;
  padding: .4rem .7rem; border-radius: 8px;
}
.value-chip s { opacity: .6; font-weight: 600; margin-right: .25rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: .5rem .85rem;
  margin-top: 1rem; font-size: .78rem; color: rgba(255,255,255,.75);
  font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: .3rem; }
.trust-row svg { flex-shrink: 0; opacity: .85; }

/* Offer copy — light lander */
.offer-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: var(--teal-deep);
}
.offer-copy h1 .hl {
  color: var(--green-dark); font-style: normal;
}
.offer-sub {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 1.1rem; max-width: 42ch;
  line-height: 1.55;
}
.offer-sub strong { color: var(--ink); }

/* Price was / now stack (high-convert) */
.price-hero-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin: 0 0 1.1rem;
  box-shadow: var(--shadow-sm);
  max-width: 360px;
}
.price-hero-block .was {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .15rem;
}
.price-hero-block .was s { text-decoration: line-through; }
.price-hero-block .now-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .65rem;
}
.price-hero-block .now-free {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-hero-block .now-ship {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
}
.price-hero-block .save-pill {
  display: inline-flex;
  margin-top: .55rem;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  padding: .3rem .6rem;
  border-radius: 999px;
}
.hero-rating-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .55rem;
  font-size: .85rem; color: var(--muted); margin-bottom: 1rem;
}
.hero-rating-row .stars { color: #f5b301; letter-spacing: .05em; }
.hero-rating-row strong { color: var(--ink); }

.price-stack {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(224,184,58,.35);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.15rem;
}
.price-was {
  font-size: .9rem; color: rgba(255,255,255,.55);
  text-decoration: line-through; margin-bottom: .15rem;
}
.price-now {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem .65rem;
}
.price-now .free {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 700; color: var(--gold-bright);
  line-height: 1; letter-spacing: -.03em;
}
.price-now .plus {
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.price-now .ph {
  font-size: 1.35rem; font-weight: 800; color: #fff;
}
.price-note {
  margin-top: .55rem; font-size: .85rem; color: rgba(255,255,255,.7);
}
.price-note strong { color: var(--gold-bright); }

.bullet-list { margin: 0 0 1rem; max-width: none; }
.bullet-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--muted);
  padding: .4rem 0;
  font-weight: 600;
  line-height: 1.45;
}
/* Keep check + one text block — bare <strong> + text was wrapping as two flex items */
.bullet-list li > span {
  flex: 1;
  min-width: 0;
  display: block;
}
.bullet-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 900; margin-top: .15rem;
}
.bullet-list strong { color: var(--ink); font-weight: 800; }

.offer-copy .offer-sub-hero {
  max-width: 42ch;
  margin-bottom: 1rem;
}

/* ── Why this flag: product showcase ── */
.what-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .what-split {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.what-flag-visual {
  justify-self: center;
  width: 100%;
  max-width: 420px;
}
.what-flag-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,255,255,.9), transparent 70%),
    linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    0 0 0 8px rgba(10, 31, 68, .03);
  aspect-ratio: 1;
}
.what-flag-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.what-flag-stamp {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .7rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(185, 28, 28, .4);
  transform: rotate(-6deg);
  line-height: 1.15;
  text-align: center;
  z-index: 1;
}
.what-flag-stamp small {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  opacity: .95;
  letter-spacing: .02em;
  text-transform: none;
}
.what-flag-caption {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .02em;
}
.what-split-copy h2 {
  margin-bottom: .75rem;
}
.what-split-copy .what-lead {
  margin-bottom: 1.15rem;
  max-width: none;
}
.what-flag-points {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.what-flag-points li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.what-flag-points li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 900;
  margin-top: .05rem;
}
.what-split-copy .btn {
  width: fit-content;
  max-width: 100%;
}
@media (max-width: 799px) {
  .what-flag-visual {
    max-width: 340px;
  }
  .what-split-copy {
    text-align: center;
  }
  .what-split-copy .what-lead {
    margin-inline: auto;
  }
  .what-flag-points {
    text-align: left;
    max-width: 28rem;
    margin-inline: auto 0;
    margin-left: auto;
    margin-right: auto;
  }
  .what-split-copy .btn {
    margin-inline: auto;
  }
}

/* What is Retatrutide — below hero */
.sec-what {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0;
}
.what-reta {
  max-width: 1060px;
}
.what-reta h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .75rem;
  color: var(--ink);
}
.what-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
.what-lead strong { color: var(--ink); }
.what-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .what-grid { grid-template-columns: 1fr 1fr; }
}
.what-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.what-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--teal);
}
.what-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}
.what-cta-line {
  margin-top: 1.5rem;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}
.what-cta-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: .25rem;
}

.cta-block { margin-bottom: .75rem; }
.cta-micro {
  text-align: center; font-size: .78rem; color: rgba(255,255,255,.6);
  margin-top: .65rem;
}
.cta-micro strong { color: rgba(255,255,255,.85); }
.spots-bar {
  margin-top: 1rem;
  background: rgba(0,0,0,.2);
  border-radius: 10px; padding: .75rem 1rem;
}
.spots-label {
  display: flex; justify-content: space-between;
  font-size: .75rem; font-weight: 700; margin-bottom: .4rem;
  color: rgba(255,255,255,.75);
}
.spots-label em { color: #fca5a5; font-style: normal; }
.spots-track {
  height: 8px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden;
}
.spots-fill {
  height: 100%; width: 78%;
  background: linear-gradient(90deg, #dc2626, var(--gold-bright));
  border-radius: 999px;
  transition: width .4s var(--ease);
}

/* Social proof strip */
.proof-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.proof-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem;
  align-items: center; font-size: .85rem; font-weight: 600; color: var(--muted);
}
.proof-inner .stars { color: #f5b301; letter-spacing: 1px; }
.proof-inner strong { color: var(--ink); }

/* Sections */
.sec { padding: 3.5rem 0; }
.sec-cream { background: var(--cream); }
.sec-dark { background: linear-gradient(180deg, var(--teal-deep), var(--teal)); color: #fff; }
.sec-tight { padding: 2.5rem 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: .65rem;
}
.sec-dark .eyebrow { color: var(--green); }
.sec h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
  margin-bottom: .75rem;
  color: var(--teal-deep);
}
.sec-dark h2 { color: #fff; }

/* Trust stats */
.trust-stats {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
}
.trust-stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .trust-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-stat {
  text-align: center;
  padding: .35rem .5rem;
}
.trust-stat b {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: .2rem;
}
.trust-stat span {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Benefit marquee strip under hero — seamless infinite loop */
.benefit-strip {
  background: var(--teal);
  color: rgba(255,255,255,.9);
  overflow: hidden;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
  width: 100%;
}
.benefit-strip .marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.benefit-strip .marquee-group span::before,
.benefit-strip .marquee-track span::before {
  background: rgba(196,30,58,.25);
  color: var(--green);
}

/* How it works */
.how-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.how-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.how-card .step-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: .3rem .55rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.how-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: .4rem;
}
.how-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Timeline */
.timeline {
  max-width: 640px;
  margin: 1.75rem auto 0;
  display: grid;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-when {
  font-size: .78rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: .15rem;
}
.timeline-what strong {
  display: block;
  font-size: .98rem;
  color: var(--teal-deep);
  margin-bottom: .15rem;
}
.timeline-what span {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Final CTA checks */
.final-cta-checks {
  display: grid;
  gap: .45rem;
  max-width: 28rem;
  margin: 1rem auto 1.35rem;
  text-align: left;
}
.final-cta-checks li {
  display: flex;
  gap: .55rem;
  font-size: .92rem;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}
.final-cta-checks li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* Sales letter (Kern-style) */
.letter { max-width: 640px; margin-inline: auto; }
.letter h2 { max-width: none; }
.letter-body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
}
.letter-body p { margin-bottom: 1.1rem; }
.letter-body p:last-child { margin-bottom: 0; }
.letter-body em { font-family: var(--display); color: var(--teal); }
.sec-cream .letter-body { color: var(--ink); }
/* Center CTA + legal under letter copy */
.letter > .btn {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 1.25rem auto 0;
}
.letter > .btn-legal {
  text-align: center;
  margin-top: .55rem;
}

/* Softer demo banner */
.mock-banner {
  font-size: .68rem;
  letter-spacing: .04em;
  opacity: .95;
}
.sec-lead {
  font-size: 1.05rem; color: var(--muted); max-width: 48ch; margin: 0 auto 1.75rem;
}
.sec-dark .sec-lead { color: rgba(255,255,255,.7); }
.sec-dark .center .sec-lead { margin-inline: auto; }

/* Problem / agitation */
.pain-grid {
  display: grid; gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.35rem 1.2rem; box-shadow: var(--shadow-sm);
}
.pain-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fde8e8; color: var(--danger);
  display: grid; place-items: center; font-weight: 900; margin-bottom: .85rem;
  font-size: 1.1rem;
}
.pain-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.pain-card p { font-size: .9rem; color: var(--muted); }

/* Offer breakdown */
.offer-box {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.offer-box h3 {
  font-family: var(--display); font-size: 1.45rem; text-align: center;
  margin-bottom: 1.15rem;
}
.offer-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.offer-line:last-of-type { border-bottom: none; }
.offer-line .left { display: flex; align-items: center; gap: .5rem; }
.offer-line .val { font-weight: 700; }
.offer-line .val.strike { text-decoration: line-through; color: var(--muted); font-weight: 600; }
.offer-line .val.free-tag {
  background: #fee2e2; color: var(--ok); padding: .2rem .55rem;
  border-radius: 6px; font-size: .85rem; font-weight: 800;
}
.offer-total {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 800;
}
.offer-total .amt {
  font-family: var(--display); font-size: 1.85rem; color: var(--teal);
}
.offer-total .amt span { font-size: .95rem; font-family: var(--font); font-weight: 700; color: var(--muted); }

/* Benefits */
.benefit-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
.benefit {
  display: flex; gap: .85rem; padding: 1.15rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
}
.benefit .n {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}
.benefit h3 { font-size: 1rem; margin-bottom: .25rem; }
.benefit p { font-size: .88rem; color: var(--muted); }

/* How it works */
.steps {
  display: grid; gap: 1.25rem; margin-top: 1.5rem;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  text-align: center; padding: 1.5rem 1.15rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
}
.step .n {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: #1a1400;
  display: grid; place-items: center; margin: 0 auto .85rem;
  font-weight: 900; font-size: 1.1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; color: #fff; }
.step p { font-size: .9rem; color: rgba(255,255,255,.7); }

/* Sub callout */
.sub-callout {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-top: 1.5rem;
  display: flex; gap: .85rem; align-items: flex-start;
}
.sub-callout .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold); color: #1a1400;
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 900;
}
.sub-callout h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.sub-callout p { font-size: .9rem; color: var(--muted); }
.sub-callout strong { color: var(--ink); }

/* Reviews — full wrap width, equal-height cards */
.reviews-wrap {
  width: min(100% - 1.5rem, 1120px);
  max-width: 1120px;
  margin-inline: auto;
}
.reviews {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 720px) {
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}
.review {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.review-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: .5rem; margin-bottom: .75rem; flex-shrink: 0;
}
.stars { color: #f5b301; letter-spacing: 1px; font-size: .9rem; }
.verified {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ok);
  background: #fee2e2; padding: .2rem .5rem; border-radius: 999px;
  white-space: nowrap;
}
.review p {
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--ink);
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
}
.review footer {
  display: flex; align-items: center; gap: .65rem;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .8rem;
  flex-shrink: 0;
}
.review cite { font-style: normal; min-width: 0; }
.review cite b { display: block; font-size: .92rem; color: var(--ink); }
.review cite span { font-size: .78rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 680px; margin: 1.5rem auto 0; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: .65rem; overflow: hidden;
}
.faq-list summary {
  padding: 1rem 1.15rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.25rem; font-weight: 400; color: var(--muted);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .a {
  padding: 0 1.15rem 1.1rem; font-size: .92rem; color: var(--muted);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(6,20,40,.1);
}
.sticky-cta.show { display: block; }
.sticky-cta-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: .75rem;
  max-width: 560px; margin: 0 auto;
}
.sticky-cta .price-mini {
  flex-shrink: 0; font-size: .85rem; line-height: 1.25;
}
.sticky-cta .price-mini b {
  display: block; font-size: 1.05rem; color: var(--teal);
}
.sticky-cta .btn { flex: 1; min-height: 48px; font-size: .92rem; }
@media (min-width: 900px) { .sticky-cta { display: none !important; } }

/* Final CTA band */
.final-cta {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196,30,58,.12), transparent),
    linear-gradient(165deg, var(--teal-deep), var(--teal));
  color: #fff; padding: 3.75rem 0; text-align: center;
}
.final-cta h2 {
  font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800; margin-bottom: .65rem; color: #fff;
}
.final-cta p { color: rgba(255,255,255,.75); margin-bottom: .5rem; max-width: 42ch; margin-inline: auto; }
.final-cta .btn { max-width: 420px; width: 100%; }

/* Footer */
.funnel-foot {
  background: #040c18; color: rgba(255,255,255,.5);
  padding: 1.5rem 0; font-size: .78rem; text-align: center;
}
.funnel-foot a { color: rgba(255,255,255,.7); text-decoration: underline; }
.funnel-foot p { margin-bottom: .4rem; max-width: 70ch; margin-inline: auto; }

/* ═══════════════ CHECKOUT ═══════════════ */
.checkout-page { background: var(--cream); min-height: 100vh; padding-bottom: 3rem; }
.checkout-wrap {
  display: grid; gap: 1.5rem; padding: 1.5rem 0 2rem;
}
@media (min-width: 900px) {
  .checkout-wrap { grid-template-columns: 1.15fr .85fr; align-items: start; }
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.35rem 1.25rem; box-shadow: var(--shadow-sm);
}
.card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.1rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line);
}
.card-head h2, .card-head h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 600;
}

/* Product line in cart */
.order-product {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem; background: var(--cream); border-radius: 12px;
  margin-bottom: 1rem;
}
.order-product img {
  width: 72px; height: 72px; object-fit: contain;
  background: #fff; border-radius: 10px; border: 1px solid var(--line);
  padding: 4px;
}
.order-product .info { flex: 1; min-width: 0; }
.order-product .info h3 { font-size: 1rem; margin-bottom: .15rem; }
.order-product .info p { font-size: .82rem; color: var(--muted); }
.order-product .price-col { text-align: right; flex-shrink: 0; }
.order-product .price-col .was {
  font-size: .78rem; color: var(--muted); text-decoration: line-through;
}
.order-product .price-col .now {
  font-size: 1.15rem; font-weight: 800; color: var(--ok);
}

/* Quiet auto-refill under CTA — not a big green sales box */
.sub-quiet {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  margin: .65rem 0 0;
  padding: .55rem 0 0;
  cursor: pointer;
  border-top: 1px solid var(--line);
}
.sub-quiet input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.sub-quiet-text {
  font-size: .72rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
}
.sub-quiet-text strong {
  font-weight: 700;
  color: var(--ink);
}

/* Tiny order bumps — BAC + express only */
.bump-mini-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: .75rem 0 .85rem;
}
.bump-mini {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  padding: .4rem .55rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fafafa;
  font-size: .8rem;
  line-height: 1.3;
  transition: border-color .15s, background .15s;
}
.bump-mini:hover,
.bump-mini.selected {
  border-color: rgba(201, 162, 39, .55);
  background: #fffbeb;
}
.bump-mini input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}
.bump-mini-text {
  color: var(--ink);
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.bump-mini-text em {
  font-style: normal;
  font-weight: 800;
  color: var(--teal);
  float: right;
  margin-left: .5rem;
}

/* On-page 2-step order */
.order-sec {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}
.order-layout {
  max-width: 560px;
  margin-inline: auto;
}
.order-intro { text-align: center; margin-bottom: 1.25rem; }
.order-intro h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  margin-bottom: .35rem;
}
.order-intro-p { color: var(--muted); font-size: .95rem; }
.order-panel {
  background: linear-gradient(180deg, #fffef9 0%, #fff 60%, #faf8f3 100%);
  color: var(--ink);
  border: 2.5px dashed #b91c1c;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow:
    0 0 0 6px rgba(185, 28, 28, .07),
    0 18px 44px rgba(6, 20, 40, .12);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}
.order-panel .bumps-title { color: var(--muted); }
.order-panel .ship-note { color: var(--muted); }

.order-step-pills {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-bottom: 1.25rem;
}
.order-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; color: var(--muted);
}
.order-pill span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--line); color: var(--muted);
  display: grid; place-items: center; font-size: .72rem;
}
.order-pill.active { color: var(--teal); }
.order-pill.active span { background: var(--teal); color: #fff; }
.order-pill.done { color: var(--ok); }
.order-pill.done span { background: var(--ok); color: #fff; }
.order-pill-line {
  width: 36px; height: 2px; background: var(--line);
}
.order-product-mini {
  display: flex; gap: .85rem; align-items: center;
  padding: .85rem; background: var(--cream); border-radius: 12px;
  margin-bottom: 1rem;
}
.order-product-mini img {
  width: 64px; height: 64px; object-fit: cover; object-position: center;
  border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
}
.order-product-mini strong { display: block; font-size: 1rem; }
.order-product-mini p {
  font-size: .85rem; color: var(--muted); margin-top: .15rem;
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.order-product-mini .free-tag {
  background: #fee2e2; color: var(--ok); font-weight: 800;
  font-size: .72rem; padding: .15rem .4rem; border-radius: 4px;
}
.form-micro,
.btn-legal {
  text-align: center;
  font-size: .72rem;
  line-height: 1.4;
  color: var(--muted);
  margin: .55rem 0 0;
  font-weight: 500;
  max-width: 36rem;
  margin-inline: auto;
}
.sticky-cta .btn-legal {
  font-size: .62rem;
  margin: .35rem 0 0;
  max-width: none;
  flex: 1 1 100%;
  order: 3;
}
.upsell-actions .btn-legal {
  margin-top: .65rem;
}
.center .btn-legal,
.wrap.center .btn-legal {
  margin-top: .65rem;
}
.offer-box .btn-legal {
  margin-top: .65rem;
}
.final-cta .btn-legal {
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
}
.back-link {
  background: none; border: none; color: var(--muted);
  font-size: .88rem; font-weight: 700; cursor: pointer;
  padding: 0 0 .85rem; text-decoration: underline;
  text-underline-offset: 2px;
}
.back-link:hover { color: var(--teal); }
.step2-title {
  font-family: var(--display); font-size: 1.15rem;
  margin-bottom: .85rem;
}
.order-summary-box {
  background: var(--cream); border-radius: 12px;
  padding: 1rem; margin: 1rem 0;
}
.order-summary-box .summary-total { margin-bottom: 0; }

/* Order bumps */
.bumps-title {
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .65rem;
}
.bump {
  display: flex; gap: .85rem; align-items: flex-start;
  border: 2px dashed rgba(201,162,39,.55);
  background: #fffbeb;
  border-radius: 12px;
  padding: .95rem 1rem;
  margin-bottom: .75rem;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
.bump:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(201,162,39,.15); }
.bump.selected {
  border-style: solid; border-color: var(--gold);
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  box-shadow: 0 4px 16px rgba(201,162,39,.2);
}
.bump input[type="checkbox"] {
  width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.bump-body {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.bump-body .bump-tag {
  display: inline-block; font-size: .65rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  background: #dc2626; color: #fff; padding: .15rem .4rem;
  border-radius: 3px; margin-bottom: .35rem;
}
.bump-body h4 { font-size: .95rem; margin-bottom: .2rem; line-height: 1.3; }
.bump-body p { font-size: .82rem; color: var(--muted); }
.bump-price {
  flex-shrink: 0; text-align: right;
}
.bump-price .now { display: block; font-weight: 800; font-size: 1.05rem; color: var(--teal); }
.bump-price .was { font-size: .75rem; color: var(--muted); text-decoration: line-through; }

/* Ship form — contain inputs inside card (no grid bleed) */
.ship-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* City | State | ZIP on one row — no orphan ZIP */
.ship-grid-address {
  grid-template-columns: minmax(0, 1.4fr) minmax(52px, 0.55fr) minmax(72px, 0.7fr);
  gap: .55rem .5rem;
}
.ship-grid-address .ship-field.full {
  grid-column: 1 / -1;
}
.ship-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0; /* allow shrink inside CSS grid */
  max-width: 100%;
}
.ship-field.full { grid-column: 1 / -1; }
.ship-field.sm { max-width: 100%; }
.ship-grid-address .ship-state input {
  text-transform: uppercase;
  text-align: center;
}
.ship-field span {
  font-size: .78rem; font-weight: 700; color: var(--muted);
}
.ship-field input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 46px;
  padding: .6rem .75rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  /* prevent long address strings from forcing width */
  overflow: hidden;
  text-overflow: ellipsis;
}
.ship-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,31,68,.12);
}
.ship-field input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(180,35,24,.12);
}
/* Autofill shouldn't look broken / overflow */
.ship-field input:-webkit-autofill,
.ship-field input:-webkit-autofill:hover,
.ship-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fef2f2 inset !important;
  box-shadow: 0 0 0 1000px #fef2f2 inset !important;
  border-color: var(--line) !important;
  transition: background-color 99999s ease-out 0s;
}
.form-error {
  color: var(--danger); font-size: .8rem; font-weight: 600;
  margin-top: .5rem; display: none;
}
.form-error.show { display: block; }
.ship-note {
  font-size: .78rem; color: var(--muted); margin-top: .65rem;
}

/* Order summary sidebar */
.summary-sticky { position: sticky; top: 80px; }
.summary-line {
  display: flex; justify-content: space-between; gap: .75rem;
  padding: .45rem 0; font-size: .9rem;
}
.summary-line .lbl { color: var(--muted); }
.summary-line .val { font-weight: 700; text-align: right; }
.summary-line.free .val { color: var(--ok); }
.summary-line.sub-line .val { color: var(--teal); }
.summary-divider {
  height: 1px; background: var(--line); margin: .65rem 0;
}
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 800; font-size: 1.05rem; margin: .5rem 0 1rem;
}
.summary-total .amt {
  font-family: var(--display); font-size: 1.65rem; color: var(--teal);
}
.pay-mock-note {
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 10px; padding: .75rem .9rem;
  font-size: .8rem; color: var(--teal); margin-bottom: 1rem;
  font-weight: 600;
}
.guarantee {
  display: flex; gap: .6rem; align-items: flex-start;
  margin-top: 1rem; font-size: .8rem; color: var(--muted);
}
.guarantee .shield {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #fee2e2; color: var(--ok);
  display: grid; place-items: center; font-size: .9rem;
}

/* ═══════════════ UPSELL ═══════════════ */
.upsell-page {
  background: var(--cream);
  min-height: 100vh;
  padding-bottom: 3rem;
}
.upsell-hero {
  background: linear-gradient(165deg, var(--teal-deep), var(--teal));
  color: #fff; padding: 2rem 0 2.5rem; text-align: center;
}
.upsell-hero .wait {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(239,68,68,.2); border: 1px solid rgba(239,68,68,.4);
  color: #fca5a5; font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1rem;
}
.upsell-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto .75rem;
  color: #fff;
}
/* Gold trigger-word highlights (same energy as main hero .hl) */
.upsell-hero h1 em.hl,
.upsell-hero h1 .hl {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 600;
}
.upsell-hero .sub {
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.5;
}

.upsell-card {
  max-width: 640px; margin: -1.5rem auto 0; position: relative; z-index: 2;
  background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow); overflow: hidden;
}
.upsell-media {
  background: linear-gradient(160deg, #fff, var(--cream));
  padding: 1.5rem; display: flex; gap: 1.25rem; align-items: center;
  border-bottom: 1px solid var(--line);
}
.upsell-media img {
  width: 120px; height: 120px; object-fit: cover; object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 8px 20px rgba(6,20,40,.15));
}
.upsell-media .deal h2 { font-size: 1.25rem; margin-bottom: .35rem; }
.upsell-media .deal p { font-size: .9rem; color: var(--muted); }
.upsell-media .deal .save-badge {
  display: inline-block; margin-top: .5rem;
  background: #fee2e2; color: var(--ok);
  font-size: .75rem; font-weight: 800; padding: .25rem .55rem; border-radius: 6px;
}
.upsell-body { padding: 1.5rem 1.35rem 1.75rem; }
.upsell-price-row {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.15rem; flex-wrap: wrap;
}
.upsell-price-row .was {
  font-size: 1.15rem; color: var(--muted); text-decoration: line-through;
}
.upsell-price-row .now {
  font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--teal);
  line-height: 1;
}
.upsell-price-row .save {
  background: #dc2626; color: #fff; font-weight: 800; font-size: .8rem;
  padding: .35rem .6rem; border-radius: 6px;
}
.upsell-bullets { margin: 0 0 1.35rem; }
.upsell-bullets li {
  display: flex; gap: .55rem; padding: .35rem 0; font-size: .92rem;
}
.upsell-bullets li::before {
  content: "✓"; color: var(--ok); font-weight: 900; flex-shrink: 0;
}
.upsell-actions { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.oneclick-note {
  text-align: center; font-size: .78rem; color: var(--muted); margin-top: .35rem;
}
.timer-bar {
  background: #1a1400; color: var(--gold-bright);
  text-align: center; padding: .55rem; font-size: .82rem; font-weight: 700;
}
.timer-bar span { color: #fff; }

/* Downsell variant */
.downsell-tag {
  background: #fef3c7; color: #92400e; text-align: center;
  font-size: .8rem; font-weight: 800; padding: .5rem; letter-spacing: .04em;
  text-transform: uppercase;
}

/* ═══════════════ THANK YOU ═══════════════ */
.thanks-page {
  background: var(--cream); min-height: 100vh;
}
.thanks-hero {
  background: linear-gradient(165deg, var(--teal-deep), var(--teal));
  color: #fff; padding: 3rem 0 4rem; text-align: center;
}
.thanks-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(185,28,28,.35); border: 3px solid #fca5a5;
  color: #fca5a5; display: grid; place-items: center;
  font-size: 2rem; font-weight: 900; margin: 0 auto 1.25rem;
}
.thanks-hero h1 {
  font-family: var(--display); font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: .5rem;
}
.thanks-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; }

.thanks-card {
  max-width: 560px; margin: -2rem auto 2rem; position: relative; z-index: 2;
  background: #fff; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 1.5rem;
}
.thanks-card h2 {
  font-family: var(--display); font-size: 1.25rem; margin-bottom: 1rem;
  text-align: center;
}
.order-recap .summary-line { font-size: .92rem; }
.next-steps {
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.next-steps h3 { font-size: .95rem; margin-bottom: .75rem; }
.next-steps ol {
  padding-left: 1.2rem; font-size: .9rem; color: var(--muted);
}
.next-steps li { margin-bottom: .45rem; }
.next-steps strong { color: var(--ink); }
.thanks-actions {
  display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem;
}
.mock-reset {
  text-align: center; margin: 2rem 0;
  font-size: .85rem; color: var(--muted);
}
.mock-reset a { color: var(--teal); font-weight: 700; text-decoration: underline; }

/* Toast */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
  border-radius: 999px; font-size: .9rem; font-weight: 700;
  opacity: 0; pointer-events: none; z-index: 300;
  transition: opacity .25s, transform .25s; white-space: nowrap;
  max-width: calc(100% - 2rem);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Social proof popup — bottom right */
.proof-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 250;
  display: flex;
  align-items: center;
  gap: .75rem;
  width: min(320px, calc(100vw - 1.5rem));
  padding: .75rem .9rem .75rem .75rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(6, 20, 40, .18), 0 0 0 1px rgba(10, 61, 61, .04);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.proof-popup.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.proof-popup[hidden] {
  display: none !important;
}
.proof-popup-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--line);
}
.proof-popup-body { min-width: 0; flex: 1; padding-right: .5rem; }
.proof-popup-name {
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 .1rem;
  color: var(--ink);
}
.proof-popup-action {
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 .15rem;
  line-height: 1.3;
}
.proof-popup-time {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ok);
  margin: 0;
}
.proof-popup-close {
  position: absolute;
  top: .35rem;
  right: .4rem;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  display: grid;
  place-items: center;
  padding: 0;
}
.proof-popup-close:hover {
  background: var(--cream);
  color: var(--ink);
}
/* Sit above mobile sticky claim bar when visible */
@media (max-width: 899px) {
  .proof-popup {
    bottom: 5.25rem;
    right: .75rem;
  }
  .sticky-cta.show ~ .proof-popup,
  body:has(.sticky-cta.show) .proof-popup {
    bottom: 5.25rem;
  }
}

/* Processing overlay (mock) */
.processing {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(6,20,40,.72); backdrop-filter: blur(6px);
  display: none; place-items: center; padding: 1.5rem;
}
.processing.show { display: grid; }
.processing-box {
  background: #fff; border-radius: 20px; padding: 2rem 1.75rem;
  text-align: center; max-width: 340px; width: 100%;
  box-shadow: var(--shadow);
}
.spinner {
  width: 48px; height: 48px; border: 3px solid var(--line);
  border-top-color: var(--teal); border-radius: 50%;
  margin: 0 auto 1.15rem;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-box h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.processing-box p { font-size: .9rem; color: var(--muted); }
