:root {
  --ink:       #0f1a10;
  --ink-60:    rgba(15,26,16,0.60);
  --ink-35:    rgba(15,26,16,0.35);
  --white:     #ffffff;
  --off:       #f6f8f4;
  --cream:     #f2ede3;
  --green:     #1b4d2e;
  --green-mid: #2d6b40;
  --green-lt:  #eaf3ec;
  --gold:      #a07820;
  --red:       #8b1a1a;
  --border:    rgba(15,26,16,0.10);
  --radius:    12px;
  --serif: Georgia,'Times New Roman',serif;
  --sans: -apple-system,BlinkMacSystemFont,'Helvetica Neue',Arial,sans-serif;
  --max: 640px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--serif);
    letter-spacing: 0;
    text-transform: inherit;
}
/* ─── ANNOUNCE ───────────────────────────── */
.announce {
  background: var(--green);
  color: rgba(255,255,255,0.90);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 16px;
}
.announce a { color: #c8e8c0; text-decoration: underline; }

/* ─── NAV ────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav__brand { font-family: var(--serif); font-size: 18px; color: var(--green); letter-spacing: 0.06em; }
.nav__badge { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); }

/* ─── HERO ───────────────────────────────── */
.hero {
  background: var(--white);
  padding: 40px 20px 36px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero__label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 16px; }
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(24px, 5.5vw, 38px);
  line-height: 1.20;
  font-weight: normal;
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--ink);
}
.hero__h1 em { font-style: italic; color: var(--green); }
.hero__h1 strong { font-weight: normal; color: var(--red); }
.hero__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.hero__pill { font-size: 12px; font-weight: 700; background: var(--green-lt); color: var(--green); border: 1px solid rgba(29,77,46,0.15); border-radius: 99px; padding: 6px 14px; }

/* ─── HERO VIDEO ─────────────────────────── */
.hero-video {
  width: 100%;
  max-width: 520px;
  margin: -4px auto 24px;
}
.hero-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2048 / 724;
  object-fit: cover;
  border-radius: var(--radius);
  background: #0d1f10;
  box-shadow: 0 8px 24px rgba(15,26,16,0.12);
}
@media (max-width: 420px) {
  .hero-video { margin-bottom: 20px; }
  .hero-video video { border-radius: 10px; }
}


/* ─── RESILIA DIFFERENCE VIDEO ───────────── */
.resilia-diff-video {
  width: 100%;
  max-width: 520px;
  margin: 18px auto 22px;
}
.resilia-diff-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--off);
  box-shadow: 0 8px 24px rgba(15,26,16,0.10);
}
@media (max-width: 420px) {
  .resilia-diff-video { margin: 16px auto 20px; }
  .resilia-diff-video video { border-radius: 10px; }
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
}
.btn:hover { background: #6f1414; transform: translateY(-1px); }
.btn-lg { font-size: 15px; padding: 18px 36px; }
.btn-wrap { text-align: center; margin: 24px 0; }
.btn-sub { display: block; font-size: 11px; color: var(--ink-35); margin-top: 8px; letter-spacing: 0.04em; }
.btn-sub-white { display: block; font-size: 11px; color: rgba(255,255,255,0.50); margin-top: 8px; }

/* ─── TRUST ROW ──────────────────────────── */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-top: 16px; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-60); }

