/* ==========================================================================
   OCLARÉ - Vision Support+  |  Global Stylesheet
   Sections: tokens · reset · typography · layout · header · buttons ·
   hero · components · product · footer · animation · responsive
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Bottle-green + warm neutral palette - trustworthy, calm, not luxury-gold */
  --ink:        #0F1F16;
  --ink-soft:   #1A2E22;
  --ink-line:   #14261B;
  --body:       #3D4A42;
  --muted:      #6B7870;
  --gold:       #3F7A5C;
  --gold-soft:  #B8D4C4;
  --iris:       #2D6B4A;
  --iris-deep:  #1F5438;
  --iris-wash:  #E8F2EC;
  --paper:      #F8F6F3;
  --paper-deep: #F0EBE5;
  --white:      #FFFFFF;
  --line:       #E2DDD6;
  --line-dark:  rgba(255,255,255,.14);

  --shadow-sm:  0 1px 2px rgba(15,31,22,.05), 0 2px 8px rgba(15,31,22,.05);
  --shadow-md:  0 8px 28px rgba(15,31,22,.08);
  --shadow-lg:  0 20px 54px rgba(15,31,22,.12);

  /* Liquid glass */
  --glass:        rgba(255,255,255,.72);
  --glass-strong: rgba(255,255,255,.90);
  --glass-rim:    inset 0 1px 0 rgba(255,255,255,.75), inset 0 0 0 1px rgba(255,255,255,.30);
  --glass-blur:   saturate(168%) blur(13px);
  --glass-dark:   rgba(15,31,22,.58);

  --serif: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --logo:  "DM Sans", var(--sans);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1208px;
  --container-wide: 1340px;
  --gap: clamp(1.5rem, 4vw, 4rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
main, .site-header, .site-footer, section, .assurance-bar { max-width: 100%; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--iris); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.65rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
p { max-width: 64ch; }
strong { color: var(--ink); font-weight: 600; }
.bg-ink strong, .cta-band strong { color: var(--gold-soft); }
.bg-ink p, .cta-band p { color: #C3D2C7; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #248552;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-shadow: 0 0 18px rgba(63,122,92,.38), 0 0 36px rgba(63,122,92,.12);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: #3F7A5C;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(63,122,92,.5);
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.on-dark {
  color: #d4ede0;
  text-shadow: 0 0 20px rgba(184,212,196,.5), 0 0 40px rgba(184,212,196,.18);
}
.eyebrow.on-dark::before { background: rgba(184,212,196,.95); box-shadow: 0 0 12px rgba(184,212,196,.55); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--body); line-height: 1.65; font-weight: 400; }
.fineprint { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.container.is-wide { max-width: var(--container-wide); }
.container.is-narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section.is-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-paper { background: var(--paper); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: #C3D2C7; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-iris-wash { background: var(--iris-wash); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .7rem; }
.section-head p { margin-top: .95rem; }
.section-head.is-centered p { margin-inline: auto; }

.grid { display: grid; gap: var(--gap); }
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.is-wide-left { grid-template-columns: 1.08fr .92fr; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,236,.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(246,242,236,.96); }
.nav { display: flex; align-items: center; gap: 1.75rem; height: 70px; }
.nav__logo img { height: 21px; width: auto; }
.nav__menu { display: none; align-items: center; gap: 1.65rem; margin-left: auto; }
.nav__link {
  font-size: .93rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: .35rem 0; transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--iris); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: .25rem; }

/* dropdown - desktop: pure hover; no click-sticky focus trap */
.nav__group { position: relative; }
.nav__group-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.nav__group-trigger svg { width: 11px; height: 11px; transition: transform .22s var(--ease); }
.nav__dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: .5rem; width: 268px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .22s var(--ease), visibility .18s;
}
.nav__dropdown a { display: block; padding: .6rem .75rem; border-radius: var(--r-sm); transition: background .15s var(--ease); }
.nav__dropdown a:hover { background: var(--paper); }
.nav__dropdown strong { display: block; font-size: .92rem; color: var(--ink); }
.nav__dropdown span { font-size: .8rem; color: var(--muted); }
@media (min-width: 1024px) {
  .nav__group::after {
    content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 14px;
  }
  .nav__group:hover .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
  .nav__group:hover .nav__group-trigger svg { transform: rotate(180deg); }
  .nav__group:has(.nav__group-trigger:focus-visible) .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
  }
  .nav__group:has(.nav__group-trigger:focus-visible) .nav__group-trigger svg { transform: rotate(180deg); }
}

.nav__toggle { margin-left: auto; display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 70px 0 0 0; z-index: 99;
  background: var(--paper);
  padding: 1.5rem clamp(1.15rem, 4vw, 2.5rem) 2.5rem;
  transform: translateX(100%); transition: transform .35s var(--ease), visibility .35s;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-nav a { display: block; font-size: 1.15rem; font-family: var(--sans); font-weight: 600; color: var(--ink); padding: .85rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav .mobile-nav__sub a { font-size: 1rem; font-family: var(--sans); color: var(--ink-soft); padding: .55rem 0 .55rem 1rem; }
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; }
.mobile-nav__label { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 1.6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: -.005em;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: center; white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: .08s; }
.btn-primary { background: var(--iris-deep); color: var(--white); box-shadow: 0 6px 18px rgba(31,84,56,.22); }
.btn-primary:hover { background: var(--iris); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,84,56,.28); }
.btn-accent { background: var(--iris); color: var(--white); box-shadow: 0 8px 22px rgba(46,125,79,.32); }
.btn-accent:hover { background: var(--iris-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(46,125,79,.4); }
.btn-secondary { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); transform: translateY(-2px); }
.btn-on-dark { background: var(--white); color: var(--ink); }
.btn-on-dark:hover { background: var(--iris-wash); transform: translateY(-2px); }
.btn-lg { padding: 1.12rem 2.15rem; font-size: 1.02rem; }
.btn-sm { padding: .72rem 1.25rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-link {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--iris-deep);
  font-size: .95rem; padding-bottom: 2px; box-shadow: inset 0 -1px 0 rgba(45,107,74,.35);
  transition: gap .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-link:hover { gap: .75rem; box-shadow: inset 0 -2px 0 var(--iris); }
.btn-link svg { width: 15px; height: 15px; }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .42rem .85rem; border-radius: var(--r-pill);
}
.pill-gold { background: var(--iris-deep); color: var(--white); }
.pill-iris { background: var(--iris-wash); color: var(--iris-deep); }
.pill-ink  { background: var(--ink); color: var(--white); }
.pill-soft { background: var(--paper-deep); color: var(--ink-soft); }
.save-flag { color: var(--iris-deep); font-weight: 700; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5.5rem); position: relative; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.04fr .96fr; } }
.hero__title { margin: 1.1rem 0 1.15rem; }
.hero__title em { font-style: normal; font-weight: 700; color: var(--iris); }
.hero__sub { font-size: clamp(1.02rem, 1.45vw, 1.18rem); color: var(--body); max-width: 38ch; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.7rem; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--r-lg); }
.hero__media.is-plain img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* trust row */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.65rem; margin-top: 1.85rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-row__item { display: flex; align-items: center; gap: .55rem; font-size: .86rem; font-weight: 500; color: var(--ink-soft); }
.trust-row__item svg { width: 19px; height: 19px; color: var(--iris-deep); flex-shrink: 0; }

