/* VitalFactors funnel — white/light palette, kinetic scroll */

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
sup { font-size: .55em; vertical-align: super; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --surface:     #faf6ef;
  --surface-2:   #f4ead7;
  --border:      #eadfc8;
  --border-2:    #d9cbae;
  --ink:         #15181f;
  --body:        #42495a;
  --muted:       #6d7686;
  --blue:        #0c71c3;
  --blue-dark:   #0a5a9c;
  --blue-glow:   rgba(12,113,195,.18);
  --blue-faint:  rgba(12,113,195,.07);
  --gold:        #b88e4a;
  --star:        #d99b2a;
  --green:       #1a8a5a;
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
  --trans: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, .logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; }
p  { line-height: 1.7; color: var(--body); }
em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .65rem;
}
.section-sub {
  max-width: 560px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.65;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2.5rem); }

/* ── Ambient orbs ───────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  will-change: transform;
}
.orb--1 { width: 600px; height: 600px; background: rgba(12,113,195,.07); top: -180px; right: -200px; }
.orb--2 { width: 400px; height: 400px; background: rgba(184,142,74,.08); top: 200px; left: -180px; }
.orb--3 { width: 300px; height: 300px; background: rgba(12,113,195,.05); top: 55%; right: 5%; }
.orb--4 { width: 500px; height: 500px; background: rgba(184,142,74,.07); top: -100px; right: -150px; }
.orb--5 { width: 400px; height: 400px; background: rgba(12,113,195,.06); top: 50%; left: -100px; }
.orb--6 { width: 600px; height: 600px; background: rgba(12,113,195,.05); bottom: -200px; right: -200px; }
.orb--7 { width: 500px; height: 500px; background: rgba(184,142,74,.07); top: -100px; left: -100px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 100px;
  padding: .8rem 1.7rem;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 6px 28px var(--blue-glow); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--sm  { font-size: .85rem; padding: .55rem 1.2rem; }
.btn--lg  { font-size: 1rem;   padding: .9rem 2rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Progress bar ───────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 1000;
  transition: width .1s linear;
}

/* ── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta__text { display: flex; flex-direction: column; gap: .15rem; }
.sticky-cta__text strong { font-size: .9rem; color: var(--ink); }
.sticky-cta__text span { font-size: .75rem; color: var(--muted); }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1rem 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: .65rem 0;
}
.site-header__inner {
  display: flex; align-items: center; gap: 2rem;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
}
.logo-text--light { color: rgba(255,255,255,.9); }
.site-header__nav {
  display: flex; gap: 1.75rem;
  margin-left: auto;
}
.site-header__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--body);
  transition: color var(--trans);
}
.site-header__nav a:hover { color: var(--blue); }
.site-header__actions { margin-left: 1rem; }
.site-header__hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.site-header__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}
@media (max-width: 767px) {
  .site-header__nav, .site-header__actions { display: none; }
  .site-header__hamburger { display: flex; }
}

/* ── Anno strip ─────────────────────────────────────────── */
.anno {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.anno__sep { color: var(--border-2); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(5rem,9vw,7.5rem) 0 clamp(3rem,6vw,5rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem,5vw,5rem);
}
.hero__content { position: relative; z-index: 1; }
.hero__title {
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.hero__title em { color: var(--blue); }
/* title starts visible — GSAP fades it in */
.hero__title { opacity: 1; }
.hero__body {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.25rem;
  color: var(--body);
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.stars { color: var(--star); letter-spacing: .05em; font-size: 1.05rem; }
.hero__rating span { font-size: .9rem; color: var(--muted); }
.hero__rating strong { color: var(--ink); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: .85rem; }
.hero__guarantee {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
}
.hero__guarantee svg { flex-shrink: 0; color: var(--green); }

/* fade-up base */
.js-fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay, 0s); }
.js-fade-up.is-in { opacity: 1; transform: translateY(0); }

/* hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.hero__product-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(12,113,195,.13), 0 4px 16px rgba(0,0,0,.05);
  overflow: hidden;
}
.hero__product-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(12,113,195,.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero__product-img {
  position: relative; z-index: 1;
  max-width: 280px;
}

/* dissolve glass (CSS art) */
.hero__dissolve {
  position: absolute;
  bottom: -20px;
  right: -40px;
  z-index: 2;
}
.dissolve__glass {
  width: 80px; height: 100px;
  background: rgba(255,255,255,.6);
  border: 1.5px solid rgba(12,113,195,.2);
  border-radius: 4px 4px 8px 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.dissolve__water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(12,113,195,.15), rgba(12,113,195,.3));
  animation: waterRipple 3s ease-in-out infinite;
}
@keyframes waterRipple {
  0%, 100% { height: 60%; }
  50% { height: 62%; }
}
.dissolve__fizz {
  position: absolute;
  bottom: 20%; left: 0; right: 0;
  height: 50%;
}
.dissolve__fizz span {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(12,113,195,.6);
  border-radius: 50%;
  animation: fizz 2s ease-in infinite;
}
.dissolve__fizz span:nth-child(1) { left: 20%; animation-delay: 0s; }
.dissolve__fizz span:nth-child(2) { left: 40%; animation-delay: .4s; }
.dissolve__fizz span:nth-child(3) { left: 60%; animation-delay: .8s; }
.dissolve__fizz span:nth-child(4) { left: 30%; animation-delay: 1.2s; }
.dissolve__fizz span:nth-child(5) { left: 70%; animation-delay: 1.6s; }
@keyframes fizz {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* data cards */
.data-card {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 120px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.data-card.is-in { opacity: 1; transform: translateY(0); }
.data-card--1 { top: 6%; left: -8%; transition-delay: .3s; }
.data-card--2 { top: 42%; right: -6%; transition-delay: .5s; }
.data-card--3 { bottom: 8%; left: 2%; transition-delay: .7s; }
.data-card__value { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; color: var(--blue); }
.data-card__note { font-size: .72rem; color: var(--muted); }
.data-card__num { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.data-card__label { font-size: .72rem; color: var(--muted); }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__body, .hero__rating, .hero__cta, .hero__guarantee { justify-content: center; }
  .hero__body { margin-left: auto; margin-right: auto; }
  .hero__visual { min-height: 300px; margin-top: 2rem; }
  .data-card--1 { top: 0; left: 0; }
  .data-card--2 { top: auto; bottom: 50%; right: 0; }
  .data-card--3 { bottom: 0; left: 0; }
}

/* ── Press bar ──────────────────────────────────────────── */
.press {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
  overflow: hidden;
}
.press__track-wrap {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.press__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  flex-shrink: 0;
  animation: pressScroll 22s linear infinite;
}
@keyframes pressScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.press__label { font-size: .78rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.press__logo { font-size: .85rem; font-weight: 600; color: var(--body); white-space: nowrap; letter-spacing: .01em; }
.press__div { color: var(--border-2); font-size: .7rem; }

/* ── Section head ───────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem,5vw,4rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.section-head.is-in { opacity: 1; transform: translateY(0); }
.section-head h2 { margin-bottom: .2rem; }

/* ── Science / problem ──────────────────────────────────── */
.science {
  position: relative;
  padding: clamp(4rem,8vw,7rem) 0;
  overflow: hidden;
}
.decline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(3rem,6vw,5rem);
}
.decline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2.5rem;
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.decline-card.is-in { opacity: 1; transform: translateY(0); }
.decline-card__stat {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.decline-card__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem,6vw,5rem);
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .3rem;
}
.decline-card__label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.decline-card__body h3 { margin-bottom: .6rem; color: var(--ink); }
.decline-card__body p { font-size: .95rem; line-height: 1.7; }
@media (max-width: 680px) { .decline-grid { grid-template-columns: 1fr; } }

/* big stats */
.science__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.science__stats.is-in { opacity: 1; transform: translateY(0); }
.big-stat {
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.big-stat.is-in { opacity: 1; transform: translateY(0); }
.big-stat__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.big-stat__label { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
@media (max-width: 680px) { .science__stats { grid-template-columns: repeat(2, 1fr); } }

/* js-reveal */
.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── Orbital ingredient scene ────────────────────────────── */
.orbital {
  position: relative;
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.orbital__sticky {
  position: relative;
  display: flex;
  align-items: center;
}
.orbital__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,6rem);
  align-items: center;
  width: 100%;
}
.orbital__copy { position: relative; z-index: 2; }
.orbital__copy .eyebrow { margin-bottom: .75rem; }
.orbital__line {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem,3.2vw,2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  opacity: 0; transform: translateX(-32px);
}
.orbital__line--em { color: var(--blue); font-style: italic; }
.orbital__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--body);
  max-width: 420px;
  line-height: 1.7;
  opacity: 0; transform: translateY(16px);
}
.orbital__product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  opacity: 0; transform: scale(0.65);
}
.orbital__glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--blue-faint) 0%, transparent 70%);
  border-radius: 50%;
}
.orbital__circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px; height: 260px;
}
.orbital__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.orbital__ring--1 { width: 240px; height: 240px; opacity: .5; }
.orbital__ring--2 { width: 320px; height: 320px; opacity: .25; }
.orbital__img {
  position: relative; z-index: 1;
  width: 180px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 24px rgba(12,113,195,.12));
}