/* ─── SECTIONS ───────────────────────────── */
.section { padding: 48px 20px; border-bottom: 1px solid var(--border); }
.section.white  { background: var(--white); }
.section.cream  { background: var(--cream); }
.section.green  { background: var(--green); color: var(--white); }
.section.off    { background: var(--off); }
.section.dark   { background: #0d1f10; color: var(--white); }

.eyebrow { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 12px; }
.eyebrow-lt { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 12px; }

.section__h2 { font-family: var(--serif); font-size: clamp(20px, 4.5vw, 30px); font-weight: normal; line-height: 1.25; margin-bottom: 16px; color: var(--ink); }
.section.green .section__h2 { color: var(--white); }
.section.dark .section__h2 { color: var(--white); }
.section__lead { font-size: 15px; color: var(--ink-60); line-height: 1.7; margin-bottom: 24px; }
.section.green .section__lead { color: rgba(255,255,255,0.72); }

/* ─── BILLING ACCUMULATION ───────────────── */
.billing-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.billing-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.billing-item:last-child { border-bottom: none; }
.billing-item .bill-icon { color: var(--red); font-size: 12px; flex-shrink: 0; }
.billing-total {
  background: #fff5f5;
  border: 1.5px solid #d9a0a0;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--red);
  line-height: 1.45;
}

/* ─── STACCATO COPY ──────────────────────── */
/* Short punchy lines that mirror internal monologue */
.staccato { font-size: 15px; color: var(--ink-60); line-height: 2.0; }
.staccato strong { color: var(--ink); }
.staccato em { font-style: italic; color: var(--green); }

/* ─── SURVEY BARS ────────────────────────── */
.survey-bar {
  display: flex; align-items: center; gap: 14px;
  border-radius: var(--radius); padding: 12px 16px; margin-bottom: 8px;
}
.survey-bar.winner { background: var(--green-lt); border: 1.5px solid var(--green); padding: 14px 16px; margin-bottom: 10px; }
.survey-bar.normal { background: var(--white); border: 1px solid var(--border); }
.survey-bar.danger { background: #fff5f5; border: 1px solid #e8c0c0; }
.survey-badge { flex-shrink:0; font-size:12px; font-weight:800; border-radius:99px; padding:4px 10px; }
.survey-badge.win { background: var(--green); color: #fff; font-size:13px; }
.survey-badge.std { background: var(--off); color: var(--ink-60); }
.survey-badge.bad { background: var(--off); color: var(--ink-60); }
.survey-label { font-size:14px; font-weight:800; color: var(--ink); margin-bottom:4px; }
.survey-label.danger { color: var(--red); }
.survey-bar-track { height:7px; border-radius:4px; overflow:hidden; background:rgba(15,26,16,0.08); }
.survey-bar-fill { height:100%; border-radius:4px; }
.survey-pct { font-family: var(--serif); font-size:20px; color: var(--ink-60); font-weight:normal; flex-shrink:0; }
.survey-pct.win { color: var(--green); font-size:22px; }
.survey-pct.bad { color: var(--red); }

/* ─── MECHANISM CARDS ────────────────────── */
.mech-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; margin-bottom: 14px; }
.mech-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); background: var(--green-lt); border-radius: 99px; padding: 3px 10px; margin-bottom: 8px; }
.mech-title { font-family: var(--serif); font-size: 17px; margin-bottom: 8px; color: var(--ink); }
.mech-body { font-size: 14px; color: var(--ink-60); line-height: 1.65; }

/* ─── DISQUALIFY TABLE ───────────────────── */
.disq-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.disq-table th { text-align: left; padding: 10px 12px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: var(--green); color: rgba(255,255,255,0.85); }
.disq-table td { padding: 12px 12px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.disq-table tr:last-child td { border-bottom: none; }
.disq-table tr:nth-child(even) td { background: var(--off); }
.disq-table .miss { color: var(--red); font-weight: 700; font-size: 13px; }
.disq-table .win  { color: var(--green); font-weight: 700; font-size: 13px; }

/* ─── INGREDIENT CARDS ───────────────────── */
.ing-grid { display: grid; gap: 16px; margin: 20px 0; }
@media(min-width:480px){ .ing-grid { grid-template-columns: 1fr 1fr; } }
.ing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; }
.ing-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); background: rgba(160,120,32,0.10); border-radius: 99px; padding: 3px 10px; margin-bottom: 10px; }
.ing-name { font-family: var(--serif); font-size: 17px; margin-bottom: 6px; color: var(--ink); }
.ing-conc { font-size: 22px; font-family: var(--serif); color: var(--green); margin-bottom: 6px; line-height: 1; }
.ing-conc span { font-family: var(--sans); font-size: 11px; color: var(--ink-60); font-weight: 700; letter-spacing: 0.06em; }
.ing-body { font-size: 13px; color: var(--ink-60); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 10px; }
.ing-facts { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.ing-facts li { font-size: 12px; color: var(--ink-60); padding-left: 14px; position: relative; }
.ing-facts li::before { content: "→"; position: absolute; left: 0; color: var(--green-mid); }

/* ─── TEST TRACKER ───────────────────────── */
.test-grid { display: grid; gap: 10px; margin: 20px 0; }
@media(min-width:480px){ .test-grid { grid-template-columns: 1fr 1fr; } }
.test-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; }
.test-card__num { font-family: var(--serif); font-size: 32px; color: var(--green); line-height: 1; margin-bottom: 8px; }
.test-card__title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.test-card__body { font-size: 13px; color: var(--ink-60); line-height: 1.55; }