/* floating spec card on hero media */
.spec-card {
  position: absolute; background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 1rem 1.15rem; border: 1px solid var(--line);
}
.spec-card--tl { top: 6%; left: max(0.5rem, 2%); }
.spec-card--br { bottom: 7%; right: max(0.5rem, 2%); }
.spec-card__k { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.spec-card__l { font-size: .76rem; color: var(--muted); margin-top: .2rem; }
@media (max-width: 939px) {
  .spec-card,
  .hero--video .spec-card,
  .pdp__orb,
  .pdp__decor-panel,
  .pdp__decor-glow { display: none !important; }
  .pdp__gallery { overflow: hidden; }
}
@media (min-width: 601px) and (max-width: 939px) {
  .hero--video { padding-block: clamp(2.5rem, 6vh, 4.5rem); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid .bundle-card.is-featured { grid-column: 1 / -1; }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Video hero ---------- */
.hero--video {
  position: relative; overflow: hidden;
  min-height: clamp(400px, 68svh, 680px);
  display: flex; align-items: flex-start;
  padding-block: clamp(1.15rem, 3.5vh, 2.75rem);
  color: #fff;
}
.hero--video > .container {
  padding-top: clamp(0.35rem, 1.5vh, 1rem);
  width: 100%;
}
.hero--video .hero__title { margin: .5rem 0 .7rem; }
.hero--video .trust-row { margin-top: 1.1rem; padding-top: .9rem; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%; z-index: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(178deg, rgba(9,26,15,.58) 0%, rgba(9,26,15,.70) 52%, rgba(9,26,15,.86) 100%);
}
.hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero--video.is-video-ready .hero__poster { opacity: 0; transition: opacity .45s var(--ease); }
.hero--video.is-poster-only .hero__video { display: none; }
.hero--video .container { position: relative; z-index: 2; }
.hero__inner { max-width: 768px; margin-inline: auto; text-align: center; }
.hero--video .eyebrow { color: var(--gold-soft); justify-content: center; }
.hero--video .eyebrow::before { background: rgba(184,212,196,.9); }
.hero--video h1 { color: #fff; text-shadow: 0 2px 24px rgba(15,31,22,.45); }
.hero--video .hero__title em { color: #D4E8DC; font-style: normal; font-weight: 700; }
.hero__sub--video {
  color: rgba(255,255,255,.9); margin: .6rem auto 0; max-width: 54ch;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem); line-height: 1.65;
}
.hero__sub--short { display: none; }
.hero__micro-trust {
  margin: 0; font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; color: rgba(255,255,255,.82);
}
.hero__cta-stack {
  display: flex; flex-direction: column; align-items: stretch; gap: .35rem;
  min-width: 0;
}
.hero--video .hero__cta {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem; row-gap: .4rem; justify-items: stretch; align-items: start;
  margin-top: 1.15rem;
}
.hero--video .hero__cta-stack { grid-column: 1; grid-row: 1; }
.hero--video .hero__cta-stack + .btn { grid-column: 2; grid-row: 1; }
.hero--video .hero__cta:not(:has(.hero__cta-stack)) > .btn:first-of-type { grid-column: 1; grid-row: 1; }
.hero--video .hero__cta:not(:has(.hero__cta-stack)) > .btn:last-of-type { grid-column: 2; grid-row: 1; }
.hero--video .hero__micro-trust { text-align: center; }
.hero--video .hero__cta .btn {
  min-height: 52px; width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1.2; white-space: normal; text-wrap: balance;
  padding-block: 1.05rem;
}
.hero--video .btn-on-dark { box-shadow: 0 6px 22px rgba(0,0,0,.22); }
.hero--video .btn-outline-light { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hero--video .trust-row { justify-content: center; border-top-color: rgba(255,255,255,.22); }
.hero--video .trust-row__item { color: #D7E0D8; }
.hero--video .trust-row__item svg { color: var(--gold-soft); }
.hero--video .spec-card { z-index: 2; animation: spec-float 7s ease-in-out infinite; }
.hero--video .spec-card--tl { top: auto; bottom: 8%; left: 4.5%; animation-delay: 0s; }
.hero--video .spec-card--br { bottom: 8%; right: 4.5%; animation-delay: -3.5s; }

.btn-outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

@media (min-width: 769px) and (max-width: 960px) {
  .hero--video .hero__cta {
    grid-template-columns: 1fr;
    max-width: 28rem; margin-inline: auto;
  }
  .hero--video .hero__cta-stack,
  .hero--video .hero__cta-stack + .btn,
  .hero--video .hero__cta:not(:has(.hero__cta-stack)) > .btn { grid-column: 1; grid-row: auto; }
}
@media (max-width: 768px) {
  .hero__sub--long { display: none; }
  .hero__sub--short { display: block; }
  .hero--video .hero__cta {
    display: flex; flex-direction: column; gap: .85rem;
    max-width: none; margin-inline: 0;
  }
  .hero--video .hero__cta-stack { display: flex; flex-direction: column; gap: .35rem; }
  .hero--video .hero__cta-stack + .btn,
  .hero--video .hero__cta:not(:has(.hero__cta-stack)) > .btn { grid-column: auto; grid-row: auto; }
  .hero__micro-trust { text-align: center; }
  .hero--video .hero__scrim {
    background: linear-gradient(178deg, rgba(9,26,15,.72) 0%, rgba(9,26,15,.82) 45%, rgba(9,26,15,.92) 100%);
  }
}
@media (max-width: 600px) {
  .hero--video { min-height: clamp(360px, 60svh, 520px); }
}

/* ---------- Stat blocks ---------- */
.stat-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 2.4rem 2.1rem 2.2rem; position: relative; overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--iris) 0%, var(--iris-deep) 100%);
}
.stat__label {
  display: block; font-size: .7rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .65rem; margin-top: .15rem;
}
.stat__num {
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--ink); line-height: 1;
}
.stat__num .unit {
  font-size: .35em; font-family: var(--sans); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--iris-deep); margin-left: .1em; vertical-align: middle;
}
.stat__num .stat__count { color: inherit; }
.stat__text { margin-top: .8rem; font-size: .96rem; color: var(--body); line-height: 1.65; }
.stat__cite { margin-top: .8rem; font-size: .73rem; color: var(--muted); }
.stat__text--short { display: none; }
.section-head__sub--short { display: none; }

/* Hero → content visual bridge */
.hero-bridge {
  margin: 0; padding: 0; line-height: 0; background: var(--ink);
  box-shadow: 0 14px 44px rgba(9,26,15,.14);
}
.hero-bridge img {
  width: 100%; max-height: min(52vw, 320px); object-fit: cover; object-position: center 42%;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
@media (min-width: 769px) {
  .hero-bridge img { max-height: 340px; }
}

/* Stats section visuals (mobile rhythm) */
.stat-section__visual {
  display: none;
  max-width: 220px; margin: 0 auto 1.35rem;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-section__visual img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.stat-visual {
  display: none;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-visual img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}

/* Bundle product spotlight */
.bundle-spotlight {
  display: none;
  align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; margin-bottom: 1.5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.bundle-spotlight picture,
.bundle-spotlight img {
  flex: 0 0 88px; width: 88px; height: 88px;
  border-radius: var(--r-sm); object-fit: cover;
}
.bundle-spotlight__copy { flex: 1; min-width: 0; }
.bundle-spotlight__copy .eyebrow { margin-bottom: .25rem; }
.bundle-spotlight__copy p { font-size: .88rem; line-height: 1.5; margin: 0; color: var(--body); }

@media (max-width: 768px) {
  .section--stats { padding-block: clamp(2.5rem, 6vw, 3.5rem); }
  .section--films { padding-block: clamp(2.75rem, 6vw, 4rem); }
  .section-head__sub--long { display: none; }
  .section-head__sub--short { display: block; }
  .stat__text--long { display: none; }
  .stat__text--short { display: block; }
  .stat-section__visual { display: block; }
  .stat-visual { display: block; }
  .stat { padding: 1.65rem 1.35rem 1.5rem; }
  .stat__text { font-size: .9rem; margin-top: .55rem; }
  .stat__cite { margin-top: .5rem; }
  .bundle-spotlight { display: flex; }
  .reveal:not(.is-in) { transform: translateY(22px); }
  .reveal--left:not(.is-in) { transform: translateX(-38px) rotate(-2.5deg); }
  .reveal--right:not(.is-in) { transform: translateX(38px) rotate(2.5deg); }
}

/* ---------- Ingredient strip (tabs) ---------- */
.ing-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.ing-tab {
  padding: .6rem 1.15rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600;
  background: var(--white); color: var(--ink-soft); border: 1px solid var(--line);
  transition: all .2s var(--ease);
}
.ing-tab:hover { border-color: var(--ink-soft); }
.ing-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.ing-panel { display: none; }
.ing-panel.is-active { display: grid; gap: clamp(1.5rem,4vw,3rem); }
@media (min-width: 820px) { .ing-panel.is-active { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.ing-panel__body h3 { margin-bottom: .35rem; }
.ing-panel__dose {
  display: inline-flex; align-items: baseline; gap: .4rem; margin-bottom: 1rem;
  font-family: var(--sans); font-weight: 700; color: var(--iris-deep);
}
.ing-panel__dose b { font-size: 1.55rem; font-weight: 700; }
.ing-panel__dose span { font-size: .82rem; font-family: var(--sans); color: var(--muted); }
.ing-panel__meta { margin-top: 1.15rem; display: flex; flex-direction: column; gap: .6rem; }
.ing-panel__meta div { display: flex; gap: .6rem; font-size: .92rem; }
.ing-panel__meta svg { width: 18px; height: 18px; color: var(--iris); flex-shrink: 0; margin-top: 2px; }
.ing-visual {
  background: var(--iris-wash); border-radius: var(--r-md); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.ing-visual svg { width: 120px; height: 120px; color: var(--iris-deep); }
.ing-visual--photo { padding: 0; background: var(--paper-deep); min-height: 200px; }
.ing-visual--photo img {
  width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block;
}

.triple-freq-block { margin-top: 1.35rem; padding-top: .25rem; }
.triple-freq-block .freq-opt { margin-top: .65rem; }
.triple-freq-block .freq-opt.is-featured .freq-opt__deal { background: var(--gold); color: var(--ink); }

/* ---------- Cards (value / persona) ---------- */
.card-grid { display: grid; gap: 1.35rem; align-items: stretch; }
@media (min-width: 680px) { .card-grid.cols-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 760px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; }
}
@media (min-width: 940px) { .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.75rem 1.6rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card:hover .feature-card__icon svg { transform: scale(1.08); }
.feature-card__icon svg { transition: transform .25s var(--ease); }
.feature-card__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--iris-wash);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.05rem;
}
.feature-card__icon svg { width: 23px; height: 23px; color: var(--iris-deep); }
.feature-card h3 { font-size: 1.16rem; margin-bottom: .45rem; }
.feature-card h4 { margin-bottom: .45rem; }
.feature-card p { font-size: .95rem; }

/* Our Specialty - visual uplift */
.section--specialty {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f7fbf8 55%, var(--white) 100%);
}
.section--specialty .container.is-narrow { position: relative; z-index: 1; }
.specialty-accent {
  position: absolute; inset: 8% 10% auto; height: 220px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 42% 70% at 18% 40%, rgba(45,107,74,.09), transparent 68%),
    radial-gradient(ellipse 38% 60% at 82% 55%, rgba(184,212,196,.28), transparent 70%);
}
.specialty-grid .feature-card {
  border: 1px solid rgba(45,107,74,.12);
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.specialty-grid .feature-card__icon {
  background: linear-gradient(145deg, rgba(238,246,240,.95), rgba(255,255,255,.92));
  border: 1px solid rgba(45,107,74,.14);
  box-shadow: 0 6px 18px rgba(45,107,74,.08);
}

/* persona tile */
.persona-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 380px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; color: var(--white); isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.persona-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .45s var(--ease);
}
.persona-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,26,15,.1) 0%, rgba(9,26,15,.42) 45%, rgba(9,26,15,.88) 100%);
  transition: opacity .28s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .persona-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(9,26,15,.22);
  }
  .persona-tile:hover img { transform: scale(1.04); }
  .persona-tile:hover::after { opacity: .92; }
}
.persona-tile h3 { color: var(--white); font-size: 1.32rem; }
.persona-tile p { font-size: .9rem; color: #CDD6CF; margin: .4rem 0 1rem; line-height: 1.55; }
.persona-tile .btn-link { color: #D4E8DC; box-shadow: inset 0 -1px 0 rgba(184,212,196,.6); margin-top: auto; }
.persona-tile__tag { align-self: flex-start; margin-bottom: auto; }

/* ---------- Bundle / pricing cards ---------- */
.bundle-grid { display: grid; gap: 1.3rem; align-items: stretch; }
@media (min-width: 800px) { .bundle-grid { grid-template-columns: repeat(3,1fr); } }
.bundle-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem 1.55rem; display: flex; flex-direction: column; position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  isolation: isolate;
}
.bundle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(45,107,74,.22); }
.bundle-card.is-featured {
  background: linear-gradient(165deg, #f3faf6 0%, var(--white) 48%, #eef6f0 100%);
  border: 2px solid var(--iris);
  box-shadow: 0 10px 34px rgba(45,107,74,.13), 0 0 0 1px rgba(45,107,74,.05);
}
.bundle-card.is-featured::before {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid rgba(45,107,74,.28); pointer-events: none; z-index: 0;
  animation: bundle-ring 3.2s ease-in-out infinite;
}
@media (min-width: 941px) and (hover: hover) and (pointer: fine) {
  .bundle-card.is-featured { animation: card-glow 5.5s ease-in-out infinite; }
}
.bundle-card.is-featured:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 42px rgba(45,107,74,.17), 0 0 0 1px rgba(45,107,74,.08);
}
@media (min-width: 800px) {
  .bundle-card.is-featured { transform: translateY(-3px); }
  .bundle-card.is-featured:hover { transform: translateY(-7px); }
}
.bundle-card__flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
}
.bundle-card__bottles { display: flex; gap: 5px; margin-bottom: .7rem; align-items: flex-end; }
.bundle-card__bottles svg { width: 20px; height: 26px; color: var(--iris); flex-shrink: 0; }
.bundle-card__name { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.bundle-card__desc { font-size: .85rem; color: var(--muted); margin-top: .15rem; min-height: 2.6em; }
.bundle-card__price { display: flex; align-items: baseline; gap: .5rem; margin-top: 1.1rem; }
.bundle-card__now { font-family: var(--sans); font-size: 2.35rem; font-weight: 700; color: var(--ink); line-height: 1; }
.bundle-card__was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.bundle-card__per { font-size: .85rem; color: var(--iris-deep); font-weight: 600; margin-top: .35rem; }
.bundle-card__list { margin: 1.15rem 0 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.bundle-card__list li { display: flex; gap: .55rem; font-size: .9rem; }
.bundle-card__list svg { width: 17px; height: 17px; color: var(--iris-deep); flex-shrink: 0; margin-top: 3px; transition: transform .2s var(--ease); }
.bundle-card:hover .bundle-card__list svg { transform: scale(1.06); }
.bundle-card .btn { margin-top: auto; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; text-align: left; font-family: var(--sans); font-weight: 600;
  font-size: 1.04rem; color: var(--ink);
}
.acc-trigger:hover { color: var(--iris-deep); }
.acc-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--iris-deep); border-radius: 2px; transition: transform .25s var(--ease); }
.acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.acc-item.is-open .acc-icon::after { transform: scaleY(0); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .32s var(--ease); }
.acc-panel__inner { padding: 0 0 1.4rem; }
.acc-panel__inner p { font-size: .98rem; }
.acc-panel__inner .ing-meta { margin-top: .9rem; display: grid; gap: .5rem; }
.acc-panel__inner .ing-meta span { font-size: .85rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .timeline { grid-template-columns: repeat(3,1fr); } }
.tl-step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.7rem 1.5rem; position: relative;
}
.tl-step__phase { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--iris-deep); }
.tl-step__num { font-family: var(--sans); font-size: 2.4rem; font-weight: 700; color: var(--paper-deep); line-height: 1; position: absolute; top: 1.2rem; right: 1.4rem; }
.tl-step h3 { font-size: 1.18rem; margin: .55rem 0 .45rem; }
.tl-step p { font-size: .93rem; }

