
/* =============================================================
   Veradine — Foundations
   Colors, type, spacing, radii, shadow, motion tokens
   ============================================================= */

/* Primary source: local TTFs in /fonts (guaranteed to render anywhere this
   stylesheet is loaded with a correct relative path). Google Fonts CDN is
   imported only as a redundancy. */





/* Redundant CDN copy in case relative paths fail (e.g. cross-origin iframe). */
:root {
  /* -----------------------------------------------------------
     COLOR — Brand
     ----------------------------------------------------------- */
  --forest-green: #0F3D2E;        /* primary */
  --forest-dark:  #0A2E22;        /* hover / deeper */
  --warm-cream:   #F5F1E8;        /* canvas background */
  --soft-sage:    #E4ECDF;        /* accent panels */
  --charcoal:     #1A1A1A;        /* body text */
  --success-green:#2D7A4F;        /* checkmarks, badges */
  --warm-gold:    #D4A24C;        /* stars, accents */
  --sale-red:     #B53A2C;        /* urgency only */

  /* Tints derived from cream — for hairlines, soft fills */
  --cream-200: #EDE6D5;           /* dusty border on cream */
  --cream-300: #E0D6BE;           /* divider */
  --sage-200:  #D3DECB;           /* sage hairline */
  --forest-tint: rgba(15, 61, 46, 0.08); /* subtle forest wash */
  --forest-08: rgba(15, 61, 46, 0.08);
  --forest-12: rgba(15, 61, 46, 0.12);
  --forest-20: rgba(15, 61, 46, 0.20);

  /* -----------------------------------------------------------
     COLOR — Semantic
     ----------------------------------------------------------- */
  --bg:           var(--warm-cream);
  --bg-elevated: #FBF8F0;          /* card on cream */
  --bg-panel:    var(--soft-sage); /* feature panels */
  --bg-inverse:  var(--forest-green);

  --fg:          var(--charcoal);
  --fg-muted:    #4A4A47;          /* warm gray body */
  --fg-subtle:   #6B6B66;          /* meta / labels */
  --fg-inverse:  var(--warm-cream);
  --fg-brand:    var(--forest-green);

  --border:        var(--cream-300);
  --border-strong: var(--forest-green);
  --border-sage:   var(--sage-200);

  --link:        var(--forest-green);
  --link-hover:  var(--forest-dark);

  --success: var(--success-green);
  --rating:  var(--warm-gold);
  --danger:  var(--sale-red);

  /* -----------------------------------------------------------
     TYPE — Families
     ----------------------------------------------------------- */
  --font-serif:   "Instrument Serif", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Roboto", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Roles */
  --font-display: var(--font-serif);     /* hero, marketing display */
  --font-body:    var(--font-sans);      /* paragraphs, UI */
  --font-eyebrow: var(--font-sans);      /* small caps labels */

  /* -----------------------------------------------------------
     TYPE — Scale (clamp where helpful for marketing)
     ----------------------------------------------------------- */
  --fs-display-xl: clamp(56px, 8vw, 120px);  /* hero serif */
  --fs-display-lg: clamp(44px, 5.6vw, 80px);
  --fs-display-md: clamp(36px, 4.4vw, 56px);
  --fs-h1: 44px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --fs-h4: 20px;
  --fs-body-lg: 18px;
  --fs-body:    16px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-eyebrow: 12px;

  /* Line heights */
  --lh-display: 0.95;
  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-body:    1.55;
  --lh-loose:   1.7;

  /* Tracking */
  --ls-display: -0.02em;
  --ls-tight:   -0.01em;
  --ls-body:    0;
  --ls-eyebrow: 0.14em;  /* SMALL CAPS labels */

  /* Weights */
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  /* -----------------------------------------------------------
     SPACING — 4pt baseline
     ----------------------------------------------------------- */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* -----------------------------------------------------------
     RADII
     ----------------------------------------------------------- */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;

  /* -----------------------------------------------------------
     SHADOWS — soft, paper-like
     ----------------------------------------------------------- */
  --shadow-xs: 0 1px 2px rgba(15, 61, 46, 0.06);
  --shadow-sm: 0 2px 6px rgba(15, 61, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 61, 46, 0.10);
  --shadow-lg: 0 18px 48px rgba(15, 61, 46, 0.14);
  --shadow-inset: inset 0 0 0 1px var(--border);

  /* -----------------------------------------------------------
     MOTION
     ----------------------------------------------------------- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);     /* gentle, signature */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* used sparingly */
  --dur-fast:    120ms;
  --dur-base:    220ms;
  --dur-slow:    400ms;

  /* -----------------------------------------------------------
     LAYOUT
     ----------------------------------------------------------- */
  --container:    1240px;
  --container-sm: 720px;
  --gutter:       clamp(20px, 4vw, 48px);
}

/* =============================================================
   Element defaults — semantic styles
   ============================================================= */

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--fg-brand);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--fg-brand);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--fg-brand);
}
h4, .h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h4);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}

.display-xl { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display-xl); line-height: var(--lh-display); letter-spacing: var(--ls-display); }
.display-lg { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display-lg); line-height: var(--lh-display); letter-spacing: var(--ls-display); }
.display-md { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-display-md); line-height: var(--lh-tight);   letter-spacing: var(--ls-display); }

p, .body { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--fg-muted); }
.body-lg { font-size: var(--fs-body-lg); line-height: var(--lh-loose); }
.body-sm { font-size: var(--fs-body-sm); line-height: var(--lh-body); }

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--fg-subtle);
}

a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--link-hover); }

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

::selection { background: var(--forest-green); color: var(--warm-cream); }


/* --- page styles --- */
/* ======================================================================
   Sales Page v2 — long-form, structurally matched to reference layout
   Layered on top of foundations.css
   ====================================================================== */

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
html { width: 100%; }
body { width: 100%; overflow-x: clip; }
@supports not (overflow-x: clip) { body { overflow-x: hidden; } }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; font-weight: 700; }
button, .btn, a.btn, .v2-buy-now-big, .offer-cta, .px-turn-cta, .sticky-cta, .sticky-cta-label, .v2-timeline-cta .btn { font-weight: 700 !important; }
input { font: inherit; }

.v2-container { max-width: 1120px; margin: 0 auto; padding: 0 56px; }
.v2-narrow { max-width: 920px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 1024px) { .v2-container, .v2-narrow { padding: 0 36px; } }
@media (max-width: 720px) { .v2-container, .v2-narrow { padding: 0 16px; } }


/* Anchor scroll offset — keeps sticky header from covering target */
#ingredients, #reviews, #faq, #guarantee {
  scroll-margin-top: 84px;
}

/* ============================================================
   ANNOUNCE BAR (top dark forest strip)
   ============================================================ */
.v2-announce {
  background: var(--forest-dark);
  color: var(--warm-cream);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  min-height: 34px;
  margin: 0;
  padding: 18px 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.v2-announce .dot { opacity: 0.4; }
.v2-announce .ship-ic { flex-shrink: 0; }
.v2-announce .ship-msg strong { font-weight: 800; letter-spacing: 0.06em; }
.v2-announce .ship-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--warm-gold);
  color: var(--forest-dark);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 720px) { .v2-announce { font-size: 11.5px; gap: 8px; }
  .v2-announce .hide-sm { display: none; } }

/* ============================================================
   HEADER — cream bg, centered logo
   ============================================================ */
.v2-header {
  background: var(--bg);
  border-bottom: 1px solid var(--forest-08);
  position: sticky; top: 0; z-index: 50;
}
.v2-header .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.v2-header .wordmark {
  justify-self: center;
  display: inline-flex; align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.v2-header .wordmark-img { height: 36px; width: auto; display: block; }
.v2-header .actions {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 12px;
}
.v2-header .cart-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--forest-12);
}
.v2-header .shop-btn {
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
}
.v2-header .shop-btn:hover { background: var(--forest-dark); color: var(--warm-cream); }


.v2-header nav { display: flex; gap: 8px; align-items: center; }
.v2-header nav > a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-green);
  background: transparent;
  border: 1px solid var(--forest-12);
  border-radius: 6px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.v2-header nav > a:hover {
  background: var(--forest-green);
  color: var(--warm-cream);
  border-color: var(--forest-green);
}