/* ─── PHASE TIMELINE ─────────────────────── */
.phase { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.phase__header { background: var(--green); padding: 10px 18px; display: flex; align-items: center; gap: 12px; }
.phase__badge { background: rgba(255,255,255,0.20); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 99px; padding: 4px 12px; flex-shrink: 0; }
.phase__when { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.90); letter-spacing: 0.06em; text-transform: uppercase; }
.phase__body { padding: 16px 18px; }
.phase__desc { font-size: 14px; color: var(--ink-60); line-height: 1.65; margin-bottom: 14px; }
.phase__quote { background: var(--off); border-radius: 8px; padding: 12px 14px; border-left: 3px solid var(--green); }
.phase__quote p { font-size: 13px; color: var(--ink); font-style: italic; margin-bottom: 4px; }
.phase__quote cite { font-size: 11px; color: var(--ink-35); font-style: normal; font-weight: 700; }

/* ─── REVIEWS ────────────────────────────── */
.reviews { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.review { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px; }
.review__stars { color: #d4a017; font-size: 15px; letter-spacing: 2px; margin-bottom: 6px; }
.review__headline { font-family: var(--serif); font-size: 16px; margin-bottom: 8px; color: var(--ink); line-height: 1.3; }
.review__body { font-size: 14px; color: var(--ink-60); line-height: 1.65; margin-bottom: 12px; }
.review__person { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-lt); border: 1px solid rgba(29,77,46,0.12); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; overflow: hidden; }
.review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review__name { font-size: 13px; font-weight: 800; color: var(--ink); }
.review__meta { font-size: 11px; color: var(--ink-35); }
.review__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.review__tag { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: var(--green-lt); border-radius: 99px; padding: 4px 10px; }

/* ─── DANGER BOX ─────────────────────────── */
.danger-box { background: #fff5f5; border: 1.5px solid #d9a0a0; border-radius: var(--radius); padding: 22px 20px; margin: 20px 0; }
.danger-box__title { font-family: var(--serif); font-size: 16px; color: var(--red); margin-bottom: 10px; }
.danger-list { margin:0;list-style: none; display: flex; flex-direction: column; gap: 7px; }
.danger-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink); line-height: 1.45; }
.danger-list li .d-icon { flex-shrink: 0; color: var(--red); font-size: 14px; margin-top: 1px; }

/* ─── SEX CALLOUT ────────────────────────── */
.sex-callout { background: var(--green); border-radius: var(--radius); padding: 24px 20px; color: var(--white); margin: 24px 0; }
.sex-callout h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 10px; color: var(--white); }
.sex-callout p { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.65; }
.sex-callout strong { color: #c8e8c0; }
.no-side-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.no-side-list li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.no-side-list li .chk { color: #c8e8c0; flex-shrink: 0; }


/* ─── NO-TRADEOFF SCAN LIST ───────────────── */
.no-tradeoff-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
}
.no-tradeoff-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}
.no-tradeoff-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff2f2;
  border: 1px solid rgba(139,26,26,0.20);
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  flex: 0 0 24px;
}
.no-tradeoff-copy {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.7;
}
.no-tradeoff-copy p + p { margin-top: 12px; }
.no-tradeoff-copy strong { color: var(--ink); }
.resilia-diff-title {
  font-family: var(--sans);
  font-size: clamp(17px, 4.8vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.support-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--green-lt);
  border: 1px solid rgba(29,77,46,0.18);
  border-radius: 10px;
  padding: 13px 14px;
  margin: 16px 0;
}
.support-check__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  flex: 0 0 24px;
  margin-top: 1px;
}
.support-check p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 380px) {
  .no-tradeoff-item { padding: 11px 12px; font-size: 13.5px; }
  .support-check { padding: 12px; }
  .support-check p { font-size: 13.5px; }
}