/* ---------- Video carousel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 clamp(230px, 74vw, 290px); scroll-snap-align: center;
  border-radius: var(--r-md); overflow: hidden; background: var(--ink);
  position: relative; aspect-ratio: 9/16; box-shadow: var(--shadow-md);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(9,26,15,.28); transition: opacity .2s var(--ease);
}
.video-card__play span {
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
}
.video-card__play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.video-card.is-playing .video-card__play { opacity: 0; pointer-events: none; }
.video-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem .95rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(9,26,15,.85));
  color: var(--white); font-size: .82rem; font-weight: 500;
}
.carousel__nav { display: flex; gap: .6rem; margin-top: 1.2rem; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.carousel__btn:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.carousel__btn svg { width: 18px; height: 18px; }

/* ---------- Auto-scroll video marquee ---------- */
.vmarquee {
  position: relative; overflow: hidden;
  max-width: 100%;
  contain: paint;
  padding: 0.75rem 0 1.25rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.vmarquee__track {
  display: flex; width: max-content; gap: 1.15rem;
  animation: vmarquee-scroll var(--marquee-duration, 44s) linear infinite;
}
.vmarquee:not(.is-paused) .vmarquee__track { will-change: transform; }
.vmarquee.is-paused .vmarquee__track { animation-play-state: paused; }
@keyframes vmarquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
}
.vfilm {
  flex: 0 0 clamp(208px, 56vw, 290px); margin: 0;
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 9 / 16; background: var(--ink); box-shadow: var(--shadow-md);
}
.vfilm video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; -webkit-user-select: none; user-select: none;
}
.vfilm video::-webkit-media-controls { display: none !important; }
.vfilm video::-webkit-media-controls-enclosure { display: none !important; }
.vfilm figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.7rem .95rem .85rem; color: #fff; font-size: .84rem; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(9,26,15,.85));
}
@media (prefers-reduced-motion: reduce) {
  .nav__cart svg { animation: none; }
  .vmarquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .vmarquee__track { animation: none; }
  .reveal--left, .reveal--right { transform: translateY(18px); }
  .reveal--left.is-in, .reveal--right.is-in { transform: none; }
}

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white);
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.compare-table th, .compare-table td { padding: 1rem 1.1rem; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare-table thead th.is-own { background: var(--ink); color: var(--white); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td.is-own { background: var(--iris-wash); font-weight: 600; color: var(--ink); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-table .tick { color: var(--iris-deep); }
.compare-table .dash { color: var(--muted); }

/* ---------- Product page ---------- */
.pdp { padding-block: clamp(1.5rem, 4vw, 3rem); }
.pdp__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
@media (min-width: 940px) { .pdp__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.pdp__gallery { position: sticky; top: 90px; }
.pdp__decor-panel { position: absolute; z-index: 0; right: -5%; bottom: 4%; width: 64%; height: 66%; border-radius: var(--r-lg); background: linear-gradient(155deg, var(--iris-wash), #D4E6D8); }
.pdp__decor-glow { position: absolute; z-index: 0; left: -7%; top: 0; width: 64%; height: 64%; border-radius: 50%; background: radial-gradient(circle, rgba(46,125,79,.30), transparent 66%); }
.pdp__orb { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; }
.pdp__orb--berry  { width: 26px; height: 26px; top: 4%;  left: 2%;  background: radial-gradient(circle at 34% 30%, #6aa6da, #15376a); box-shadow: var(--shadow-sm); animation: floaty 7s var(--ease) infinite; }
.pdp__orb--berry2 { width: 16px; height: 16px; top: 12%; left: 8%;    background: radial-gradient(circle at 34% 30%, #6aa6da, #15376a); animation: floaty 9s var(--ease) infinite .6s; }
.pdp__orb--gold   { width: 34px; height: 34px; bottom: 18%; right: 2%; background: radial-gradient(circle at 36% 32%, #c8ddd0, var(--iris)); box-shadow: var(--shadow-sm); animation: floaty 8s var(--ease) infinite .3s; }
.pdp__orb--ring   { width: 58px; height: 58px; bottom: 8%; left: 6%; background: none; border: 2px solid var(--iris); opacity: .45; animation: floaty 11s var(--ease) infinite .2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.pdp__stage { position: relative; z-index: 2; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.pdp__stage img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pdp__thumbs { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5,1fr); gap: .55rem; margin-top: .65rem; }
.pdp__thumb { border-radius: var(--r-sm); overflow: hidden; border: 1.5px solid var(--line); background: var(--white); transition: border-color .2s var(--ease); }
.pdp__thumb img { aspect-ratio: 1/1; object-fit: cover; }
.pdp__thumb.is-active { border-color: var(--ink); }
@media (max-width: 600px) {
  .pdp__thumbs {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: .5rem; padding-bottom: .2rem;
  }
  .pdp__thumb { flex: 0 0 64px; scroll-snap-align: start; }
}
@media (min-width: 940px) and (max-width: 1100px) { .pdp__gallery { position: relative; top: auto; } }
@media (max-width: 939px) { .pdp__gallery { position: relative; top: auto; } }

.pdp__title { margin: .55rem 0 .5rem; }
.pdp__tagline { font-size: 1.05rem; color: var(--ink-soft); }
.pdp__rating { display: flex; align-items: center; gap: .6rem; margin: .85rem 0 1.25rem; font-size: .88rem; color: var(--muted); }
.pdp__rating .stars { display: inline-flex; gap: 2px; color: var(--iris); }
.pdp__rating .stars svg { width: 16px; height: 16px; }

/* purchase selector */
.buybox { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.4rem; }

.buy-headline { display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem; }
.buy-headline__now { font-family: var(--sans); font-size: 2.45rem; font-weight: 700; color: var(--ink); line-height: 1; }
.buy-headline__was { font-size: 1.05rem; color: var(--muted); }
.buy-headline__save { background: var(--iris); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .05em; padding: .32rem .6rem; border-radius: var(--r-pill); }
.buy-headline__unit { font-size: .9rem; color: var(--muted); }
.buy-headline__per { font-size: .85rem; color: var(--iris-deep); font-weight: 600; margin-top: .3rem; }

.buy-label { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 1.25rem 0 .65rem; }

.qty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.qty-tile {
  position: relative; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: .4rem;
  padding: .95rem .9rem; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), transform .22s var(--ease);
}
.qty-tile:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.qty-tile.is-selected { border-color: var(--iris); background: var(--iris-wash); box-shadow: var(--shadow-sm), 0 0 0 3px rgba(45,107,74,.08); }
.qty-tile__media { display: flex; align-items: flex-end; height: 58px; margin-bottom: .15rem; }
.qty-tile__media img { height: 58px; width: auto; border-radius: 6px; border: 1.5px solid #fff; box-shadow: 0 1px 5px rgba(9,26,15,.16); }
.qty-tile__media img + img { margin-left: -28px; }
.qty-tile__name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.qty-tile__supply { font-size: .77rem; color: var(--muted); }
.qty-tile__price { font-family: var(--sans); font-size: 1.28rem; font-weight: 700; color: var(--ink); margin-top: .1rem; }
.qty-tile__price s { font-family: var(--sans); font-size: .78rem; color: var(--muted); margin-right: .28rem; }
.save-burst {
  position: absolute; top: -11px; right: -9px; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--iris-deep); color: var(--white);
  font-size: .64rem; font-weight: 800; letter-spacing: .02em; text-align: center; line-height: 1.05;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transform: rotate(8deg);
}

.freq-list { display: flex; flex-direction: column; gap: .6rem; }
.freq-opt {
  display: block; cursor: pointer; padding: 1rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.freq-opt:hover { border-color: var(--ink-soft); }
.freq-opt.is-selected { border-color: var(--ink); background: var(--iris-wash); }
.freq-opt__head { display: flex; align-items: center; gap: .6rem; }
.freq-opt__head input { accent-color: var(--ink); width: 17px; height: 17px; flex-shrink: 0; }
.freq-opt__title { font-weight: 700; color: var(--ink); font-size: .98rem; }
.freq-opt__deal { background: var(--iris-deep); color: var(--white); font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .5rem; border-radius: var(--r-pill); }
.freq-opt__price { margin-left: auto; font-family: var(--sans); font-size: 1.25rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.freq-opt__price s { font-family: var(--sans); font-size: .78rem; color: var(--muted); margin-right: .25rem; }
.freq-benefits { margin: .75rem 0 0; padding-left: 1.75rem; display: flex; flex-direction: column; gap: .35rem; }
.freq-benefits li { font-size: .85rem; color: var(--body); display: flex; gap: .45rem; }
.freq-benefits svg { width: 15px; height: 15px; color: var(--iris-deep); flex-shrink: 0; margin-top: 3px; }
.freq-cadence { margin: .7rem 0 0 1.75rem; font-size: .8rem; color: var(--muted); }

.buybox__cta { margin-top: 1.2rem; }
.buybox__reassure { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin-top: .95rem; justify-content: center; }
.buybox__reassure span { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); }
.buybox__reassure svg { width: 14px; height: 14px; color: var(--iris-deep); }

.pdp__benefits { margin: 1.4rem 0; display: flex; flex-direction: column; gap: .7rem; }
.pdp__benefits li { display: flex; gap: .6rem; font-size: .98rem; }
.pdp__benefits svg { width: 20px; height: 20px; color: var(--iris-deep); flex-shrink: 0; margin-top: 2px; }

/* sticky mobile cart bar */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--line);
  padding: .7rem clamp(1rem,4vw,1.5rem); display: flex; align-items: center; gap: 1rem;
  transform: translateY(110%); transition: transform .3s var(--ease);
  box-shadow: 0 -6px 24px rgba(9,26,15,.1);
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__info { line-height: 1.2; }
.sticky-buy__info b { font-size: 1rem; color: var(--ink); }
.sticky-buy__info span { display: block; font-size: .78rem; color: var(--muted); }
.sticky-buy .btn { margin-left: auto; min-height: 48px; flex-shrink: 0; }
@media (min-width: 940px) { .sticky-buy { display: none !important; } }

/* ---------- Supplement facts ---------- */
.sup-facts { background: var(--white); border: 1px solid var(--ink); border-radius: var(--r-sm); padding: 1.25rem 1.4rem; font-family: var(--sans); }
.sup-facts h4 { font-family: var(--sans); font-size: 1.35rem; font-weight: 700; border-bottom: 6px solid var(--ink); padding-bottom: .3rem; }
.sup-facts__row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.sup-facts__row span:last-child { color: var(--ink); font-weight: 600; }
.sup-facts__sub { font-size: .78rem; color: var(--muted); padding-top: .6rem; }

/* ---------- Callout / quote ---------- */
.callout {
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--iris);
  border-radius: var(--r-md); padding: 1.35rem 1.5rem;
}
.callout p { font-family: var(--sans); font-size: 1.05rem; color: var(--ink); font-style: normal; font-weight: 500; line-height: 1.65; }

.split-feature__media img { border-radius: var(--r-md); width: 100%; box-shadow: var(--shadow-md); }
.icon-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.4rem; }
.icon-list li { display: flex; gap: .85rem; }
.icon-list__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--iris-wash); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-list__ic svg { width: 19px; height: 19px; color: var(--iris-deep); }
.icon-list h4 { margin-bottom: .15rem; }
.icon-list p { font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.cta-band__inner { padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-band h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.cta-band--compact .cta-band__inner { padding: clamp(1.75rem, 4vw, 2.75rem); }
.cta-band--compact h2 { max-width: 24ch; font-size: clamp(1.35rem, 3vw, 1.85rem); }
.cta-band--compact p { margin-bottom: 1.25rem; }
.cta-band p { color: #C2CEC4; margin: 1rem auto 1.7rem; }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Email capture ---------- */
.email-form { display: flex; gap: .55rem; flex-wrap: wrap; max-width: 420px; }
.email-form input {
  flex: 1; min-width: 180px; padding: .85rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.06); color: var(--white);
}
.email-form input::placeholder { color: #8A968C; }
.email-form__msg { font-size: .85rem; margin-top: .7rem; color: var(--gold-soft); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9DACA1; padding-top: clamp(3rem,6vw,5rem); }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand img { height: 22px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { font-size: .9rem; margin: 1rem 0 1.3rem; max-width: 34ch; }
.footer__contact { font-size: .86rem; line-height: 1.55; color: #A8B8AE; margin-top: 1rem; }
.footer__contact a { color: var(--gold-soft); }
.footer__contact a:hover { color: var(--white); }
.footer__col h4 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a { display: block; font-size: .92rem; padding: .32rem 0; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__badges { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line-dark); }
.footer__badge { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.footer__badge svg { width: 18px; height: 18px; color: var(--gold-soft); }
.footer__disclaimer { padding: 1.6rem 0; font-size: .78rem; color: #7C8A80; line-height: 1.65; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center; padding: 1.5rem 0 2.2rem; font-size: .82rem;
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__social { display: flex; gap: .65rem; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--white); color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; }

/* ---------- Disclaimer inline ---------- */
.disclaimer-note {
  background: var(--paper-deep); border-radius: var(--r-sm); padding: 1rem 1.2rem;
  font-size: .8rem; color: var(--ink-soft); line-height: 1.6;
}
.disclaimer-note strong { color: var(--ink); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .82rem; color: var(--muted); padding-block: 1.1rem; }
.breadcrumb a:hover { color: var(--iris-deep); }
.breadcrumb span { color: var(--line); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { margin-top: 1rem; }
.page-hero .lead { max-width: 56ch; }
.page-hero--split .split { align-items: center; text-align: left; }
.page-hero--split .page-hero__media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 879px) {
  .page-hero--split .split { text-align: center; }
  .page-hero--split .eyebrow.is-centered { justify-content: center; }
}

/* ---------- Visual content cards (compare, science) ---------- */
.insight-card, .choice-card, .kpi-card, .glass-panel {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md), var(--glass-rim);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.insight-card:hover, .choice-card:hover, .kpi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--glass-rim); }
.insight-card__img, .choice-card__img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
}
.choice-card__img { aspect-ratio: 3/2; }
.insight-card__body, .choice-card__body { padding: 1.35rem 1.45rem 1.5rem; }
.insight-card__tag, .choice-card__tag {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--iris-deep); margin-bottom: .45rem;
}
.insight-card h3, .choice-card h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.insight-card p, .choice-card p { font-size: .93rem; color: var(--body); line-height: 1.6; }
.insight-card p + p { margin-top: .65rem; }

.kpi-strip { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 680px) { .kpi-strip { grid-template-columns: repeat(3, 1fr); } }
.kpi-card { padding: 1.25rem 1.2rem; text-align: center; }
.kpi-card__icon {
  width: 42px; height: 42px; border-radius: 50%; margin: 0 auto .65rem;
  background: var(--iris-wash); display: flex; align-items: center; justify-content: center;
}
.kpi-card__icon svg { width: 20px; height: 20px; color: var(--iris-deep); }
.kpi-card strong { display: block; font-size: .95rem; color: var(--ink); margin-bottom: .25rem; }
.kpi-card span { font-size: .82rem; color: var(--muted); line-height: 1.45; }

.glass-panel { padding: clamp(1.5rem, 3vw, 2rem); border-left: 3px solid var(--iris); }
.glass-panel p { font-size: .98rem; line-height: 1.65; }
.split-band__media img {
  width: 100%; border-radius: var(--r-md); aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.choice-card.is-highlight { border-color: var(--iris); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(45,107,74,.08); }
.bg-ink .split-band__media img { border: 1px solid rgba(255,255,255,.12); }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.988);
  transition: opacity .65s var(--ease), transform .75s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-36px) rotate(-2.5deg); }
.reveal--right { transform: translateX(36px) rotate(2.5deg); }
.reveal--left.is-in, .reveal--right.is-in { transform: translateX(0) rotate(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive nav switch ---------- */
@media (min-width: 1024px) {
  .nav__menu { display: flex; }
  .nav__toggle { display: none; }
  .mobile-nav { display: none; }
}
@media (max-width: 1023px) {
  .nav__cta.is-desktop { display: none; }
}

/* ---------- Founder / mission band ---------- */
.founder__statement {
  font-family: var(--sans); font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 600;
  line-height: 1.45; color: var(--ink); max-width: 32ch; margin-inline: auto;
}
.founder__statement em { font-style: normal; font-weight: 700; color: var(--iris-deep); }
.founder__body { max-width: 60ch; margin: 1.3rem auto 0; }
.signature { margin-top: 1.7rem; font-family: var(--sans); font-style: normal; font-size: 1rem; font-weight: 500; color: var(--muted); }
.signature span {
  display: block; font-family: var(--sans); font-style: normal; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .45rem;
}
.reviews-mount:empty { display: none; }

/* ---------- Guarantee centerpiece ---------- */
.guarantee-hero {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem); text-align: center;
  box-shadow: var(--shadow-md);
}
.guarantee-hero__seal {
  width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 1.3rem;
  background: var(--iris-wash); border: 2px solid var(--iris);
  display: flex; align-items: center; justify-content: center;
}
.guarantee-hero__seal svg { width: 42px; height: 42px; color: var(--iris-deep); }
.guarantee-hero__seal--live {
  background: linear-gradient(165deg, #eef8f1 0%, #f8fcf9 100%);
  border-color: rgba(45,107,74,.45);
  box-shadow: 0 8px 28px rgba(45,107,74,.14);
}
.guarantee-check { width: 52px; height: 52px; color: #2d6b4a; }
.guarantee-check__ring {
  stroke-dasharray: 145; stroke-dashoffset: 145;
  animation: guarantee-ring 1.1s ease forwards .15s;
}
.guarantee-check__tick {
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: guarantee-tick .55s ease forwards .85s;
}
.guarantee-hero__seal--live { animation: guarantee-pulse 2.8s ease-in-out infinite 1.5s; }
.guarantee-hero h2 { margin-top: .6rem; }
.guarantee-hero .lead { max-width: 52ch; margin-inline: auto; }
.seal-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1.9rem; }
.seal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .58rem 1.05rem; font-size: .83rem; font-weight: 600; color: var(--ink);
}
.seal-row .seal.on-dark,
.bg-ink .seal-row .seal {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #E8F2EC;
}
.bg-ink .seal-row .seal svg { color: var(--gold-soft); }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 2.4rem 0 .7rem; }
.prose h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 600; margin: 1.6rem 0 .4rem; }
.prose p { font-size: .99rem; margin-bottom: .95rem; max-width: none; }
.prose ul { list-style: disc; padding-left: 1.35rem; margin: 0 0 1.05rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin: 0 0 1.05rem; }
.prose li { font-size: .99rem; margin-bottom: .4rem; }
.prose a { color: var(--iris-deep); box-shadow: inset 0 -1px 0 rgba(45,107,74,.3); }
.prose a:hover { box-shadow: inset 0 -2px 0 var(--iris); }
.prose .legal-meta { color: var(--muted); font-size: .86rem; margin-bottom: 1.6rem; }
.prose hr { margin: 2rem 0; }

/* ---------- Small screens ---------- */
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .hero__cta .btn, .cta-band .btn, .btn-group .btn, .buybox .btn { width: 100%; }
  .sticky-buy .btn, .mobile-promo-bar .btn, .nav__cart { width: auto; }
  .trust-row { gap: .75rem 1.2rem; }
}

/* ==========================================================================
   v3 LAYER - mint canvas · liquid glass · trust numerals · scrolling ticker
   Placed last so these overrides win the cascade.
   ========================================================================== */

/* ---- Trust numerals: prices, doses, stats in confident tabular sans ---- */
.stat__num, .spec-card__k, .bundle-card__now, .buy-headline__now,
.qty-tile__price, .freq-opt__price, .ing-panel__dose b {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.022em;
  font-feature-settings: "tnum" 1;
}
.ing-panel__dose { font-family: var(--sans); }
.bundle-card__now, .buy-headline__now { letter-spacing: -.03em; }
.stat__num span { font-weight: 700; }
.stat__count { font-variant-numeric: tabular-nums; }

/* ---- Liquid glass: header + dropdown ---- */
.site-header {
  background: rgba(246,242,236,.70);
  -webkit-backdrop-filter: saturate(175%) blur(16px);
          backdrop-filter: saturate(175%) blur(16px);
}
.site-header.is-scrolled {
  background: rgba(246,242,236,.92);
  border-bottom-color: rgba(200,192,182,.55);
}
.nav__dropdown {
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: cards ---- */
.stat, .feature-card, .tl-step, .insight-card, .choice-card, .kpi-card, .glass-panel {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.bundle-card, .guarantee-hero, .buybox {
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md), var(--glass-rim);
}
.bundle-card.is-featured {
  background: linear-gradient(165deg, rgba(243,250,246,.96) 0%, rgba(255,255,255,.94) 48%, rgba(238,246,240,.96) 100%);
  border-color: var(--iris);
}
.stat:hover, .feature-card:hover, .tl-step:hover, .bundle-card:hover,
.insight-card:hover, .choice-card:hover, .kpi-card:hover {
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: hero spec cards over video ---- */
.spec-card {
  background: rgba(255,255,255,.74);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-color: rgba(255,255,255,.5);
  box-shadow: var(--shadow-lg), var(--glass-rim);
}

/* ---- Liquid glass: sticky mobile buy bar ---- */
.sticky-buy {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
}

/* ---- Card sheen on hover ---- */
.stat::after, .feature-card::after, .tl-step::after, .bundle-card::after,
.insight-card::after, .choice-card::after, .kpi-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 0; opacity: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.55) 50%, transparent 62%);
  background-size: 250% 100%; background-position: 130% 0;
  transition: opacity .25s var(--ease), background-position .8s var(--ease);
}
.stat:hover::after, .feature-card:hover::after,
.tl-step:hover::after, .bundle-card:hover::after,
.insight-card:hover::after, .choice-card:hover::after, .kpi-card:hover::after {
  opacity: 1; background-position: -30% 0;
}
.stat > *, .feature-card > *, .tl-step > *, .bundle-card > *,
.insight-card > *, .choice-card > *, .kpi-card > * {
  position: relative; z-index: 1;
}

/* ---- Scrolling glass ticker (announcement bar) ---- */
.assurance-bar {
  width: 100%;
  max-width: 100%;
  contain: inline-size;
  background: linear-gradient(180deg, #D4E4DA 0%, var(--iris-wash) 55%, #EEF5F0 100%);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  color: var(--iris-deep);
  overflow: hidden;
  border-bottom: 1px solid rgba(45,107,74,.14);
}
.assurance-bar__item { color: var(--ink-soft); }
.assurance-bar__item svg { color: var(--iris-deep); }
.assurance-bar__item::after { background: var(--iris); opacity: .3; }
.assurance-bar__viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.assurance-bar__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  padding-block: .6rem;
  animation: ticker-scroll 42s linear infinite;
}
.assurance-bar:not(:hover) .assurance-bar__track { will-change: auto; }
@media (hover: hover) and (pointer: fine) {
  .assurance-bar__track { will-change: transform; }
}
.assurance-bar:hover .assurance-bar__track { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.assurance-bar__item {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .015em;
  padding-inline: 1.4rem;
}
.assurance-bar__item svg { width: 15px; height: 15px; flex-shrink: 0; }
.assurance-bar__item::after {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  margin-left: 2.8rem;
}
@media (prefers-reduced-motion: reduce) {
  .assurance-bar__track { animation: none; flex-wrap: wrap; justify-content: center; }
  .assurance-bar__viewport { overflow-x: auto; }
}

/* ---- Hero video: square source crops to cover on all sizes (no bars) ---- */
.hero__video-blur { display: none; }

/* ---- Extra reveal delays ---- */
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* ---------- Exit-intent popup ---------- */
.exit-overlay {
  position: fixed; inset: 0; background: rgba(9,26,15,.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.exit-modal {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); max-width: 480px; width: 100%;
  padding: 2.8rem 2.5rem 2.2rem; position: relative;
}
.exit-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--muted); padding: .2rem .5rem;
  transition: color .15s;
}
.exit-close:hover { color: var(--ink); }
.exit-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--iris); margin-bottom: .55rem;
}
.exit-headline { font-family: var(--sans); font-size: 1.75rem; font-weight: 700; color: var(--ink); margin-bottom: .9rem; line-height: 1.25; }
.exit-body { color: var(--body); line-height: 1.68; margin-bottom: 1.6rem; font-size: .97rem; }
.exit-cta { margin-bottom: .9rem; }
.exit-no-thanks {
  display: block; width: 100%; background: none; border: none; cursor: pointer;
  font-size: .85rem; color: var(--muted); text-align: center; padding: .4rem;
  transition: color .15s;
}
.exit-no-thanks:hover { color: var(--ink); }

/* ---------- Conversion optimization additions ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Subtle motion (conversion polish) ---------- */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 10px 34px rgba(45,107,74,.12), 0 0 0 1px rgba(45,107,74,.04); }
  50% { box-shadow: 0 14px 40px rgba(45,107,74,.17), 0 0 0 1px rgba(45,107,74,.09); }
}
@keyframes bundle-ring {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .75; transform: scale(1.018); }
}
@keyframes guarantee-ring {
  to { stroke-dashoffset: 0; }
}
@keyframes guarantee-tick {
  to { stroke-dashoffset: 0; }
}
@keyframes guarantee-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(45,107,74,.14); transform: scale(1); }
  50% { box-shadow: 0 10px 34px rgba(45,107,74,.22); transform: scale(1.04); }
}
@keyframes spec-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .bundle-card.is-featured { animation: none; }
  .bundle-card.is-featured::before { animation: none; opacity: .35; }
  .guarantee-hero__seal--live { animation: none; }
  .guarantee-check__ring, .guarantee-check__tick { animation: none; stroke-dashoffset: 0; }
  .hero--video .spec-card { animation: none; }
  .feature-card:hover .feature-card__icon svg,
  .bundle-card:hover .bundle-card__list svg { transform: none; }
  .qty-tile:hover { transform: none; }
}

