:root {
  --cream: #fbf4ee;
  --cream2: #f3e8de;
  --ink: #2a1f1c;
  --muted: #6b5a52;
  --plum: #3a2430;
  --rust: #c44b2b;
  --rust2: #a33b20;
  --green: #3d7a55;
  --line: rgba(42,31,28,.12);
  --card: #fffdf9;
  --font: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 980px;
  --max-wide: 1080px;
}
* { box-sizing: border-box; }
/* Force mutual exclusivity: .btn-block {display:block} must not override [hidden] */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.55; }
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.wrap-wide { width: min(var(--max-wide), calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(640px, calc(100% - 2rem)); margin: 0 auto; }
.center { text-align: center; }

/* Sticky stack: ticker + nav */
.ticker {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--plum);
  color: #fbf4ee;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  padding: .55rem 1rem;
  letter-spacing: .01em;
}
.ticker .tick-time { font-variant-numeric: tabular-nums; font-weight: 800; color: #f0b59a; }
.ticker.unlocked { background: var(--green); }
.ticker.unlocked .tick-time { color: #e8f5ee; }
.ticker a { color: #f0b59a; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.ticker.unlocked a { color: #fff; }

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,244,238,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
body.has-ticker .top { top: 2.15rem; }
.top-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: .75rem; }
.brand { font-family: var(--font); font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.brand span { color: var(--rust); }
.top-nav { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; justify-content: flex-end; }
.top-nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
.top-nav a:not(.btn):hover { color: var(--rust); }
@media (max-width: 640px) {
  .top-nav .nav-hide { display: none; }
}

.btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  font-weight: 800;
  font-family: var(--sans);
  text-decoration: none;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--rust2); }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg { font-size: 1.1rem; padding: 1.05rem 1.55rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--rust); }