/* ─── RESILIA FORMULA PAIR ───────────────── */
.formula-block {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.formula-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.formula-title {
  font-family: var(--serif);
  font-size: clamp(24px, 5.8vw, 32px);
  line-height: 1.18;
  font-weight: normal;
  color: var(--ink);
  margin-bottom: 12px;
}
.formula-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 4.4vw, 22px);
  line-height: 1.32;
  color: var(--green);
  margin-bottom: 10px;
}
.formula-intro {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 18px;
}
.formula-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0;
}
.formula-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.formula-number {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--green);
  background: var(--green-lt);
  border-radius: 99px;
  padding: 7px 10px;
  margin-bottom: 10px;
}
.formula-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.formula-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
}
.formula-card .formula-takeaway {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}
.formula-together {
  background: var(--green-lt);
  border: 1px solid rgba(29,77,46,.16);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}
.formula-together h4 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.formula-together p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
}
.formula-together .formula-close {
  color: var(--ink);
  font-weight: 900;
  margin-top: 10px;
}
@media (min-width: 560px) {
  .formula-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 380px) {
  .formula-block { margin-top: 24px; padding-top: 24px; }
  .formula-card { padding: 17px 15px; }
  .formula-title { font-size: 23px; }
  .formula-subtitle { font-size: 18px; }
}


/* ─── SIMPLE PROTOCOL ────────────────────── */
.protocol-card {
  margin-top: 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.protocol-card__label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 7px;
}
.protocol-card__title {
  font-family: var(--serif);
  font-size: clamp(23px, 5.6vw, 30px);
  line-height: 1.2;
  font-weight: normal;
  color: var(--white);
  margin: 0;
}

/* ─── SELF TEST / GUARANTEE BRIDGE ─────── */
.self-test-lead {
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 18px;
}
.self-test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0;
}
.self-test-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px;
}
.self-test-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.self-test-item span {
  display: block;
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.5;
}
.self-test-baseline {
  background: var(--green-lt);
  border: 1px solid rgba(29,77,46,.16);
  border-radius: var(--radius);
  padding: 18px;
  margin: 18px 0;
}
.self-test-baseline p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.65;
  margin: 0;
}
.self-test-baseline p + p { margin-top: 10px; }
.self-test-before-after {
  font-family: var(--serif);
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin: 20px 0 16px;
}
.self-test-shortlines {
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.self-test-shortlines strong { color: var(--ink); }
.self-test-guarantee {
  background: var(--cream);
  border: 1px solid rgba(160,120,32,.28);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 18px;
}
.self-test-guarantee p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
}
.self-test-guarantee p + p { margin-top: 10px; }
.self-test-checks {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}
.self-test-guarantee p strong {
    color: var(--ink);
}
.self-test-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.self-test-check b {
  color: var(--green);
  font-size: 15px;
}
.self-test-proof {
  margin: 22px auto 0;
  max-width: 560px;
}
.self-test-proof img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.self-test-close {
  font-family: var(--serif);
  font-size: clamp(22px, 5.4vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  margin-top: 22px;
}
@media (min-width: 560px) {
  .self-test-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── GUARANTEE ──────────────────────────── */
.guarantee { background: var(--cream); border: 2px solid var(--gold); border-radius: var(--radius); padding: 28px 22px; margin: 20px 0; text-align: center; }
.guarantee__icon { font-size: 40px; margin-bottom: 12px; }
.guarantee__title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.guarantee__body { font-size: 14px; color: var(--ink-60); line-height: 1.7; max-width: 420px; margin: 0 auto; }
.guarantee__stat { display: block; font-size: 42px; font-family: var(--serif); color: var(--green); margin: 14px 0 2px; line-height: 1; }
.guarantee__stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-60); }