/* Mobile: featured bundle card first */
@media (max-width: 799px) {
  .bundle-grid { display: flex; flex-direction: column; }
  .bundle-grid .bundle-card.is-featured { order: -1; }
  .bundle-card.is-featured { padding-top: 2.1rem; }
  .bundle-card.is-featured .bundle-card__flag { font-size: .72rem; }
}

.mobile-promo-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem clamp(1rem, 4vw, 1.5rem);
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(9,26,15,.12);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.mobile-promo-bar.is-visible { transform: translateY(0); }
.mobile-promo-bar__text { flex: 1; line-height: 1.25; font-size: .82rem; color: var(--ink-soft); }
.mobile-promo-bar__text strong { display: block; font-size: .92rem; color: var(--ink); }
.mobile-promo-bar .btn { flex-shrink: 0; font-size: .82rem; padding: .55rem .9rem; }
@media (min-width: 940px) { .mobile-promo-bar { display: none !important; } }
body.page-product .mobile-promo-bar { display: none !important; }
@media (max-width: 939px) {
  body:has(.mobile-promo-bar.is-visible),
  body:has(.sticky-buy.is-visible) {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

.email-capture-band {
  background: var(--iris-wash); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem); text-align: center;
}
.email-capture-band h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
.email-capture-band p { margin-inline: auto; max-width: 42ch; color: var(--body); margin-bottom: 1rem; }
.email-capture-band .email-form {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; max-width: 420px; margin-inline: auto;
}
.email-capture-band .email-form input {
  flex: 1 1 200px; min-width: 0; padding: .65rem .85rem;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white);
}
.email-capture-band .email-form__msg { width: 100%; font-size: .85rem; color: var(--iris-deep); }