@media (max-width: 880px) {
  .v2-header nav { display: none; }
  .v2-header .row { grid-template-columns: 1fr auto 1fr; }
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.v2-promo {
  background: var(--soft-sage);
  padding: 18px 0;
  border-bottom: 1px solid var(--sage-200);
}
.v2-promo .row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  text-align: center;
}
.v2-promo .text {
  font-family: var(--font-body);
  color: var(--forest-green);
  font-size: 16px; font-weight: 500;
}
.v2-promo .sub {
  display: block;
  font-size: 11.5px;
  color: var(--fg-muted);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.v2-promo .gift-badge {
  background: var(--warm-gold);
  color: var(--forest-dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 12px;
  border-radius: 6px;
  transform: rotate(-3deg);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 0 rgba(15,61,46,0.10);
}

/* ============================================================
   HERO PDP — green texture left, buy box right
   ============================================================ */
.v2-hero { padding: 56px 0 88px; background: var(--bg); }
.v2-hero .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 980px) { .v2-hero .grid { grid-template-columns: 1fr; gap: 32px; } }

.v2-hero .gallery {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 14px;
}
.v2-hero .gallery .main { background: var(--bg-elevated); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1/1; position: relative; display: grid; place-items: center; }
.v2-hero .gallery .main img {
  width: 100%; height: 100%; object-fit: cover;
}





/* Buy box */
.v2-buy { padding: 0; }
.v2-buy .review-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-muted);
  margin-bottom: 12px;
}
.v2-buy .review-row .stars { color: var(--warm-gold); letter-spacing: 1px; }
.v2-buy .review-row strong { color: var(--fg); font-weight: 600; }
.v2-buy h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 14px;
}
.v2-buy .desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 24px;
  max-width: 60ch;
}
.v2-buy .benefits-head {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle); font-weight: 500;
  margin: 24px 0 12px;
}
.v2-buy .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-bottom: 20px;
}
.v2-buy .benefits-grid .b {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px;
  font-size: 13.5px; color: var(--fg); align-items: center;
}
.v2-buy .benefits-grid .b .t { color: var(--success-green); }

/* Plan cards */
.v2-plan {
  background: var(--soft-sage);
  border: 2px solid var(--soft-sage);
  border-radius: var(--r-md);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 220ms var(--ease-out);
}
.v2-plan.active { border-color: var(--forest-green); background: rgba(228,236,223,0.4); }
.v2-plan .plan-head {
  padding: 16px 18px;
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  cursor: pointer;
}
.v2-plan .ribbon-label {
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 4px 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.v2-plan .ribbon-label.gold { background: var(--warm-gold); color: var(--forest-dark); }
.v2-plan .radio {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1.5px solid var(--forest-12);
  display: grid; place-items: center; background: var(--bg);
}
.v2-plan.active .radio { border-color: var(--forest-green); }
.v2-plan.active .radio::after { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--forest-green); }
.v2-plan .nm { font-weight: 600; font-size: 14.5px; color: var(--fg); letter-spacing: 0.04em; }
.v2-plan .price { font-family: var(--font-body); font-weight: 600; color: var(--forest-green); font-variant-numeric: tabular-nums; font-size: 16px; }
.v2-plan .body {
  padding: 0 18px 18px;
  font-size: 13.5px; color: var(--fg-muted);
}
.v2-plan .body ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.v2-plan .body ul li {
  display: grid; grid-template-columns: 16px 1fr; gap: 8px;
  align-items: center;
}
.v2-plan .body ul li .t { color: var(--success-green); }
.v2-plan .addons {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.v2-plan .addon {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 10px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--forest-08);
  border-radius: 8px;
  padding: 10px 12px;
}
.v2-plan .addon .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--soft-sage);
  display: grid; place-items: center;
  color: var(--forest-green);
}
.v2-plan .addon .nm { font-size: 13.5px; color: var(--fg); font-weight: 500; }
.v2-plan .addon .tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-gold); font-weight: 600;
}

.v2-buy .one-time {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  padding: 16px 18px;
  background: var(--bg);
  border: 2px solid var(--forest-08);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  cursor: pointer;
}
.v2-buy .one-time.active { border-color: var(--forest-green); background: rgba(228,236,223,0.4); }
.v2-buy .one-time .radio {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1.5px solid var(--forest-12);
  display: grid; place-items: center; background: var(--bg);
}
.v2-buy .one-time.active .radio { border-color: var(--forest-green); }
.v2-buy .one-time.active .radio::after { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--forest-green); }
.v2-buy .one-time .nm { font-weight: 600; font-size: 14.5px; color: var(--fg); letter-spacing: 0.04em; }
.v2-buy .one-time .price { font-family: var(--font-body); font-weight: 600; color: var(--forest-green); font-variant-numeric: tabular-nums; font-size: 16px; }

/* Qty + buy now */
.v2-qty-row {
  display: grid; grid-template-columns: 116px 1fr; gap: 12px;
  margin-bottom: 14px;
}
.v2-qty-row .stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--forest-12);
  border-radius: 8px;
  background: var(--bg);
  overflow: hidden;
}
.v2-qty-row .stepper button {
  width: 38px; height: 100%;
  color: var(--forest-green);
  display: grid; place-items: center;
}
.v2-qty-row .stepper .n {
  flex: 1; text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--forest-green);
}
.v2-qty-row .buy-now {
  background: var(--forest-green);
  color: var(--warm-cream);
  border-radius: 8px;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 220ms var(--ease-out);
}
.v2-qty-row .buy-now:hover { background: var(--forest-dark); }

.v2-buy .fav-row {
  text-align: center;
  margin: 10px 0 14px;
}
.v2-buy .fav-row .fav-title {
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  font-size: 18px; color: var(--forest-green); letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.v2-buy .fav-row .fav-title .stars { color: var(--warm-gold); font-size: 14px; letter-spacing: 1px; }
.v2-buy .fav-row .small {
  font-size: 12px; color: var(--fg-subtle); margin-top: 4px;
}
.v2-plan .plan-head-text { display: flex; flex-direction: column; gap: 2px; }
.v2-plan .plan-sub-cap {
  font-size: 11.5px; color: var(--fg-muted);
  font-weight: 400; letter-spacing: 0.02em;
  text-transform: none;
}
.qty-choices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.qty-choice {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--forest-08);
  border-radius: var(--r-md);
  padding: 14px 8px 14px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
  text-align: center;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.qty-choice:hover { border-color: var(--forest-12); }
.qty-choice.active {
  border-color: var(--forest-green);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15,61,46,0.10);
}
.qty-choice { margin-top: 0; margin-bottom: 10px; }
.qty-choice .qty-img {
  width: 100%; aspect-ratio: 1/1; max-width: 110px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
}
.qty-choice .qty-img img { width: 100%; height: 100%; object-fit: contain; }
.qty-choice .qty-tag {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--warm-gold); color: var(--forest-dark);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}
.qty-choice .qty-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--forest-green);
  letter-spacing: -0.01em; line-height: 1.1;
}
.qty-choice .qty-price {
  font-size: 16px; font-weight: 700; color: var(--forest-green);
  font-variant-numeric: tabular-nums;
}
.qty-choice .qty-per {
  font-size: 11.5px; color: var(--fg-subtle);
}

.v2-buy-now-big {
  display: flex; width: 100%;
  padding: 16px 24px;
  background: var(--forest-green); color: var(--warm-cream) !important;
  text-decoration: none !important;
  border: 0; border-radius: 6px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 16px; letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center; justify-content: space-between;
  margin-top: 14px;
  margin-bottom: 14px;
  transition: background 220ms var(--ease-out), transform 100ms var(--ease-out), box-shadow 220ms var(--ease-out);
  box-shadow: 0 4px 14px rgba(15,61,46,0.18);
  text-align: left;
}
.v2-buy-now-big:hover {
  background: var(--forest-dark);
  color: var(--warm-cream) !important;
  box-shadow: 0 6px 18px rgba(15,61,46,0.24);
}
.v2-buy-now-big:active { transform: translateY(1px); }
.v2-buy-now-big .buy-now-label { font-size: 17px; }
.v2-buy-now-big .buy-now-price {
  font-size: 24px; font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-transform: none;
}
@media (max-width: 540px) {
  .v2-buy-now-big { padding: 18px 22px; font-size: 16px; }
  .v2-buy-now-big .buy-now-price { font-size: 22px; }
}

/* ============================================================
   FEATURE PILLS (4 sage cards in 2x2)
   ============================================================ */
.v2-features {
  background: var(--bg);
  padding: 0 0 24px;
}
.v2-features .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.v2-features .pill {
  background: var(--soft-sage);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center;
}
.v2-features .pill .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(15,61,46,0.10);
  color: var(--forest-green);
  display: grid; place-items: center;
}
.v2-features .pill .nm {
  font-size: 13px; font-weight: 600; color: var(--forest-green);
  letter-spacing: 0.005em;
}