/* ─── BUNDLES ────────────────────────────── */
.bundle-grid { display: grid; gap: 12px; margin: 20px 0; }
@media(min-width:480px){ .bundle-grid { grid-template-columns: 1fr 1fr 1fr; } }
.bundle-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 14px; text-align: center; position: relative; }
.bundle-card.best { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,77,46,0.08); }
.bundle-card__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; border-radius: 99px; padding: 4px 14px; white-space: nowrap; }
.bundle-card__count { font-size: 16px; font-family: var(--serif); color: var(--ink); margin-bottom: 2px; }
.bundle-card__period { font-size: 11px; color: var(--ink-60); margin-bottom: 10px; }
.bundle-card__price { font-family: var(--serif); font-size: 28px; color: var(--green); margin-bottom: 2px; line-height: 1; }
.bundle-card__per { font-size: 11px; color: var(--ink-60); }
.bundle-card__save { font-size: 11px; font-weight: 800; color: var(--red); margin-top: 6px; }

/* ─── FAQ ────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { padding: 16px 18px; font-weight: 700; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--ink); }
.faq-toggle { font-size: 20px; color: var(--green); flex-shrink: 0; line-height: 1; }
.faq-a { display: none; padding: 14px 18px 16px; font-size: 14px; color: var(--ink-60); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-a.open { display: block; }

/* ─── FOOTER ─────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,0.40); padding: 36px 20px; text-align: center; font-size: 11px; line-height: 1.7; }
.footer__brand { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 12px; }

/* ─── MOBILE STICKY CTA ──────────────────── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 12px 20px; z-index: 200; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
@media(max-width:600px){ .mobile-cta { display: block; } }
.mobile-cta .btn { width: 100%; text-align: center; }

/* ─── UTILS ──────────────────────────────── */
.center { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE / DEVICE-SAFE OVERRIDES
   Keeps the existing visual system while making every component
   usable from 320px phones through tablets and wide desktops.
   ═══════════════════════════════════════════════════════════════ */

/* Global resilience */
html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 72px;
}
body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
img, picture, video, canvas, svg, iframe {
  display: block;
  max-width: 100%;
}
img, video, canvas { height: auto; }
iframe { width: 100%; }
button, a, input, select, textarea { font: inherit; }
a, button, .faq-q { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.wrap { width: 100%; min-width: 0; }
.section *, .hero * { min-width: 0; }
p, li, td, th, .faq-q, .faq-a, .survey-label, .phase__when,
.review__body, .review__headline, .btn-sub, .btn-sub-white {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.btn {
  min-height: 48px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:focus-visible, .faq-q:focus-visible, a:focus-visible {
  outline: 3px solid rgba(45,107,64,.35);
  outline-offset: 3px;
}
.faq-q { min-height: 52px; }

/* Keep long-form reading width intentional on large screens */
@media (min-width: 1024px) {
  .hero { padding-top: 52px; padding-bottom: 44px; }
  .section { padding-top: 58px; padding-bottom: 58px; }
  .nav { padding-left: max(24px, calc((100vw - 1100px)/2)); padding-right: max(24px, calc((100vw - 1100px)/2)); }
}

/* Tablet and below */
@media (max-width: 767px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .announce {
    padding: 8px max(12px, env(safe-area-inset-left, 0px));
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .05em;
  }

  .nav {
    padding: 10px max(14px, env(safe-area-inset-left, 0px));
    gap: 12px;
  }
  .nav__brand { flex: 0 0 auto; font-size: 17px; }
  .nav__badge {
    min-width: 0;
    max-width: 62%;
    text-align: right;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: .08em;
  }

  .hero { padding: 32px 16px 30px; }
  .section { padding: 40px 16px; }
  .footer { padding: 32px 16px calc(32px + env(safe-area-inset-bottom, 0px)); }
  .wrap { padding-left: 0; padding-right: 0; }

  .hero__label {
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .09em;
    margin-bottom: 12px;
  }
  .hero__h1 {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.14;
    margin-bottom: 16px;
  }
  .section__h2 {
    font-size: clamp(22px, 6.2vw, 29px);
    line-height: 1.2;
  }
  .section__lead { font-size: 15px; line-height: 1.65; }

  .hero__pills { gap: 7px; margin-bottom: 22px; }
  .hero__pill { padding: 6px 10px; font-size: 11px; line-height: 1.25; }

  .btn-wrap { margin: 20px 0; }
  .btn, .btn-lg {
    width: 100%;
    max-width: 520px;
    padding: 15px 18px;
    font-size: 14px;
  }
  .btn-lg { min-height: 54px; }
  .btn-sub, .btn-sub-white { line-height: 1.35; padding: 0 4px; }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    width: 100%;
  }
  .trust-item {
    justify-content: center;
    text-align: center;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: .04em;
  }

  /* Rich cards */
  .mech-card, .ing-card, .test-card, .review, .danger-box,
  .sex-callout, .guarantee, .faq-item {
    border-radius: 10px;
  }
  .mech-card { padding: 18px 16px; }
  .sex-callout { padding: 20px 16px; }
  .guarantee { padding: 24px 16px; }
  .review { padding: 18px 16px; }

  /* Grids should not force narrow cards on phones/small tablets */
  .ing-grid, .test-grid, .bundle-grid { grid-template-columns: 1fr !important; }
  .bundle-grid { gap: 16px; }
  .bundle-card { padding: 20px 16px; }
  .bundle-card.best { margin-top: 8px; }

  /* Survey bars stay legible even at 320px */
  .survey-bar, .survey-bar.winner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 10px;
    padding: 11px 12px;
  }
  .survey-bar.winner { padding: 12px; }
  .survey-label { font-size: 12px; line-height: 1.25; }
  .survey-pct { font-size: 18px; }
  .survey-pct.win { font-size: 20px; }
  .survey-badge { padding: 3px 8px; font-size: 10px; }
  .survey-badge.win { font-size: 11px; }

  /* Timeline headers wrap instead of squeezing */
  .phase__header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 7px 10px;
    padding: 11px 14px;
  }
  .phase__badge { font-size: 10px; padding: 4px 9px; }
  .phase__when { flex: 1 1 180px; font-size: 11px; line-height: 1.35; }
  .phase__body { padding: 15px 14px; }

  /* Comparison table becomes stacked comparison cards on touch screens */
  .disq-table,
  .disq-table tbody,
  .disq-table tr,
  .disq-table td {
    display: block;
    width: 100%;
  }
  .disq-table {
    border-collapse: separate;
    margin: 18px 0;
    font-size: 14px;
  }
  .disq-table thead { display: none; }
  .disq-table tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
  }
  .disq-table td,
  .disq-table tr:nth-child(even) td {
    background: var(--white);
    border: 0;
    border-bottom: 1px solid var(--border);
    padding: 10px 13px 11px;
    line-height: 1.5;
  }
  .disq-table td:last-child { border-bottom: 0; }
  .disq-table td::before {
    display: block;
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-35);
  }
  .disq-table td:nth-child(1)::before { content: "What you tried"; }
  .disq-table td:nth-child(2)::before { content: "What it does"; }
  .disq-table td:nth-child(3)::before { content: "What it missed"; }
  .disq-table td:nth-child(1) {
    padding-top: 13px;
    font-size: 15px;
    background: var(--off);
  }
  .disq-table .miss, .disq-table .win { font-size: 13px; }

  /* Mobile sticky CTA: safe-area aware and not overly tall */
  .mobile-cta {
    display: block;
    padding-top: 9px;
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,.96);
  }
  .mobile-cta .btn {
    max-width: 640px;
    min-height: 50px;
    margin: 0 auto;
    padding: 13px 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  /* Avoid touch-device hover jumps */
  .btn:hover { transform: none; }
}