.pdp__trust-seals {
  display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin-top: .75rem;
  font-size: .78rem; color: var(--muted);
}
.pdp__trust-seals span { display: inline-flex; align-items: center; gap: .35rem; }
.pdp__trust-seals svg { width: 14px; height: 14px; color: var(--iris); }

.buybox__sub-note {
  font-size: .82rem; color: var(--muted); margin-top: .65rem; line-height: 1.5;
}
.buybox__sub-note a { color: var(--iris-deep); text-decoration: underline; text-underline-offset: 2px; }

.support-callout {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem; padding: .65rem 1rem;
  background: rgba(255,255,255,.12); border-radius: var(--r-sm);
  font-size: .9rem;
}
.support-callout a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }

.exit-email-form { margin-bottom: .9rem; }
.exit-email-form input {
  width: 100%; padding: .7rem .85rem; margin-bottom: .65rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
}

.bonus-grid { display: grid; gap: .65rem; }
@media (min-width: 520px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-tile {
  text-align: left; padding: .85rem .9rem; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.bonus-tile.is-selected {
  border-color: var(--iris);
  box-shadow: 0 0 0 1px var(--iris), var(--shadow-sm);
}
.bonus-tile__name { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.bonus-tile__note { display: block; font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* ---------- Cart UX ---------- */
.nav__cart {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--iris);
  background: linear-gradient(145deg, #edf6ef 0%, #d8eadc 100%);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  box-shadow: 0 2px 10px rgba(45, 106, 70, 0.14);
}
.nav__cart svg {
  width: 21px; height: 21px; color: var(--iris-deep);
  animation: cart-nudge 2.4s ease-in-out infinite;
}
@keyframes cart-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.nav__cart:hover svg { animation-play-state: paused; }
.nav__cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--iris-deep); color: var(--white);
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5);
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.nav__cart-count.is-visible { opacity: 1; transform: scale(1); }
.nav__cart.is-bump { animation: cart-bump .45s var(--ease); }
.nav__cart.has-items { border-color: var(--iris); box-shadow: 0 0 0 3px var(--iris-wash); }
@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12); }
}
@media (min-width: 1024px) {
  .nav__cart { margin-left: .35rem; order: 1; }
  .nav__cta { order: 2; }
}
@media (max-width: 1023px) {
  .nav__cart { margin-left: auto; margin-right: .35rem; }
  .nav__toggle { margin-left: 0; }
}