/* Supplement Facts panel — appears inside the Ingredients accordion */
.sup-panel-inline { margin-top: 18px; }
.sup-panel {
  border: 1.5px solid var(--forest-green);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--charcoal);
  margin-top: 4px;
}
.sup-panel-head {
  padding: 14px 16px 12px;
  border-bottom: 5px solid var(--forest-green);
}
.sup-panel-head h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--forest-green);
  margin: 0 0 8px;
}
.sup-panel-head .sup-serving {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--charcoal);
}
.sup-panel-head .sup-serving strong { font-weight: 700; }
.sup-col-head {
  display: flex; justify-content: flex-end; align-items: baseline;
  gap: 18px;
  padding: 8px 16px;
  border-bottom: 2px solid var(--forest-green);
  font-size: 11.5px;
  font-weight: 700;
  text-align: right;
}
.sup-amt-label { color: var(--charcoal); }
.sup-dv-label { color: var(--charcoal); min-width: 34px; }

.sup-blend-row {
  padding: 10px 16px 12px;
  border-bottom: 1px solid var(--forest-12);
}
.sup-blend-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.sup-blend-head .sup-blend-amt {
  font-variant-numeric: tabular-nums;
}
.sup-blend-head .sup-dv {
  color: var(--fg-subtle);
  font-weight: 700;
  margin-left: 8px;
}
.sup-blend-list {
  font-size: 12px;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0;
}
.sup-blend-list em {
  font-style: italic;
  color: var(--fg-muted);
}

.sup-foot {
  padding: 10px 16px 12px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--charcoal);
}
.sup-foot p { margin: 0 0 4px; }
.sup-foot .sup-dv-note { color: var(--fg-muted); font-style: italic; margin-bottom: 6px; }

.sup-allergen {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(212, 162, 76, 0.16);
  border-top: 1px solid rgba(212, 162, 76, 0.4);
  border-radius: 0 0 6px 6px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--charcoal);
}
.sup-allergen-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--warm-gold);
  color: var(--forest-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.sup-allergen strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--forest-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}
.sup-allergen span { color: var(--fg-muted); }

/* ============================================================
   ACCORDION STRIP (Is This For You / Benefits / FAQs)
   ============================================================ */
.v2-acc-strip { padding-top: 18px; }
.v2-acc {
  background: var(--bg);
  border-bottom: 1px solid var(--forest-12);
}
.v2-acc.open { background: var(--bg); }
.v2-acc .q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  color: var(--forest-green);
  text-align: left;
}
.v2-acc .toggle {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid var(--forest-12);
  display: inline-grid; place-items: center;
  color: var(--forest-green);
  transition: transform 220ms var(--ease-out);
}
.v2-acc.open .toggle { transform: rotate(45deg); background: var(--soft-sage); }
.v2-acc .body {
  max-height: 0; overflow: hidden;
  transition: max-height 360ms var(--ease-in-out);
}
.v2-acc.open .body { max-height: 600px; }
.v2-acc .body-inner {
  padding: 4px 4px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.v2-acc .body-inner .sub {
  margin: 12px 0 8px;
  font-weight: 600; color: var(--forest-green);
}
.v2-acc .body-inner ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.v2-acc .body-inner ul li {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px;
}
.v2-acc .body-inner ul li::before {
  content: "•"; color: var(--forest-green); font-weight: 700;
}

/* ============================================================
   ICON MARQUEE STRIP
   ============================================================ */
.v2-icon-strip {
  background: var(--bg-elevated);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--forest-08);
  border-bottom: 1px solid var(--forest-08);
}
.v2-icon-strip .track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: v2-marquee 50s linear infinite;
}
.v2-icon-strip .item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-muted);
  font-family: var(--font-body); font-weight: 500;
  letter-spacing: 0.04em;
}
.v2-icon-strip .item .ic {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--soft-sage); color: var(--forest-green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
@keyframes v2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   REVIEWS — traditional review section (summary + cards)
   ============================================================ */
.v2-quotes {
  background: var(--bg);
  padding: 88px 0;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--forest-12);
}
@media (max-width: 880px) {
  .reviews-header { grid-template-columns: 1fr; gap: 28px; }
}
.reviews-title .eyebrow-small {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--success-green);
  margin-bottom: 10px;
}
.reviews-title h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .reviews-summary { grid-template-columns: 1fr; gap: 18px; }
}
.rs-score .rs-stars-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.rs-score .rs-stars {
  color: var(--warm-gold);
  letter-spacing: 2px;
  font-size: 20px;
}
.rs-score .rs-rating {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest-green);
  letter-spacing: -0.01em;
}
.rs-score .rs-count {
  font-size: 13px;
  color: var(--fg-muted);
}
.rs-score .rs-count strong {
  color: var(--forest-green);
  font-weight: 600;
}

.rs-bars {
  display: flex; flex-direction: column; gap: 6px;
}
.rs-bar {
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.rs-bar .rs-label { letter-spacing: 0.02em; }
.rs-bar .rs-track {
  height: 8px;
  background: var(--forest-08);
  border-radius: 999px;
  overflow: hidden;
}
.rs-bar .rs-fill {
  height: 100%;
  background: var(--warm-gold);
  border-radius: 999px;
}
.rs-bar .rs-pct {
  text-align: right;
  color: var(--fg-subtle);
}

.reviews-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--forest-08);
}
.reviews-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.reviews-filters .rf {
  background: var(--bg-elevated);
  border: 1px solid var(--forest-12);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.reviews-filters .rf:hover { border-color: var(--forest-green); }
.reviews-filters .rf.active {
  background: var(--forest-green);
  color: var(--warm-cream);
  border-color: var(--forest-green);
}
.reviews-sort {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
}
.reviews-sort .rs-sort-label { color: var(--fg-subtle); }
.reviews-sort .rs-sort-value {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600;
  color: var(--forest-green);
  cursor: pointer;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--forest-08);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.review-card:hover {
  border-color: var(--forest-12);
  box-shadow: 0 4px 16px rgba(15, 61, 46, 0.06);
}
.rc-head {
  display: flex; justify-content: space-between; align-items: center;
}
.rc-stars {
  color: var(--warm-gold);
  letter-spacing: 1.5px;
  font-size: 14px;
}
.rc-stars .rc-star-empty {
  color: var(--forest-12);
  letter-spacing: inherit;
}
.rc-date {
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.01em;
}
.rc-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--forest-green);
  letter-spacing: -0.005em;
  margin: 0;
}
.rc-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
  flex: 1;
}
.rc-foot {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--forest-08);
}
.rc-avatar {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--soft-sage);
  color: var(--forest-green);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.rc-by {
  display: flex; flex-direction: column; gap: 1px;
}
.rc-by strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.rc-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--success-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-more {
  margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.reviews-more .rm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--forest-green);
  border: 1.5px solid var(--forest-green);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}
.reviews-more .rm-btn:hover {
  background: var(--forest-green);
  color: var(--warm-cream);
}
.reviews-more .rm-count {
  font-size: 12px;
  color: var(--fg-subtle);
}


/* ============================================================
   SAGE FEATURE PILLS — 4-card row
   ============================================================ */
.v2-feature-row {
  background: var(--bg);
  padding: 40px 0;
}
.v2-feature-row .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 880px) { .v2-feature-row .grid { grid-template-columns: 1fr 1fr; } }
.v2-feature-row .card {
  background: var(--soft-sage);
  border-radius: var(--r-md);
  padding: 22px 22px;
}
.v2-feature-row .card .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(15,61,46,0.12);
  color: var(--forest-green);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.v2-feature-row .card .nm {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 6px;
}
.v2-feature-row .card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================================
   BOTTLE FEATURE — GIF + copy on cream page background
   (replaces the old forest-green DARK PANEL section)
   ============================================================ */
.v2-bottle-feature {
  background: #F1ECE2;
  padding: 80px 0;
}
.v2-bottle-feature .bf-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .v2-bottle-feature .bf-grid { grid-template-columns: 1fr; gap: 32px; }
}
.v2-bottle-feature .bf-photo {
  aspect-ratio: 3/4;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.v2-bottle-feature .bf-photo img,
.v2-bottle-feature .bf-photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.v2-bottle-feature .bf-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--success-green);
  margin-bottom: 16px;
}
.v2-bottle-feature .bf-h-accent {
  color: var(--success-green);
  font-style: italic;
}
.v2-bottle-feature .bf-copy h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.v2-bottle-feature .bf-copy p + p { margin-top: 14px; }
.v2-bottle-feature .bf-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
  max-width: 60ch;
}
/* ============================================================
   PROBLEM SECTION v3 — laxative-recognition narrative
   Audience: 50+, came from a "why laxatives stopped working" ad
   ============================================================ */
.v2-problem {
  background: var(--soft-sage);
  padding: 0;
}
.v2-problem > div {
  padding: 96px 0;
}
.v2-problem > div + div {
  border-top: 1px solid rgba(15, 61, 46, 0.08);
}

/* Shared eyebrow style */
.px-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sale-red);
  margin-bottom: 16px;
}
.px-eyebrow.muted { color: var(--fg-subtle); }