/* Medium phones and small tablets: allow selected 2-column layouts */
@media (min-width: 560px) and (max-width: 767px) {
  .ing-grid, .test-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .bundle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .bundle-grid .bundle-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.symptoms-intro p {
    font-family: var(--serif);
    font-size: clamp(20px, 4.5vw, 28px);
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 22px;
}
p {
    margin: 0;
}
.problem_cards p em {
    color: var(--red);
}
/* Phones */
@media (max-width: 480px) {
  .hero { padding: 28px 14px 26px; }
  .section { padding: 36px 14px; }
  .footer { padding-left: 14px; padding-right: 14px; }

  .hero__h1 { font-size: clamp(25px, 8vw, 30px); }
  .section__h2 { font-size: clamp(21px, 7vw, 27px); }
  .eyebrow, .eyebrow-lt { letter-spacing: .14em; }

  .hero__pills {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__pill { width: 100%; text-align: center; }

  .staccato { font-size: 14px; line-height: 1.85; }
  .billing-item { gap: 9px; padding: 9px 0; font-size: 14px; }
  .billing-total { padding: 14px; font-size: 16px; }

  .trust-row { grid-template-columns: 1fr 1fr; }

  .review__person { align-items: flex-start; }
  .review__avatar { width: 36px; height: 36px; }
  .review__tags { gap: 5px; }
  .review__tag { padding: 4px 8px; font-size: 9px; }

  .guarantee__stat { font-size: 36px; }
  .bundle-card__price { font-size: 26px; }

  .faq-q { padding: 14px; font-size: 13px; line-height: 1.35; }
  .faq-a { padding: 13px 14px 15px; font-size: 13px; }
}

/* Very narrow devices (older iPhones / compact Android) */
@media (max-width: 360px) {
  .announce { font-size: 10px; }
  .nav { padding-left: 12px; padding-right: 12px; }
  .nav__brand { font-size: 16px; }
  .nav__badge { max-width: 58%; font-size: 8px; }

  .hero { padding-left: 12px; padding-right: 12px; }
  .section { padding-left: 12px; padding-right: 12px; }
  .hero__h1 { font-size: 24px; line-height: 1.12; }
  .section__h2 { font-size: 22px; }
  .section__lead, body { font-size: 15px; }

  .survey-bar, .survey-bar.winner { gap: 6px 8px; padding-left: 9px; padding-right: 9px; }
  .survey-label { font-size: 11px; }
  .survey-pct, .survey-pct.win { font-size: 17px; }

  .btn, .btn-lg { font-size: 12px; padding-left: 12px; padding-right: 12px; }
  .mobile-cta .btn { font-size: 12px; }
}

/* Landscape phones: preserve content area while retaining CTA */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
  .mobile-cta { display: block; padding-top: 6px; padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px)); }
  .mobile-cta .btn { min-height: 44px; padding-top: 10px; padding-bottom: 10px; }
  .nav { position: static; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}