.btn-ghost:hover { background: rgba(196,75,43,.08); }
.btn-plum { background: var(--plum); }
.btn-plum:hover { background: #2a1a24; }
.btn-block { display: block; width: 100%; }
.stripe-note {
  display: block;
  margin-top: .55rem;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.hero .stripe-note { color: rgba(251,244,238,.55); }

.hero {
  padding: 2.75rem 0 3.25rem;
  background: linear-gradient(165deg, #3a2430 0%, #4a2e3a 55%, #5a3830 100%);
  color: #fbf4ee;
}
.hero .lede, .hero .micro, .hero .hero-bullets { color: rgba(251,244,238,.82); }
.hero .hero-bullets strong { color: #fff; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } }
.eyebrow {
  color: #f0b59a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  margin: 0 0 .8rem;
  font-family: var(--sans);
}
h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}
.lede { font-size: 1.08rem; margin: 0 0 1.15rem; }
.hero-bullets { margin: 0 0 1.4rem; padding-left: 1.15rem; }
.hero-bullets li { margin: .45rem 0; }
.micro { font-size: .88rem; margin: .85rem 0 0; }
.hero-shot { display: grid; gap: .75rem; }
.hero-shot img {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  background: #1a1216;
}
.hero-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .65rem 1rem;
  margin: 0 0 1.1rem;
}
.hero-price {
  font-family: var(--font);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.price-was {
  text-decoration: line-through;
  opacity: .65;
  font-size: 1.15rem;
  font-weight: 700;
}
.price-now { color: #fff; font-weight: 800; }
.unlock-callout {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(240,181,154,.35);
  border-radius: 12px;
  padding: .85rem 1rem;
  margin: 0 0 1.25rem;
  font-size: .95rem;
  color: rgba(251,244,238,.9);
}
.unlock-callout strong { color: #f0b59a; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-price-default { display: inline; }
.hero-price-unlocked { display: none; }
body.is-holder .hero-price-default { display: none; }
body.is-holder .hero-price-unlocked { display: inline; }
body.is-holder .offer-price-default { display: none; }
body.is-holder .offer-price-unlocked { display: flex; }
.offer-price-unlocked { display: none; }
.offer-price-row + .offer-price-row { margin-top: .35rem; }
.offer-buy-default + .offer-buy-unlocked,
.offer-buy-unlocked + .offer-buy-default { margin-top: .75rem; }

.section { padding: 3rem 0; }
.section.alt { background: var(--cream2); }
h2 {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 .85rem;
}
.section-lede { color: var(--muted); max-width: 40rem; margin: 0 0 1.4rem; }
.center-note { text-align: center; color: var(--muted); margin-top: 1.25rem; }

.steps { display: grid; gap: 1rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 4px 16px rgba(42,31,28,.04);
}
.num {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-weight: 800;
  margin-bottom: .5rem;
  font-family: var(--sans);
}
.steps h3 { margin: 0 0 .4rem; font-family: var(--font); font-size: 1.15rem; }
.steps p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Offer cards */
.offers-grid {
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.45rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(42,31,28,.05);
}
.offer-card.featured {
  border: 2px solid var(--rust);
  box-shadow: 0 10px 28px rgba(196,75,43,.15);
  background: #fffaf6;
}
@media (min-width: 900px) {
  .offer-card.featured { transform: scale(1.03); z-index: 1; }
}
.badge-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.offer-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: .35rem 0 .4rem;
}
.offer-card h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.offer-desc { color: var(--muted); font-size: .92rem; margin: 0 0 1rem; flex-grow: 0; }
.offer-meta {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .88rem;
  color: var(--muted);
}
.offer-meta li {
  padding: .35rem 0;
  border-top: 1px solid var(--line);
}
.offer-meta li:first-child { border-top: none; }
.offer-meta strong { color: var(--ink); }
.offer-includes {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: .9rem;
  flex-grow: 1;
}
.offer-includes li { margin: .3rem 0; }
.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  flex-wrap: wrap;
  margin: 0 0 .9rem;
}
.offer-price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.offer-price .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
  margin-right: .35rem;
}
.offer-price .now { color: var(--green); }
.offer-tag {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
}

.free-band {
  background: var(--cream2);
  border: 1px dashed rgba(196,75,43,.35);
  border-radius: 18px;
  padding: 1.75rem 1.4rem;
  text-align: center;
}
.free-band h2 { margin-bottom: .5rem; }
.free-band .section-lede { margin-left: auto; margin-right: auto; }

.whats-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .whats-grid { grid-template-columns: 1fr 1fr; } }
.whats-grid h3 {
  margin: 0 0 .7rem;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .9rem;
  font-family: var(--sans);
}
.check-list { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.check-list li { margin: .4rem 0; }

.why-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}
.why-card h3 { margin: 0 0 .4rem; font-family: var(--font); font-size: 1.05rem; }
.why-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.buy {
  background: var(--plum);
  color: #fbf4ee;
}
.buy h2 { color: #fbf4ee; }
.buy-box { text-align: center; max-width: 560px; margin: 0 auto; }
.price { color: rgba(251,244,238,.8); margin: 0 0 1rem; }
.price .big {
  display: block;
  font-size: 3.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
  font-family: var(--font);
}
.buy-perks { list-style: none; padding: 0; margin: 0 0 1.4rem; color: rgba(251,244,238,.82); }
.buy-perks li { margin: .35rem 0; }
.buy .micro { color: rgba(251,244,238,.65); }
.buy .stripe-note { color: rgba(251,244,238,.5); }

details { border-top: 1px solid var(--line); padding: 1rem 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 700; font-family: var(--font); font-size: 1.05rem; }
details p { color: var(--muted); margin: .55rem 0 0; }

.legal {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}
.legal p { margin: 0 0 .75rem; }

.foot {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
  background: var(--cream);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: .9rem;
}
.foot a { color: var(--rust); font-weight: 700; text-decoration: none; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 31, 28, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  width: min(440px, 100%);
  padding: 1.6rem 1.4rem 1.4rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: .65rem;
  right: .75rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: .25rem .45rem;
}
.modal-close:hover { color: var(--ink); }
.modal h2 {
  font-size: 1.35rem;
  margin: 0 0 .5rem;
  padding-right: 1.5rem;
}
.modal .lede { font-size: .95rem; color: var(--muted); margin-bottom: 1rem; }
.field { margin-bottom: .9rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.field input {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.field input:focus {
  outline: 2px solid rgba(196,75,43,.35);
  border-color: var(--rust);
}
.form-note { font-size: .8rem; color: var(--muted); margin: .75rem 0 0; }

/* Free / thanks page helpers (shared) */
.lead-hero { padding: 2.75rem 0 3.25rem; }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 4px 16px rgba(42,31,28,.04);
}
.proof-list {
  margin: 1.75rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 520px;
}
.proof-list li {
  padding: .65rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}
.proof-list li:first-child { border-top: none; }
.proof-list strong { color: var(--ink); }
.thanks-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 6px 20px rgba(42,31,28,.06);
}
.unlock-banner {
  background: rgba(61,122,85,.1);
  border: 1px solid rgba(61,122,85,.35);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 0 0 1.15rem;
}
.unlock-banner strong { color: var(--green); }
.soft-sell-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}
.soft-sell-list li {
  padding: .45rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}
.soft-sell-list li:first-child { border-top: none; }
.soft-sell-list li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 800;
}
.mega-price {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin: .5rem 0 .75rem;
}
.mega-price .was {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.25rem;
  margin-right: .4rem;
  font-weight: 700;
}
.mega-price .now { color: var(--green); }