/* Shared h2 style */
.px-h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 22ch;
}
.px-h2-wide {
  max-width: none;
  text-wrap: nowrap;
  font-size: clamp(26px, 3.4vw, 44px);
}
@media (max-width: 880px) {
  .px-h2-wide { text-wrap: balance; }
}
.px-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 56ch;
  margin: 0;
}

/* ---------- 1. RECOGNITION ---------- */
.px-recognition {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}
.px-recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .px-recognition-grid { grid-template-columns: 1fr; gap: 32px; }
}
.px-headline {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--forest-green);
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 18ch;
}
.px-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
  max-width: 50ch;
}
.px-recognition-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--sage-200);
}

/* ---------- 3. WHAT A LAXATIVE DOES vs WHAT YOUR GUT NEEDS ---------- */
.px-compare-section {
  background: var(--soft-sage);
}
.px-compare-section .px-ladder-head {
  margin-bottom: 48px;
}
.px-compare-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .px-compare-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .px-compare-divider { display: none; }
}
.px-compare-col {
  background: var(--bg);
  border: 1px solid var(--sage-200);
  border-radius: var(--r-xl);
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.px-compare-col.laxative {
  background: rgba(181, 58, 44, 0.04);
  border-color: rgba(181, 58, 44, 0.18);
}
.px-compare-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.px-compare-col.laxative .px-compare-label { color: var(--sale-red); }
.px-compare-col.gut .px-compare-label { color: var(--success-green); }

.px-compare-illust {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--forest-08);
  line-height: 0;
}
.px-compare-illust img { width: 100%; height: 100%; object-fit: cover; display: block; }
.px-compare-col.gut .px-compare-illust {
  background: var(--soft-sage);
  border-color: var(--sage-200);
}

.px-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.px-compare-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.px-compare-col.laxative .px-compare-list li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--sale-red);
  font-weight: 700;
}
.px-compare-col.gut .px-compare-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--success-green);
  font-weight: 700;
}

.px-compare-divider {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.px-compare-divider::before {
  content: "";
  width: 1px;
  height: 60%;
  background: var(--forest-12);
}

/* ---------- 4. STAKES ---------- */
.px-stakes-section {
  background: var(--bg);
}
.px-stakes-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .px-stakes-grid { grid-template-columns: 1fr; gap: 28px; }
}
.px-stakes-photo {
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--soft-sage);
  border: 1px solid var(--sage-200);
}
.px-stakes-h {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-green);
  margin: 0 0 16px;
  text-wrap: balance;
  max-width: 22ch;
}
.px-stakes-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
  max-width: 52ch;
}

/* ---------- 5. THE TURN — warm pivot to Veradine ---------- */
.px-turn-section {
  background: var(--warm-cream);
}
.px-turn-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .px-turn-grid { grid-template-columns: 1fr; gap: 32px; }
}
.px-turn-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--sage-200);
}
.px-turn-badge {
  display: inline-block;
  background: var(--forest-green);
  color: var(--warm-cream);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.px-turn-h {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 18ch;
}
.px-turn-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0 0 14px;
  max-width: 50ch;
}
.px-turn-p + .px-turn-p { margin-top: 0; }
.px-turn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms var(--ease-out);
}
.px-turn-cta:hover { background: var(--forest-dark); color: var(--warm-cream); }

@media (max-width: 720px) {
  .v2-problem > div { padding: 64px 0; }
  .px-compare-col { padding: 24px 22px; }
  .px-compare-list li { font-size: 14px; }
  .px-headline { font-size: 38px; }
}


/* ============================================================
   60-DAY CALENDAR (timeline + guarantee combo)
   ============================================================ */
.v2-timeline { background: var(--bg); padding: 96px 0; }
.v2-timeline .head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.v2-timeline .head .eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--warm-gold); color: var(--forest-dark);
  padding: 7px 14px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.v2-timeline .head h2 { font-size: clamp(36px, 4.6vw, 60px); margin: 0 0 14px; font-weight: 700; }
.v2-timeline .items .item h3 { font-weight: 700; }
.v2-timeline .items .item .chip {
  display: inline-flex; align-items: center;
  background: var(--forest-green, #0F3D2E); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.v2-timeline .head .small { font-size: 16px; line-height: 1.55; color: var(--fg-muted); max-width: 56ch; margin: 0 auto; }

.v2-timeline .layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.v2-timeline .layout .items {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex; flex-direction: column; gap: 18px;
}
@media (max-width: 880px) {
  .v2-timeline .layout { grid-template-columns: 1fr; gap: 32px; }
  .v2-timeline .layout .items { position: static; }
}



.kitchen-bottle {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sage-200);
  background: var(--bg);
  line-height: 0;
  margin-bottom: 32px;
}
.kitchen-bottle img { width: 100%; height: auto; display: block; }

.bottle-in-hand {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sage-200);
  background: var(--bg);
  line-height: 0;
  aspect-ratio: 3/4;
}
.bottle-in-hand img { width: 100%; height: 100%; object-fit: cover; display: block; }

.v2-cal {
  background: var(--soft-sage);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  position: relative;
}
.v2-cal-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.v2-cal-header .l {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--forest-green);
}
.v2-cal-header .r {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest-green); font-weight: 600; opacity: 0.7;
}
.v2-cal-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 7px;
}
.v2-cal-cell {
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.10);
  position: relative;
  transition: transform 220ms var(--ease-out);
}
.v2-cal-cell.start { background: #C8B57A; }
.v2-cal-cell.early { background: #9BAF87; }
.v2-cal-cell.mid { background: var(--success-green); }
.v2-cal-cell.end {
  background: var(--forest-green);
  box-shadow: 0 0 0 3px var(--warm-gold), 0 0 0 4px rgba(15, 61, 46, 0.10);
}
.v2-cal-cell .lbl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px; font-weight: 700;
  color: var(--warm-cream);
  letter-spacing: 0;
}
.v2-cal-legend {
  margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  font-size: 12.5px;
}
.v2-cal-legend .item {
  display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: center;
  color: var(--fg);
}
.v2-cal-legend .dot { width: 14px; height: 14px; border-radius: 999px; }
.v2-cal-legend .dot.start { background: #C8B57A; }
.v2-cal-legend .dot.early { background: #9BAF87; }
.v2-cal-legend .dot.mid { background: var(--success-green); }
.v2-cal-legend .dot.end { background: var(--forest-green); box-shadow: 0 0 0 2px var(--warm-gold); }

.v2-day60-callout {
  margin-top: 24px;
  background: var(--forest-green);
  color: var(--warm-cream);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  position: relative;
  overflow: hidden;
}
.v2-day60-callout::before {
  content: "DAY 60";
  position: absolute;
  top: 12px; right: -10px;
  background: var(--warm-gold);
  color: var(--forest-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(4deg);
}
.v2-day60-callout h3 {
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: 28px; line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--warm-cream);
  margin: 0 0 10px;
  max-width: 22ch;
}
.v2-day60-callout p {
  font-size: 14px; line-height: 1.55;
  color: var(--warm-cream); opacity: 0.85;
  margin: 0;
  max-width: 48ch;
}
.v2-day60-callout .steps {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.v2-day60-callout .step {
  display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: center;
  font-size: 13.5px;
  color: var(--warm-cream);
}
.v2-day60-callout .step .n {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--warm-gold); color: var(--forest-dark);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.v2-timeline-cta {
  margin-top: 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.v2-timeline-cta .btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest-green); color: var(--warm-cream);
  padding: 16px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
}
.v2-timeline-cta .btn:hover { background: var(--forest-dark); color: var(--warm-cream); }
.v2-timeline-cta .reassure {
  font-size: 13px; color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.v2-timeline-cta .reassure .tick {
  color: var(--success-green); font-weight: 700;
}


}
.v2-stats .stat {
  text-align: center;
  padding: 0 12px;
}
.v2-stats .stat-n {
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--warm-cream);
  position: relative;
  display: inline-flex; align-items: baseline;
}
.v2-stats .stat-n .unit {
  font-size: 0.32em;
  letter-spacing: 0.04em;
  margin-left: 6px;
  text-transform: lowercase;
  font-style: normal;
  font-weight: 600;
  opacity: 0.7;
  font-family: var(--font-body);
}
.v2-stats .stat-l {
  margin-top: 18px;
  font-size: 16px; line-height: 1.5;
  color: var(--warm-cream);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.v2-stats .stat-l span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}
.v2-stats .stat-divider {
  width: 1px; height: 120px;
  background: rgba(245, 241, 232, 0.16);
  align-self: center;
}

/* ============================================================
   ASSERTION MARQUEE — between stats and ingredients
   ============================================================ */
.v2-assert-marquee {
  background: var(--bg);
  border-top: 1px solid var(--forest-08);
  border-bottom: 1px solid var(--forest-08);
  padding: 22px 0;
  overflow: hidden;
}
.v2-assert-marquee .track {
  display: inline-flex; gap: 48px;
  white-space: nowrap;
  animation: v2-assert-marquee 45s linear infinite;
}
.v2-assert-marquee .item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest-green);
}
.v2-assert-marquee .item .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--soft-sage);
  color: var(--forest-green);
}
@keyframes v2-assert-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   30 INGREDIENTS — accordion blends + powder visual left
   ============================================================ */