.cart-drawer {
  position: fixed; inset: 0; z-index: 3000;
  pointer-events: none; visibility: hidden;
  overflow: clip;
}
.cart-drawer.is-open { pointer-events: auto; visibility: visible; }
.cart-drawer__overlay {
  position: fixed; inset: 0; z-index: 1;
  background: rgba(9,26,15,.45);
  opacity: 0; transition: opacity .28s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 2;
  width: min(100%, 420px);
  max-width: 100%;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(9,26,15,.15);
  display: flex; flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform .35s var(--ease);
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translate3d(0, 0, 0); }
@media (max-width: 939px) {
  .cart-drawer__panel {
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  body.cart-open .mobile-promo-bar,
  body.cart-open .sticky-buy { visibility: hidden; pointer-events: none; }
}
.cart-drawer__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.25rem 1.25rem .75rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--iris-deep); margin-bottom: .25rem;
}
.cart-drawer__head h2 { font-size: 1.35rem; margin: 0; }
.cart-drawer__close {
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: var(--muted); padding: .2rem .45rem; cursor: pointer;
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-drawer__empty { text-align: center; padding: 2rem 0; }
.cart-drawer__empty p { margin: 0 auto 1rem; color: var(--muted); }

.cart-progress {
  display: flex; align-items: center; gap: .35rem;
  padding: .85rem 1.25rem; background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: .72rem; font-weight: 600; color: var(--muted);
}
.cart-progress__step {
  display: flex; align-items: center; gap: .35rem; white-space: nowrap;
}
.cart-progress__step i {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: .65rem;
}
.cart-progress__step.is-active { color: var(--ink); }
.cart-progress__step.is-active i { background: var(--iris-deep); border-color: var(--iris-deep); color: var(--white); }
.cart-progress__step.is-done i { background: var(--iris); border-color: var(--iris); color: var(--white); }
.cart-progress__line { flex: 1; height: 2px; background: var(--line); min-width: 12px; }
.cart-progress__line.is-done { background: var(--iris); }

.cart-line {
  display: grid; grid-template-columns: 72px 1fr auto; gap: .85rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cart-line__img img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--line);
}
.cart-line__info strong { display: block; color: var(--ink); font-size: .95rem; }
.cart-line__info span { display: block; font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.cart-line__price { font-weight: 700; color: var(--ink) !important; margin-top: .35rem !important; }
.cart-line__remove {
  background: none; border: none; font-size: 1.4rem; color: var(--muted);
  line-height: 1; padding: .2rem; cursor: pointer;
}

.cart-drawer__summary { padding: 1rem 0; }
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; padding: .35rem 0;
}
.cart-drawer__row--muted { color: var(--muted); font-size: .88rem; }
.cart-drawer__subtotal { font-size: 1.15rem; color: var(--ink); }