/* Stacked default/unlocked CTAs: never glue even if both render */
.offer-cta-stack,
.buy-cta-stack {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
  width: 100%;
}
.offer-cta-stack .btn + .btn,
.buy-cta-stack .btn + .btn {
  margin-top: 0;
}
.buy-box .buy-cta-stack {
  align-items: center;
}
.buy-box .buy-cta-stack .btn {
  width: auto;
  min-width: min(100%, 320px);
}

/* Typography-led product stack (placeholder until OPS v4 covers arrive) */
.product-stack {
  background: linear-gradient(160deg, #fffaf6 0%, #f3e8de 100%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  color: var(--ink);
}
.product-stack-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 .65rem;
}
.product-stack h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 .85rem;
  color: var(--ink);
}
.product-stack ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .88rem;
  color: var(--muted);
}
.product-stack ul li {
  padding: .4rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: .5rem;
}
.product-stack ul li:first-child { border-top: none; }
.product-stack ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.product-stack-meta {
  font-size: .8rem;
  font-weight: 700;
  color: var(--plum);
  background: rgba(58,36,48,.08);
  border-radius: 8px;
  padding: .55rem .75rem;
  text-align: center;
}
.hero-shot .product-stack {
  border-color: rgba(255,255,255,.18);
}

/* —— Jonathan pass + conversion brief 2026-09-18: covers, kits, modal, $66→$49 value story —— */

.ticker .tick-was {
  text-decoration: line-through;
  opacity: .75;
  font-weight: 700;
}

.hero-save-line {
  font-size: .95rem;
  color: rgba(251,244,238,.85);
  max-width: 18rem;
  line-height: 1.35;
}
.hero-save-line strong { color: #f0b59a; }

.hero-cover {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  background: #1a1216;
  width: 100%;
  height: auto;
  /* aspect from image */
  object-fit: contain;
  object-position: top center;
  display: block;
}
.hero-cover-caption {
  margin: .65rem 0 0;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(251,244,238,.7);
}

.offer-cover {
  width: 100%;
  height: auto;
  /* aspect from image */
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: .25rem 0 1rem;
  background: #111;
  box-shadow: 0 4px 14px rgba(42,31,28,.06);
  display: block;
}
.offer-save-note {
  font-size: .8rem;
  color: var(--muted);
  margin: -.35rem 0 .9rem;
  font-weight: 600;
}

.kits-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 720px) {
  .kits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .kits-grid { grid-template-columns: repeat(3, 1fr); }
}
.kit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(42,31,28,.05);
}
.kit-card img {
  width: 100%;
  height: auto;
  /* aspect from image */ /* match cover art */
  object-fit: contain; /* don't re-crop after art fix */
  object-position: top center;
  background: #111;
  border-bottom: 1px solid var(--line);
}
.kit-save {
  display: inline-block;
  margin: 0 0 .55rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(196, 74, 42, .12);
  color: var(--rust);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.kit-body { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.kit-kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 .35rem;
}
.kit-card h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  margin: 0 0 .65rem;
  line-height: 1.25;
}
.kit-what, .kit-why {
  margin: 0 0 .55rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}
.kit-why { margin-bottom: 0; }
.kit-what strong, .kit-why strong { color: var(--ink); }

.free-band-with-cover {
  display: grid;
  gap: 1.35rem;
  text-align: left;
  align-items: start;
}
@media (min-width: 720px) {
  .free-band-with-cover { grid-template-columns: 200px 1fr; }
}
.free-band-cover {
  width: min(200px, 55%);
  height: auto;
  /* aspect from image */
  object-fit: contain;
  object-position: top center;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(42,31,28,.1);
  background: #111;
  display: block;
}
@media (min-width: 720px) {
  .free-band-cover { width: 100%; margin: 0; }
}