.v2-ingredients {
  background: var(--bg);
  padding: 88px 0;
}
.v2-ingredients .head { text-align: center; margin-bottom: 48px; }
.v2-ingredients .head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0;
}
.v2-ingredients .layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start;
}
@media (max-width: 880px) { .v2-ingredients .layout { grid-template-columns: 1fr; } }


.ingredients-flatlay {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sage-200);
  background: var(--bg);
  line-height: 0;
  position: sticky;
  top: 100px;
}
.ingredients-flatlay img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) { .ingredients-flatlay { position: static; } }


/* Visual ingredient grid — replaces the old 3-blend accordion */
.v2-ingredients .layout { display: block; }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) { .ing-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }
@media (max-width: 600px) { .ing-grid { grid-template-columns: 1fr; gap: 28px; max-width: 360px; } .ing-card { padding: 0; } .ing-card-img { width: 180px; height: 180px; } .ing-card-desc { max-width: 30ch; } }

.ing-card {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 12px 0;
}
.ing-card-img {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--soft-sage);
  border: 1.5px solid var(--charcoal);
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  position: relative;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.ing-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ing-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ing-card-img .ph-desc { font-size: 12px; padding: 0 14px; line-height: 1.4; text-align: center; }
.ing-card-img .ph-sub { display: none; }

.ing-card-layer {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--success-green);
  margin-bottom: 6px;
}

.ing-card-name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-green);
  margin: 0 0 4px;
}

.ing-card-latin {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--fg-subtle);
  margin-bottom: 10px;
}

.ing-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  max-width: 28ch;
}

/* Extras below the grid */
.ing-extras {
  max-width: 1080px;
  margin: 64px auto 0;
}

.v2-powder-stack { display: flex; flex-direction: column; gap: 14px; }
.v2-powder-img {
  background: var(--soft-sage);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.v2-powder-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-powder-img .stamp {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(15, 61, 46, 0.92);
  color: var(--warm-cream);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 22px;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(-4deg);
}
.v2-powder-img.small { aspect-ratio: 16/10; }

.v2-blend-list {
  display: flex; flex-direction: column;
}
.v2-blend {
  border-top: 1px solid var(--forest-12);
}
.v2-blend:last-child { border-bottom: 1px solid var(--forest-12); }
.v2-blend .head-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px;
  cursor: pointer;
}
.v2-blend .name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17.5px;
  color: var(--forest-green);
}
.v2-blend .name .desc {
  display: block;
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0;
}
.v2-blend .toggle {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--forest-12);
  display: inline-grid; place-items: center;
  color: var(--forest-green);
  transition: transform 220ms var(--ease-out);
  flex-shrink: 0;
}
.v2-blend.open .toggle { transform: rotate(45deg); background: var(--soft-sage); }
.v2-blend .body {
  max-height: 0; overflow: hidden;
  transition: max-height 360ms var(--ease-in-out);
}
.v2-blend.open .body { max-height: 600px; }
.v2-blend .body-inner {
  padding: 0 4px 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.v2-blend .body-inner .ing {
  display: grid; grid-template-columns: 16px 1fr; gap: 8px;
  font-size: 13.5px; color: var(--fg);
}
.v2-blend .body-inner .ing .t { color: var(--success-green); }
.v2-blend .body-inner .ing em { color: var(--fg-subtle); font-style: normal; font-size: 12.5px; }

/* 12 pill chips row */
.v2-clean-chips {
  margin-top: 28px;
  background: var(--soft-sage);
  border-radius: var(--r-md);
  padding: 22px 22px;
}
.v2-clean-chips .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
}
@media (max-width: 720px) { .v2-clean-chips .grid { grid-template-columns: 1fr 1fr; } }
.v2-clean-chips .chip {
  display: grid; grid-template-columns: 18px 1fr; gap: 8px;
  font-size: 12.5px; color: var(--forest-green);
  font-weight: 500;
  align-items: center;
}
.v2-clean-chips .chip .t { color: var(--success-green); }

/* ============================================================
   COMPARE — Veradine is / Veradine is not (two clear columns)
   ============================================================ */
.v2-compare {
  background: var(--bg-elevated);
  padding: 96px 0;
}
.v2-compare-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.v2-compare .head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.v2-compare .head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 14px;
  text-wrap: balance;
}
.v2-compare .head p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.v2-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .v2-compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
  background: var(--bg);
  border: 1px solid var(--forest-08);
  border-radius: var(--r-xl);
  padding: 32px 32px 36px;
}
.compare-col.is {
  background: rgba(228, 236, 223, 0.45);
  border-color: var(--sage-200);
}
.compare-col.not {
  background: var(--bg);
}
.compare-col-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--forest-08);
}
.compare-col-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.compare-col.is .compare-col-tag { color: var(--success-green); }
.compare-col.not .compare-col-tag { color: var(--fg-subtle); }
.compare-col-h {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
.compare-col.is .compare-col-h { color: var(--forest-green); }
.compare-col.not .compare-col-h { color: var(--fg-subtle); }
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
}
.compare-col.is .compare-list li { color: var(--fg); font-weight: 500; }
.compare-col.not .compare-list li { color: var(--fg-muted); }
.compare-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-icon.yes {
  background: var(--success-green);
  color: var(--warm-cream);
}
.compare-icon.no {
  background: transparent;
  border: 1.5px solid var(--cream-300);
  color: var(--fg-subtle);
}


/* ============================================================
   EXPERTS SECTION
   ============================================================ */
.v2-experts {
  background: var(--bg);
  padding: 96px 0;
}
.v2-experts .head {
  text-align: center; margin-bottom: 56px;
}
.v2-experts .head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0;
}
.v2-experts .layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px) { .v2-experts .layout { grid-template-columns: 1fr; } }

.v2-portrait {
  aspect-ratio: 3/4;
  background: var(--soft-sage);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  display: grid; place-items: center;
}
.v2-portrait .glyph {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 120px;
  color: rgba(15,61,46,0.20);
  letter-spacing: -0.04em;
}
.v2-portrait::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 32%;
  background: linear-gradient(to top, rgba(15,61,46,0.18), transparent);
}

.v2-experts .center-card {
  padding: 16px 8px;
}
.v2-experts .quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 18px;
}
.v2-experts .quote strong { color: var(--forest-green); font-weight: 600; }
.v2-experts .name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 22px;
  color: var(--forest-green);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.v2-experts .tabs {
  background: var(--soft-sage);
  border-radius: var(--r-md);
  padding: 6px;
  display: inline-grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 14px;
}
.v2-experts .tab {
  padding: 8px 16px;
  font-size: 12.5px; font-weight: 500;
  color: var(--forest-green);
  border-radius: 6px;
  cursor: pointer;
}
.v2-experts .tab.active { background: var(--bg); }
.v2-experts .small {
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.v2-experts .small .lbl {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--forest-green);
  font-weight: 600;
  margin-bottom: 4px;
}
.v2-experts .dots {
  margin-top: 24px;
  display: flex; gap: 8px; justify-content: center;
}
.v2-experts .dots span {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--forest-12);
}
.v2-experts .dots span.active { background: var(--forest-green); }

/* ============================================================
   GUARANTEE BAR
   ============================================================ */
.v2-guarantee {
  background: var(--soft-sage);
  padding: 72px 0;
}
.v2-guarantee .inner {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 720px) {
  .v2-guarantee .inner { grid-template-columns: 1fr; text-align: center; }
}
.v2-guarantee .seal {
  width: 152px; height: 152px;
  border-radius: 999px;
  background: var(--warm-gold);
  color: var(--forest-dark);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 720px) { .v2-guarantee .seal { margin: 0 auto; } }
.v2-guarantee .seal-text {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  padding: 14px;
}
.v2-guarantee .seal-text strong {
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  font-size: 26px;
  display: block; line-height: 1;
  margin-bottom: 4px;
}
.v2-guarantee h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 12px;
  max-width: 22ch;
}
.v2-guarantee p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 18px;
  max-width: 56ch;
}
.v2-guarantee .buy-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
}
.v2-guarantee .buy-pill:hover { background: var(--forest-dark); color: var(--warm-cream); }

/* ============================================================
   KIT CARDS — Subscription + Welcome
   ============================================================ */
.v2-kits {
  background: var(--bg);
  padding: 96px 0;
}
.v2-kits .head { text-align: center; margin-bottom: 48px; }
.v2-kits .head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0;
}
.v2-kits .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .v2-kits .grid { grid-template-columns: 1fr; } }