/* ingredient chips */
.ingredient-chip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .45rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
}
.ingredient-chip strong { font-size: .85rem; color: var(--ink); font-weight: 600; }
.ingredient-chip span  { font-size: .75rem; color: var(--muted); }
.chip--tl { top: 2%;  left: -2%; }
.chip--tr { top: 2%;  right: -2%; }
.chip--ml { top: 42%; left: -18%; }
.chip--mr { top: 42%; right: -18%; }
.chip--bl { bottom: 2%; left: -2%; }
.chip--br { bottom: 2%; right: -2%; }

@media (max-width: 768px) {
  .orbital__inner { grid-template-columns: 1fr; text-align: center; }
  .orbital__copy { order: 2; }
  .orbital__product { order: 1; min-height: 280px; }
  .chip--ml { left: -10%; }
  .chip--mr { right: -10%; }
}

/* ── How it works / steps ───────────────────────────────── */
.how {
  padding: clamp(4rem,8vw,7rem) 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
.step.is-in { opacity: 1; transform: translateY(0); }
.step__num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: .75rem;
}
.step__icon {
  color: var(--blue);
  margin: 0 auto .75rem;
  width: 40px; height: 40px;
}
.step h3 { margin-bottom: .65rem; }
.step p  { font-size: .9rem; line-height: 1.7; }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } }

/* ── Cuomo quote ─────────────────────────────────────────── */
.cuomo {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem,6vw,5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cuomo__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem,4vw,4rem);
}
.cuomo__figure { flex-shrink: 0; }
.cuomo__figure img {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid var(--border);
  object-fit: cover;
}
.cuomo__content { flex: 1; }
.cuomo__content .eyebrow { margin-bottom: .5rem; }
.cuomo__quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem,2.5vw,1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: .9rem;
}
.cuomo__quote p em { color: var(--blue); font-style: italic; }
.cuomo__quote footer { font-size: .88rem; color: var(--muted); }
.cuomo__quote cite strong { color: var(--ink); font-style: normal; }
@media (max-width: 600px) {
  .cuomo__inner { flex-direction: column; text-align: center; }
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials {
  padding: clamp(4rem,8vw,7rem) 0 clamp(2rem,4vw,3rem);
  overflow: hidden;
}
.testi__track-wrap {
  display: flex;
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.testi__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  flex-shrink: 0;
  animation: testiScroll 35s linear infinite;
}
.testi__track:hover { animation-play-state: paused; }
@keyframes testiScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.testi__card {
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.testi__stars { color: var(--star); font-size: 1rem; letter-spacing: .05em; }
.testi__card p { font-size: .9rem; line-height: 1.65; color: var(--body); flex: 1; }
.testi__card footer { font-size: .8rem; color: var(--muted); }
.testi__card footer strong { color: var(--ink); font-weight: 600; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative;
  overflow: hidden;
}
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 2rem;
}
.pricing__card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2.5rem;
  position: relative;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease, box-shadow var(--trans);
  transition-delay: var(--delay, 0s);
}
.pricing__card.is-in { opacity: 1; transform: translateY(0); }
.pricing__card:hover { box-shadow: var(--shadow-lg); }
.pricing__card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
}
.pricing__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing__plan-name {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .35rem;
}
.pricing__price {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem,5vw,3.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.pricing__period { font-size: 1rem; color: var(--muted); }
.pricing__save {
  font-size: .82rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}
.pricing__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.75rem;
}
.pricing__perks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--body);
}
.pricing__perks svg { flex-shrink: 0; color: var(--green); }
.pricing__perk--muted { color: var(--muted); }
.pricing__perk--muted svg { color: var(--border-2); }
.pricing__fine { font-size: .75rem; color: var(--muted); margin-top: .75rem; text-align: center; }
.pricing__note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
.pricing__note svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
@media (max-width: 600px) {
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__card--featured { order: -1; }
}