/* ─── REVIEW CAROUSEL ───────────────────── */
.review-carousel {
  position: relative;
  margin: 22px 0 10px;
  padding: 0 52px;
}
.review-carousel__slides {
  display: block;
  margin: 0;
  min-height: 0;
}
.review-carousel .review-slide {
  display: none;
  margin: 0;
  min-height: 100%;
}
.review-carousel .review-slide.is-active {
  display: block;
  animation: reviewFade .22s ease-out;
}
@keyframes reviewFade {
  from { opacity: .25; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.review-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(29,77,46,.18);
  background: var(--white);
  color: var(--green);
  box-shadow: 0 8px 24px rgba(15,26,16,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.review-carousel__arrow:hover {
  background: var(--green-lt);
  border-color: rgba(29,77,46,.28);
  transform: translateY(-50%) scale(1.04);
}
.review-carousel__arrow:focus-visible,
.review-carousel__dot:focus-visible {
  outline: 3px solid rgba(29,77,46,.25);
  outline-offset: 3px;
}
.review-carousel__arrow--prev { left: 0; }
.review-carousel__arrow--next { right: 0; }
.review-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
}
.review-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15,26,16,.16);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.review-carousel__dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

@media (max-width: 560px) {
  .review-carousel {
    padding: 0;
    margin-top: 18px;
  }
  .review-carousel .review-slide {
    padding: 18px 16px 20px;
  }
  .review-carousel__arrow {
    top: auto;
    bottom: -1px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 27px;
    box-shadow: none;
  }
  .review-carousel__arrow:hover { transform: none; }
  .review-carousel__arrow--prev { left: 4px; }
  .review-carousel__arrow--next { right: 4px; }
  .review-carousel__dots {
    min-height: 40px;
    margin-top: 12px;
    padding: 0 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-carousel .review-slide.is-active { animation: none; }
  .review-carousel__arrow,
  .review-carousel__dot { transition: none; }
}