.v2-kit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--forest-08);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 720px) { .v2-kit-card { grid-template-columns: 1fr; } }
.v2-kit-card .photo {
  background: var(--soft-sage);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.v2-kit-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.v2-kit-card .body {
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.v2-kit-card h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest-green);
  margin: 0;
}
.v2-kit-card .intro {
  font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); margin: 0;
}
.v2-kit-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--forest-08);
  padding-top: 16px;
}
.v2-kit-card ul li {
  display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center;
}
.v2-kit-card ul li .ic {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 1px solid var(--forest-08);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--forest-green);
}
.v2-kit-card ul li .nm {
  font-size: 13.5px; font-weight: 600; color: var(--forest-green);
  letter-spacing: 0.005em;
}
.v2-kit-card ul li .sub {
  font-size: 12px; color: var(--fg-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ============================================================
   MINI FOOTER (links bar)
   ============================================================ */
.v2-mini-footer {
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 36px 0;
  text-align: center;
}
.v2-mini-footer .links {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px;
}
.v2-mini-footer .links a {
  color: var(--warm-cream); text-decoration: none; opacity: 0.85;
}
.v2-mini-footer .social {
  display: flex; gap: 12px; justify-content: center;
  margin: 28px 0 18px;
}
.v2-mini-footer .social a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(245,241,232,0.3);
  display: grid; place-items: center;
  color: var(--warm-cream);
  opacity: 0.85;
}
.v2-mini-footer .copy {
  font-size: 12px; opacity: 0.6;
  letter-spacing: 0.04em;
}



/* ============================================================
   IMAGE PLACEHOLDERS — replace with real photos
   ============================================================ */
.img-ph {
  background: var(--soft-sage);
  border: 1px dashed rgba(15, 61, 46, 0.25);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  text-align: center;
  position: relative;
  color: var(--forest-green);
  padding: 32px 28px;
  overflow: hidden;
}
.img-ph::before {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  top: 12px; left: 14px;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--forest-green);
  opacity: 0.45;
}
.img-ph .ph-desc {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--forest-green);
  opacity: 0.75;
  max-width: 32ch;
}
.img-ph .ph-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--forest-green);
  opacity: 0.55;
  margin-top: 8px;
}
.img-ph.landscape { aspect-ratio: 16/9; }
.img-ph.banner    { aspect-ratio: 3/1; }
.img-ph.portrait  { aspect-ratio: 4/5; }
.img-ph.square    { aspect-ratio: 1/1; }
.img-ph.wide      { aspect-ratio: 21/9; }
.img-ph.tall      { aspect-ratio: 3/4; }

/* ============================================================
   FINAL OFFER SECTION (last before footer)
   ============================================================ */
.v2-final-offer {
  background: var(--soft-sage);
  padding: 96px 0;
}
.v2-final-offer .offer-card {
  max-width: 880px; margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  text-align: center;
  border: 1px solid var(--sage-200);
  box-shadow: 0 24px 56px rgba(15, 61, 46, 0.10);
}
@media (max-width: 720px) {
  .v2-final-offer .offer-card { padding: 40px 24px; }
}
.v2-final-offer .offer-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--success-green);
  margin-bottom: 16px;
}
.v2-final-offer h2 {
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 24ch;
  margin-left: auto; margin-right: auto;
}
.v2-final-offer .offer-lede {
  font-size: 16.5px; line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 auto 40px;
  max-width: 58ch;
}
.v2-final-offer .offer-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 720px) { .v2-final-offer .offer-options { grid-template-columns: 1fr; } }
.v2-final-offer .offer-opt {
  background: var(--bg-elevated);
  border: 2px solid var(--forest-08);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
}
.v2-final-offer .offer-opt.featured {
  border-color: var(--forest-green);
  background: var(--bg);
}
.v2-final-offer .opt-ribbon {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--warm-gold); color: var(--forest-dark);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}
.v2-final-offer .opt-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
}
.v2-final-offer .opt-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--forest-green);
}
.v2-final-offer .opt-meta {
  font-size: 12.5px; color: var(--fg-muted); margin-top: 4px;
  line-height: 1.4;
}
.v2-final-offer .opt-price { text-align: right; flex-shrink: 0; }
.v2-final-offer .opt-price .strike {
  display: block;
  font-size: 13px; color: var(--fg-subtle);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.v2-final-offer .opt-price .now {
  font-family: var(--font-display); font-weight: 600;
  font-size: 28px; line-height: 1;
  color: var(--forest-green);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.v2-final-offer .opt-price .per {
  font-size: 11px; color: var(--fg-subtle);
  display: block; margin-top: 2px;
}
.v2-final-offer .offer-cta {
  margin-bottom: 24px;
  text-decoration: none;

  justify-content: center;
  text-align: center;
}
.v2-final-offer .offer-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 28px;
  font-size: 12.5px; color: var(--fg-muted);
  padding-top: 24px;
  border-top: 1px solid var(--forest-08);
}
.v2-final-offer .offer-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg);
  font-weight: 500;
}
.v2-final-offer .offer-trust svg { color: var(--success-green); }



.v2-final-offer .offer-scenarios {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 36px;
}
@media (max-width: 720px) {
  .v2-final-offer .offer-scenarios { grid-template-columns: 1fr; }
  .v2-final-offer .scenario-vs { transform: rotate(0); padding: 12px 0; }
}
.v2-final-offer .scenario {
  background: var(--bg-elevated);
  border: 1px solid var(--forest-08);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.v2-final-offer .scenario.works {
  background: rgba(228, 236, 223, 0.45);
  border-color: var(--success-green);
}
.v2-final-offer .scenario.refund {
  background: rgba(212, 162, 76, 0.10);
  border-color: var(--warm-gold);
}
.v2-final-offer .scenario-badge {
  display: inline-flex; align-self: flex-start;
  background: var(--forest-green); color: var(--warm-cream);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.v2-final-offer .scenario-badge.alt {
  background: var(--warm-gold); color: var(--forest-dark);
}
.v2-final-offer .scenario h3 {
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-green);
  margin: 0;
}
.v2-final-offer .scenario p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--fg-muted); margin: 0;
  flex: 1;
}
.v2-final-offer .scenario-outcome {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em;
  color: var(--forest-green);
  padding-top: 14px;
  border-top: 1px solid rgba(15, 61, 46, 0.12);
  margin-top: auto;
}
.v2-final-offer .scenario-outcome svg { color: var(--success-green); flex-shrink: 0; }
.v2-final-offer .scenario.refund .scenario-outcome svg { color: var(--warm-gold); }
.v2-final-offer .scenario-vs {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: 22px; letter-spacing: 0.08em;
  color: var(--forest-green); opacity: 0.6;
}
.v2-final-offer .scenario-vs span {
  background: var(--bg);
  border: 1px solid var(--forest-12);
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px; letter-spacing: 0.12em;
}
.v2-final-offer .offer-conclusion {
  background: var(--soft-sage);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  font-family: var(--font-display);
  font-style: normal; font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--forest-green);
  margin-bottom: 28px;
  text-wrap: balance;
}


/* ============================================================
   FAQ — comprehensive Q&A section, last before the footer
   ============================================================ */