/* ── Guarantee ──────────────────────────────────────────── */
.guarantee {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem,6vw,5.5rem) 0;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem,4vw,4rem);
}
.guarantee__badge { flex-shrink: 0; }
.guarantee__copy { flex: 1; }
.guarantee__copy .eyebrow { margin-bottom: .5rem; }
.guarantee__copy h2 { margin-bottom: .75rem; }
.guarantee__copy p { font-size: 1rem; margin-bottom: 1.5rem; max-width: 520px; }
@media (max-width: 600px) {
  .guarantee__inner { flex-direction: column; text-align: center; }
  .guarantee__copy p { margin-left: auto; margin-right: auto; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: clamp(4rem,8vw,7rem) 0; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color var(--trans);
}
.faq__q:hover { color: var(--blue); }
.faq__q[aria-expanded="true"] { color: var(--blue); }
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__chevron { flex-shrink: 0; color: var(--muted); transition: transform .3s ease, color var(--trans); }
.faq__q[aria-expanded="true"] .faq__chevron { color: var(--blue); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
}
.faq__a.is-open { max-height: 400px; padding-bottom: 1.25rem; }
.faq__a p { font-size: .93rem; color: var(--body); line-height: 1.7; }

/* ── Closer CTA ─────────────────────────────────────────── */
.closer {
  padding: clamp(5rem,10vw,8rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closer__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.closer__inner .eyebrow { margin-bottom: .5rem; }
.closer__inner h2 { margin-bottom: .85rem; }
.closer__inner h2 em { color: var(--blue); }
.closer__inner p { font-size: 1.05rem; margin-bottom: 1.75rem; }
.closer__cta { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.closer__sub { font-size: .83rem; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: clamp(2.5rem,5vw,4rem) 0 2rem;
  color: rgba(255,255,255,.6);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
}
.site-footer__brand .logo-text--light {
  display: block;
  margin-bottom: .75rem;
  font-size: 1.2rem;
}
.site-footer__brand p { font-size: .85rem; line-height: 1.6; }
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  justify-self: center;
}
.site-footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.site-footer__links a:hover { color: #fff; }
.site-footer__legal { justify-self: end; text-align: right; }
.site-footer__legal p { font-size: .75rem; line-height: 1.5; }
.site-footer__legal .disclaimer {
  font-size: .7rem;
  margin-top: .75rem;
  color: rgba(255,255,255,.35);
  max-width: 280px;
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__links { justify-self: start; }
  .site-footer__legal { justify-self: start; text-align: left; }
  .site-footer__legal .disclaimer { text-align: left; max-width: none; }
}