.buy-save-line {
  display: block;
  font-size: 1rem;
  color: rgba(251,244,238,.8);
  margin: .35rem 0 .15rem;
  font-weight: 600;
}
.buy-was {
  text-decoration: line-through;
  opacity: .65;
  margin-right: .25rem;
}
.buy-save-line strong { color: #f0b59a; }

/* Modal: compact — no scroll; cover shows top half only */
.modal.modal-checklist {
  width: min(420px, 100%);
  padding: 1.1rem 1.15rem 1rem;
  max-height: min(92vh, 640px);
  overflow-y: auto;
}
.modal-cover-wrap {
  width: min(200px, 55%);
  height: 118px;
  margin: 0 auto .75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(42,31,28,.12);
  overflow: hidden;
  background: #111;
}
.modal.modal-checklist .modal-cover,
.modal img.modal-cover {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: top center !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block;
}
.modal.modal-checklist .eyebrow {
  margin: 0 0 .25rem;
  font-size: .72rem;
}
.modal.modal-checklist h2 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  line-height: 1.2;
  margin: 0 0 .4rem;
}
.modal-benefit {
  font-size: .92rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  margin-bottom: .45rem !important;
}
.modal-bullets {
  margin: 0 0 .75rem;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: .86rem;
}
.modal-bullets li { margin: .18rem 0; }
.modal.modal-checklist .field { margin-bottom: .65rem; }
.modal.modal-checklist .form-note { margin-top: .5rem; font-size: .78rem; }

/* —— Conversion brief 2026-09-18: pain strip, situation, how-steps, before-after, calc —— */

.pain-strip {
  background: var(--cream2);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0 1.85rem;
}
.pain-strip-title {
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: 0 0 1rem;
  text-align: center;
}
.pain-strip-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 720px) {
  .pain-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.pain-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem .85rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(42,31,28,.04);
}
.pain-amount {
  display: block;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--rust);
  line-height: 1.15;
  margin-bottom: .25rem;
}
.pain-label {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}
.pain-qualify {
  margin: 1rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}

.situation-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .situation-grid { grid-template-columns: repeat(3, 1fr); }
}
.situation-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(42,31,28,.05);
}
.situation-card-best {
  border: 2px solid var(--rust);
  background: #fffaf6;
  padding-top: 1.65rem;
}
.situation-card h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 0 0 .55rem;
  line-height: 1.25;
}
.situation-card > p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 .75rem;
  flex-grow: 1;
}
.situation-exposure {
  font-size: .85rem !important;
  color: var(--ink) !important;
  background: rgba(196,75,43,.08);
  border-radius: 8px;
  padding: .55rem .7rem;
  margin: 0 0 .65rem !important;
  flex-grow: 0 !important;
}
.situation-product {
  font-size: .95rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  margin: 0 0 1rem !important;
  flex-grow: 0 !important;
}

.how-steps.steps {
  gap: 1rem;
}
@media (min-width: 720px) {
  .how-steps.steps { grid-template-columns: repeat(4, 1fr); }
}
.core-line {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.core-line strong { color: var(--plum); }

.before-after {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 720px) {
  .before-after { grid-template-columns: 1fr 1fr; }
}
.ba-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 4px 16px rgba(42,31,28,.04);
}
.ba-col h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 0 0 .75rem;
}
.ba-before h3 { color: var(--muted); }
.ba-after h3 { color: var(--green); }
.ba-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: .95rem;
}
.ba-col li { margin: .4rem 0; }
.ba-after li { color: var(--ink); }

.exposure-calc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.2rem 1.25rem;
  box-shadow: 0 4px 16px rgba(42,31,28,.04);
  margin-bottom: 1rem;
}
.calc-grid {
  display: grid;
  gap: .85rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 560px) {
  .calc-grid { grid-template-columns: 1fr 1fr; }
}
.calc-result {
  background: rgba(61,122,85,.08);
  border: 1px solid rgba(61,122,85,.3);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
  margin-top: .25rem;
}
.calc-output {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 .65rem;
  color: var(--ink);
  line-height: 1.3;
}
.calc-route {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.kit-save {
  text-transform: none;
  letter-spacing: .01em;
  font-size: .75rem;
  line-height: 1.35;
  white-space: normal;
  display: block;
  padding: .4rem .65rem;
  border-radius: 8px;
}


/* Cover images: never stretch — keep native aspect */
img.free-band-cover,
.kit-card img,
.offer-card img.offer-cover,
.hero-visual img {
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: top center;
}
/* modal cover cropped via .modal-cover-wrap — do not force contain */


/* Offers: room for BEST OVERALL VALUE badge under headline */
#offers h2 {
  margin-bottom: 1.85rem;
}
#offers .offers-grid {
  margin-top: .35rem;
  padding-top: .35rem;
}
.stripe-note { display: none !important; }