.v2-faq {
  background: var(--bg);
  padding: 96px 0 88px;
  scroll-margin-top: 84px;
}
.v2-faq .faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.v2-faq .faq-head .eyebrow-small {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--success-green);
  margin-bottom: 12px;
}
.v2-faq .faq-head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--forest-green);
  margin: 0 0 14px;
}
.v2-faq .faq-head p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.v2-faq .faq-head a {
  color: var(--forest-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-faq .faq-categories {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.v2-faq .faq-category {
  border-top: 1px solid var(--forest-12);
  padding-top: 22px;
}
.v2-faq .faq-cat-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--success-green);
  margin: 0 0 14px;
}
.v2-faq .faq-items {
  display: flex;
  flex-direction: column;
}
.v2-faq .faq-item {
  border-bottom: 1px solid var(--forest-08);
}
.v2-faq .faq-item:first-child {
  border-top: 1px solid var(--forest-08);
}
.v2-faq .faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  user-select: none;
}
.v2-faq .faq-q::-webkit-details-marker { display: none; }
.v2-faq .faq-q-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: var(--forest-green);
  letter-spacing: -0.005em;
  flex: 1;
}
.v2-faq .faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1.5px solid var(--forest-12);
  display: inline-grid;
  place-items: center;
  color: var(--forest-green);
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 280ms var(--ease-out), background 220ms var(--ease-out);
}
.v2-faq .faq-item[open] .faq-q-icon {
  transform: rotate(45deg);
  background: var(--soft-sage);
  border-color: var(--forest-green);
}
.v2-faq .faq-a {
  padding: 0 56px 22px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.v2-faq .faq-still {
  margin-top: 56px;
  padding: 36px 24px;
  background: var(--soft-sage);
  border-radius: var(--r-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.v2-faq .faq-still p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--forest-green);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.v2-faq .faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-green);
  color: var(--warm-cream);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.v2-faq .faq-contact:hover {
  background: var(--forest-dark);
  color: var(--warm-cream);
}

@media (max-width: 720px) {
  .v2-faq { padding: 72px 0; }
  .v2-faq .faq-a { padding-right: 0; }
}

/* ============================================================
   FOOTER (full)
   ============================================================ */
.v2-footer {
  background: var(--forest-dark);
  color: var(--warm-cream);
  padding: 64px 0 32px;
}
.v2-footer .top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .v2-footer .top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .v2-footer .top { grid-template-columns: 1fr; } }
.v2-footer .wordmark { margin-bottom: 14px; }
.v2-footer .wordmark-img { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }
.v2-footer .tag { font-size: 14px; line-height: 1.55; color: var(--warm-cream); opacity: 0.85; margin: 0 0 18px; max-width: 32ch; }
.v2-footer .contact {
  display: block; color: var(--warm-cream); opacity: 0.7;
  text-decoration: none; font-size: 13.5px; margin: 4px 0;
}
.v2-footer h4 {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; opacity: 0.55;
  margin: 0 0 18px;
}
.v2-footer .links { display: flex; flex-direction: column; gap: 10px; }
.v2-footer .links a {
  color: var(--warm-cream); opacity: 0.8; text-decoration: none; font-size: 13.5px;
}
.v2-footer .baseline {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(245,241,232,0.16);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; opacity: 0.55;
}
.v2-footer .fine {
  margin-top: 14px;
  font-size: 11px; line-height: 1.55; opacity: 0.4; max-width: 820px;
}
/* ============================================================
   MOBILE OPTIMIZATION — comprehensive viewport-down adjustments
   Applies on top of section-level breakpoints
   ============================================================ */
@media (max-width: 720px) {
  /* Global section padding reduction */
  section { padding: 56px 0 !important; }
  .v2-hero { padding: 10px 0 40px !important; }
  .v2-faq { padding: 56px 0 !important; }

  /* Container side padding */
  .v2-container, .v2-narrow { padding: 0 18px; }

  /* Hero — buy box tightens */
  .v2-hero .gallery { position: static; }
  .v2-buy h1 { font-size: 44px; }
  .v2-buy .desc { font-size: 14.5px; }
  .v2-buy .benefits-grid { gap: 8px 14px; }
  .v2-buy .benefits-grid .b { font-size: 13px; }

  /* Hero plan cards */
  .v2-plan .plan-head { padding: 14px 14px; gap: 10px; }
  .v2-plan .nm { font-size: 13px; letter-spacing: 0.03em; }
  .v2-plan .price { font-size: 15px; }
  .v2-plan .body { padding: 0 14px 14px; }
  .v2-plan .body ul li { font-size: 13px; }
  .v2-buy .one-time { padding: 14px; gap: 10px; }
  .v2-buy .one-time .nm { font-size: 13px; }

  /* Qty choices — stack as 3 horizontal rows on mobile (image | text | price) */
  .qty-choices {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .qty-choice {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    grid-template-areas:
      "img label price"
      "img per   price";
    column-gap: 16px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 16px 18px;
    min-height: 0;
  }
  .qty-choice .qty-img {
    grid-area: img;
    width: 76px; max-width: 76px;
    margin: 0;
  }
  .qty-choice .qty-label {
    grid-area: label;
    align-self: end;
    font-size: 19px;
  }
  .qty-choice .qty-per {
    grid-area: per;
    align-self: start;
    font-size: 13px;
  }
  .qty-choice .qty-price {
    grid-area: price;
    font-size: 22px;
    align-self: center;
    white-space: nowrap;
  }
  .qty-choice { padding-top: 22px; }
  .qty-choice .qty-tag {
    top: -10px;
    left: auto;
    right: 14px;
    transform: none;
    font-size: 10.5px;
    padding: 4px 10px;
    letter-spacing: 0.08em;
  }

  /* Big buy button */
  .v2-buy-now-big { padding: 14px 18px; }
  .v2-buy-now-big .buy-now-label { font-size: 14px; letter-spacing: 0.06em; }
  .v2-buy-now-big .buy-now-price { font-size: 18px; }

  /* Hide secondary in-page CTAs on mobile — sticky CTA is the only path */
  .v2-timeline-cta,
  .v2-final-offer .offer-cta,
  .px-turn-cta { display: none !important; }

  /* Header */
  .v2-header .row { height: 64px; }
  .v2-header .wordmark-img { height: 30px; }
  /* Problem section v3 — mobile tweaks */
  .px-recognition { padding: 56px 0 !important; }

  /* Stats marquee — keep scrolling, smaller items */
  .v2-icon-strip { padding: 16px 0; }
  .v2-icon-strip .item { font-size: 12px; gap: 8px; }
  .v2-icon-strip .track { gap: 28px; }
  .v2-assert-marquee { padding: 16px 0; }
  .v2-assert-marquee .item { font-size: 12.5px; gap: 8px; }
  .v2-assert-marquee .track { gap: 28px; }
  .v2-assert-marquee .item .ic { width: 24px; height: 24px; }

  /* Reviews */
  .reviews-header { padding-bottom: 24px; margin-bottom: 28px; }
  .reviews-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-filters { width: 100%; overflow-x: visible; flex-wrap: wrap; gap: 8px; padding-bottom: 0; }
  .reviews-filters .rf { white-space: nowrap; flex-shrink: 0; }
  .review-card { padding: 22px 20px; }

  /* Ingredients grid — smaller circles on mobile */
  .ing-card-img { width: 140px; height: 140px; }
  .ing-card-name { font-size: 24px; }
  .ing-card-desc { font-size: 13.5px; }
  .v2-clean-chips { padding: 18px; }
  .v2-clean-chips .chip { font-size: 12px; }
  .ing-extras { margin-top: 48px; }

  /* Supplement panel — keep dense layout */
  .sup-panel-head { padding: 12px 14px; }
  .sup-panel-head h4 { font-size: 20px; }
  .sup-col-head, .sup-blend-row, .sup-foot, .sup-allergen { padding-left: 14px; padding-right: 14px; }

  /* Timeline */
  .v2-timeline { padding: 64px 0; }
  .v2-timeline .head h2 { font-size: 32px; }
  .v2-cal { padding: 22px 20px; }
  .v2-cal-grid { gap: 4px; }
  .v2-cal-cell .lbl { font-size: 8px; }
  .v2-day60-callout { padding: 22px 20px; }
  .v2-day60-callout h3 { font-size: 18px; }
  .v2-day60-callout .step { font-size: 13.5px; }
  .v2-timeline-cta .btn { padding: 14px 24px; font-size: 13px; }
  .v2-timeline-cta .reassure { font-size: 12px; text-align: center; max-width: 90%; }

  /* Compare */
  .v2-compare { padding: 56px 0; }
  .compare-col { padding: 24px 20px 26px; }
  .compare-col-h { font-size: 24px; }
  .compare-list li { font-size: 14px; gap: 10px; grid-template-columns: 22px 1fr; }
  .compare-icon { width: 22px; height: 22px; }

  /* Guarantee */
  .v2-guarantee { padding: 48px 0; }
  .v2-guarantee h2 { font-size: 24px; }
  .v2-guarantee p { font-size: 13.5px; }

  /* Final offer */
  .v2-final-offer { padding: 56px 0; }
  .v2-final-offer .offer-card { padding: 32px 20px; }
  .v2-final-offer h2 { font-size: 28px; }
  .v2-final-offer .offer-lede { font-size: 14.5px; margin-bottom: 28px; }
  .v2-final-offer .offer-opt { padding: 18px; }
  .v2-final-offer .opt-tag { font-size: 12px; }
  .v2-final-offer .opt-price .now { font-size: 22px; }
  .v2-final-offer .offer-trust { gap: 12px 18px; font-size: 12px; }

  /* FAQ */
  .v2-faq .faq-categories { gap: 36px; }
  .v2-faq .faq-q { padding: 18px 0; gap: 16px; }
  .v2-faq .faq-q-text { font-size: 15px; line-height: 1.35; }
  .v2-faq .faq-q-icon { width: 28px; height: 28px; }
  .v2-faq .faq-a { font-size: 14px; padding-right: 0; padding-bottom: 18px; }
  .v2-faq .faq-still { padding: 28px 20px; margin-top: 40px; }
  .v2-faq .faq-still p { font-size: 18px; }

  /* Bottle feature GIF section */
  .v2-bottle-feature { padding: 48px 0; }
  .v2-bottle-feature .bf-photo { max-width: 320px; }
  .v2-bottle-feature .bf-copy h2 { font-size: 36px; margin-bottom: 18px; }
  .v2-bottle-feature .bf-copy p { font-size: 14.5px; }

  /* Footer */
  .v2-footer { padding: 48px 0 28px; }

  /* Headings everywhere — tighten */
  .v2-quotes-head h2 { font-size: 26px; }
  .reviews-title h2 { font-size: 28px; }
  .v2-ingredients .head h2 { font-size: 28px; }
  .v2-compare .head h2 { font-size: 26px; }

  /* Promo banner stacks tighter */
  .v2-promo { padding: 14px 0; }
  .v2-promo .row { flex-direction: column; gap: 10px; text-align: center; }
  .v2-promo .text { font-size: 14px; }
  .v2-promo .sub { font-size: 10.5px; }
  .v2-promo .gift-badge { font-size: 10px; padding: 6px 10px; transform: rotate(0); }

  /* Announce bar */
  .v2-announce { gap: 10px; padding: 18px 12px; }
  .v2-announce .dot { display: none; }
}

@media (max-width: 540px) {
  /* Even tighter for narrowest phones */
  .v2-buy h1 { font-size: 36px; }
  .v2-buy .benefits-grid { grid-template-columns: 1fr; }

  /* Hide nav links on tiny screens — wordmark + buy CTA remain */
  .v2-header nav { display: none; }
  .v2-header .row { grid-template-columns: 1fr auto 1fr; }

  /* Calendar grid: switch to 6 columns instead of 10 for readability */
  .v2-cal-grid { grid-template-columns: repeat(10, 1fr); gap: 3px; }
  .v2-cal-cell .lbl { font-size: 7px; }

  /* Compare cells smaller */
  .v2-compare .head h2 { font-size: 22px; }
  .compare-col { padding: 22px 18px; }

  /* Ingredient cards full width, smaller image */
  .ing-card-img { width: 160px; height: 160px; }

  /* Reviews summary alignment */
  .reviews-summary { grid-template-columns: 1fr; text-align: left; }

  /* Hero buy box benefits */
  .v2-buy .benefits-head { font-size: 11px; }
}

/* Ensure tap targets are always at least 44px on touch devices */
@media (max-width: 720px) and (pointer: coarse) {
  .v2-buy-now-big { min-height: 56px; }
  .v2-faq .faq-q { min-height: 56px; }
  .reviews-filters .rf { min-height: 38px; padding: 10px 14px; }
  .reviews-more .rm-btn { min-height: 44px; }
  .v2-timeline-cta .btn { min-height: 48px; }
  .v2-buy .one-time, .v2-plan .plan-head { min-height: 56px; }
  .qty-choice { min-height: 80px; }
}
/* Bolded key phrases inside lede and subheadline paragraphs */
.v2-bottle-feature .bf-copy p strong,
.v2-timeline .head .small strong,
.reviews-header .v2-quotes-head p strong,
.v2-quotes-head p strong,
.v2-faq .faq-head p strong,
.problem-stance p strong,
.v2-compare .head p strong,
.v2-guarantee p strong,
.v2-final-offer .offer-lede strong,
.v2-buy .desc strong {
  color: var(--forest-green);
  font-weight: 700;
}






/* ============================================================
   STICKY CTA — appears after the user scrolls past the buy box
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: #ffffff;
  color: var(--forest-green) !important;
  text-decoration: none !important;
  border-top: 1px solid var(--forest-08);
  box-shadow: 0 -10px 32px rgba(15, 61, 46, 0.10);
  transition: transform 320ms var(--ease-out), opacity 320ms var(--ease-out);
  pointer-events: none;
  opacity: 0;
}
.sticky-cta::before {
  content: "";
  position: absolute;
  inset: 12px 24px;
  background: var(--forest-green);
  border-radius: 6px;
  z-index: 0;
  transition: background 200ms var(--ease-out);
}
.sticky-cta > span,
.sticky-cta {
  /* fallback wrapper text style */
}
.sticky-cta-label {
  position: relative;
  z-index: 1;
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 12px 28px;
}
.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.sticky-cta:hover::before { background: var(--forest-dark); }
@media (max-width: 540px) {
  .sticky-cta { padding: 10px 16px; }
  .sticky-cta::before { inset: 8px 16px; }
  .sticky-cta-label { font-size: 16px; padding: 14px 20px; letter-spacing: 0.18em; }
}
@media print { .sticky-cta { display: none !important; } }