.cart-drawer__trust {
  margin: 0 0 1rem; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: .45rem;
}
.cart-drawer__trust li {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; color: var(--body);
}
.cart-drawer__trust svg { width: 15px; height: 15px; color: var(--iris-deep); flex-shrink: 0; }

.cart-drawer__fine {
  font-size: .75rem; color: var(--muted); text-align: center;
  margin-top: .75rem; line-height: 1.5;
}

.cart-toast {
  position: fixed; bottom: 1.25rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 3100;
  background: var(--ink); color: var(--white);
  padding: .85rem 1.25rem; border-radius: var(--r-pill);
  font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  opacity: 0; max-width: min(92vw, 420px); text-align: center;
}
.cart-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
@media (max-width: 939px) {
  .cart-toast { bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
}

.cart-fly {
  position: fixed; z-index: 3200;
  width: 48px; height: 48px; pointer-events: none;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}
.cart-fly img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-md); }

.checkout-handoff {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(9,26,15,.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.checkout-handoff.is-visible { opacity: 1; visibility: visible; }
.checkout-handoff__card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; max-width: 400px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.checkout-handoff__card h2 { font-size: 1.35rem; margin: 1rem 0 .5rem; }
.checkout-handoff__card p { color: var(--body); font-size: .92rem; margin-bottom: 1.25rem; }
.checkout-handoff__spinner {
  width: 44px; height: 44px; margin: 0 auto;
  border: 3px solid var(--line);
  border-top-color: var(--iris-deep);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

body.cart-open,
body.checkout-handoff-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-success { background: var(--iris-deep) !important; border-color: var(--iris-deep) !important; }
.btn-spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle; margin-right: .35rem;
}
.btn-check { width: 18px; height: 18px; vertical-align: middle; margin-right: .25rem; }

/* ---------- Trust fallback + bundle social proof ---------- */
.trust-fallback {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: .85rem 1.6rem; margin-top: 1.75rem; padding: 0;
}
.trust-fallback li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .88rem; color: var(--body); font-weight: 500;
}
.trust-fallback svg { width: 18px; height: 18px; color: var(--iris); flex-shrink: 0; }
.bundle-social-proof {
  font-size: .92rem; font-weight: 600; color: var(--iris-deep);
  margin-top: .35rem;
}

/* ---------- Touch devices: disable sticky hover states ---------- */
@media (hover: none), (pointer: coarse) {
  .feature-card:hover, .bundle-card:hover, .qty-tile:hover,
  .stat:hover, .insight-card:hover, .choice-card:hover, .kpi-card:hover, .tl-step:hover,
  .persona-tile:hover {
    transform: none;
    box-shadow: var(--shadow-md), var(--glass-rim);
  }
  .feature-card:hover .feature-card__icon svg,
  .bundle-card:hover .bundle-card__list svg { transform: none; }
  .persona-tile:hover img { transform: none; }
  .stat:hover::after, .feature-card:hover::after, .tl-step:hover::after,
  .bundle-card:hover::after, .insight-card:hover::after,
  .choice-card:hover::after, .kpi-card:hover::after {
    opacity: 0;
  }
  .bundle-card.is-featured { animation: none; }
  .nav__link:hover::after { width: 0; }
  .nav__link.is-active::after { width: 100%; }
}

/* ---------- Mobile: solid glass (drop backdrop-filter for perf) ---------- */
@media (max-width: 768px) {
  .stat, .feature-card, .tl-step, .insight-card, .choice-card, .kpi-card, .glass-panel,
  .bundle-card, .guarantee-hero, .buybox {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: var(--white);
  }
  .bundle-card.is-featured {
    background: linear-gradient(165deg, #f3faf6 0%, var(--white) 48%, #eef6f0 100%);
  }
  .mobile-promo-bar {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: rgba(255,255,255,.97);
  }
}