.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-elevated);
  border: 1px dashed var(--forest-12);
  border-radius: var(--r-lg);
  color: var(--fg-muted);
  font-size: 14.5px;
}


/* ============================================================
   GRANNY READABILITY — mobile type floors
   Audience: 50+. Floor body ≥ 16px, small labels ≥ 12.5px,
   line-heights opened up for easy scanning.
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 17px; line-height: 1.55; }
  p, .body { font-size: 16.5px; line-height: 1.6; }

  /* Hero buy box */
  .v2-buy .desc { font-size: 16.5px; line-height: 1.55; }
  .v2-buy .benefits-head { font-size: 12.5px; letter-spacing: 0.12em; }
  .v2-buy .benefits-grid .b { font-size: 15px; line-height: 1.45; }

  /* (qty tier sizes handled by the mobile row layout above) */

  /* Order button */
  .v2-buy-now-big { padding: 16px 18px; }
  .v2-buy-now-big .buy-now-label { font-size: 16px; letter-spacing: 0.08em; }
  .v2-buy-now-big .buy-now-price { font-size: 20px; }

  /* Announce + promo bars */
  .v2-announce { font-size: 13px; }
  .v2-promo .text { font-size: 15.5px; }
  .v2-promo .sub { font-size: 12.5px; }
  .v2-promo .gift-badge { font-size: 11.5px; }

  /* Marquees */
  .v2-icon-strip .item { font-size: 14px; }
  .v2-assert-marquee .item { font-size: 14.5px; }

  /* Ingredient cards */
  .ing-card-layer { font-size: 12px; letter-spacing: 0.16em; }
  .ing-card-name { font-size: 26px; }
  .ing-card-latin { font-size: 14.5px; }
  .ing-card-desc { font-size: 16px; line-height: 1.55; }

  /* Blend accordion */
  .v2-blend .name { font-size: 17px; }
  .v2-blend .name .desc { font-size: 14.5px; }
  .v2-blend .body-inner .ing { font-size: 15px; line-height: 1.5; }
  .v2-blend .body-inner .ing em { font-size: 13.5px; }

  /* Compare section */
  .compare-list li { font-size: 16px; line-height: 1.5; }

  /* Guarantee section */
  .v2-guarantee p { font-size: 16.5px; line-height: 1.55; }

  /* Bottle feature copy */
  .v2-bottle-feature .bf-copy p { font-size: 16.5px; line-height: 1.6; }

  /* Timeline */
  .v2-day60-callout .step { font-size: 15.5px; line-height: 1.5; }

  /* Final offer */
  .v2-final-offer .offer-lede { font-size: 16.5px; line-height: 1.55; }
  .v2-final-offer .opt-tag { font-size: 13px; }
  .v2-final-offer .offer-trust { font-size: 13.5px; }

  /* FAQ — primary reading surface */
  .v2-faq .faq-q-text { font-size: 17px; line-height: 1.4; }
  .v2-faq .faq-a { font-size: 16px; line-height: 1.6; }
  .v2-faq .faq-still p { font-size: 18px; line-height: 1.5; }

  /* Reviews */
  .review-card { font-size: 16px; line-height: 1.55; }
  .review-card .rc-title, .review-card .review-title { font-size: 16.5px; }
  .review-card .rc-body, .review-card .review-body { font-size: 15.5px; line-height: 1.6; }
  .review-card .rc-meta, .review-card .review-meta { font-size: 13px; }

  /* Header buttons (Ingredients / Reviews / FAQ / Guarantee) */
  .v2-header nav a { font-size: 14px; }

  /* Footer */
  .v2-footer, .v2-footer p, .v2-footer .links a, .v2-footer .baseline span { font-size: 14.5px; line-height: 1.55; }
  .v2-footer h4 { font-size: 13.5px; letter-spacing: 0.14em; }

  /* Sticky CTA — already big, ensure label is large */
  .sticky-cta-label { font-size: 17px; }

  /* Clean chips (free-from row) */
  .v2-clean-chips .chip { font-size: 13.5px; }

  /* Supplement panel */
  .sup-panel-head h4 { font-size: 22px; }
  .sup-col-head { font-size: 12.5px; letter-spacing: 0.1em; }
  .sup-blend-row, .sup-foot { font-size: 14.5px; line-height: 1.5; }
}

@media (max-width: 540px) {
  .v2-buy .benefits-head { font-size: 12px; }
}

