/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== Variables ===== */
:root {
  --purple: #5B5298;
  --purple-light: #746FA3;
  --lavender: #CCC9EB;
  --lavender-soft: #E6DEE9;
  --green: #8FAE5D;
  --ink: #2E2A3D;
  --bg: #F9F9F9;
  --bg-alt: #FFFFFF;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(91, 82, 152, 0.10);
  --shadow-md: 0 12px 32px rgba(91, 82, 152, 0.16);
  --shadow-lg: 0 20px 48px rgba(91, 82, 152, 0.22);
  --container-width: 1200px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, .font-display {
  font-family: 'Fraunces', serif;
  color: var(--purple);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
em { font-style: italic; font-weight: 500; }
p { color: var(--ink); }
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 14px;
}
.text-center { text-align: center; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* ===== Media (fills whichever sized container it's placed in) ===== */
.hero-media, .value-inline-img, .product-card-media, .usecase-media,
.intro-mask, .footer-mask {
  overflow: hidden;
}
.hero-media img, .value-inline-img img, .product-card-media img, .usecase-media img,
.intro-mask img, .footer-mask img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #4A4380; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; margin-top: 16px; }
.cart-icon { font-size: 0.95em; }

/* ===== Intro Mask Reveal ===== */
.intro-reveal {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  animation: introFadeOut 0.6s ease 1.6s forwards;
}
.intro-mark {
  display: flex; align-items: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(3rem, 10vw, 7rem);
  color: var(--white);
}
.intro-mask {
  display: inline-block; width: 0.9em; height: 1.15em; margin: 0 0.02em;
  border-radius: 20% ;
  overflow: hidden; position: relative;
  animation: introMaskIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.intro-cycle-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.3s ease;
}
.intro-cycle-img.active { opacity: 1; }
@keyframes introMaskIn { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes introFadeOut { from { opacity: 1; visibility: visible; } to { opacity: 0; visibility: hidden; } }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(249, 249, 249, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.site-header.scrolled { background: rgba(249, 249, 249, 0.96); box-shadow: var(--shadow-sm); }
@media (min-width: 769px) {
  .site-header.header-hidden { transform: translateY(-100%); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 26px 24px; transition: padding 0.3s ease; }
.site-header.scrolled .header-inner { padding: 16px 24px; }
.logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.5rem; color: var(--white); transition: color 0.3s ease; }
.site-header.scrolled .logo { color: var(--purple); }
.main-nav { display: flex; gap: 36px; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.3s ease; }
.site-header.scrolled .main-nav a { color: var(--ink); }
.main-nav a:hover { color: var(--lavender); }
.site-header.scrolled .main-nav a:hover { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 1100; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--white); transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease; }
.site-header.scrolled .hamburger span { background: var(--purple); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { padding: 0; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-overlay {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, rgba(46,42,61,0.15) 0%, rgba(46,42,61,0.05) 40%, rgba(46,42,61,0.55) 100%);
}
.hero-content { max-width: 560px; color: var(--white); }
.hero-content .eyebrow { color: var(--lavender); }
.hero-content h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-wordmark {
  position: absolute; bottom: -0.12em; left: 0; right: 0;
  font-family: 'Fraunces', serif; font-weight: 700; color: rgba(255,255,255,0.95);
  font-size: clamp(5rem, 18vw, 13rem); text-align: center; line-height: 1;
  pointer-events: none; user-select: none;
}
.rating-strip {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
  background: rgba(91, 82, 152, 0.55); backdrop-filter: blur(10px);
  padding: 14px 28px; border-radius: 999px; z-index: 2;
  max-width: 90%;
}
.rating-stars { color: #F4C95D; letter-spacing: 2px; }
.rating-strip p { color: var(--white); font-size: 0.88rem; margin: 0; }
.rating-divider { padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.3); }

/* ===== Trust Stats Bar ===== */
.stats-section { background: var(--purple); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-grid .stat-item:nth-child(1) { transition-delay: 0ms; }
.stats-grid .stat-item:nth-child(2) { transition-delay: 80ms; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 160ms; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 240ms; }
.stats-section .stat-number {
  display: block; font-family: 'Fraunces', serif; font-weight: 700; color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.stats-section .stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 8px; }

/* ===== Value Statement ===== */
.value-section { background: var(--bg-alt); }
.value-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.value-inner h2 { line-height: 1.3; }
.value-inner em {
  background: linear-gradient(135deg, var(--purple), var(--ink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.value-inline-img {
  display: inline-block; width: 110px; height: 110px; border-radius: 50%;
  vertical-align: middle; margin: 0 8px; transform: translateY(-6px);
}
.value-inner .btn { margin-top: 32px; }

/* ===== Benefits Grid ===== */
.benefits-section { background: var(--bg); padding-top: 0; position: relative; overflow: hidden; }
.benefits-bg-wrap {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden; z-index: 0; pointer-events: none;
}
.benefits-bg-text {
  display: block; white-space: nowrap; text-align: center;
  font-family: 'Fraunces', serif; font-weight: 700; color: var(--green);
  font-size: clamp(3.5rem, 12vw, 8.5rem); line-height: 1; letter-spacing: 0.02em;
  will-change: transform;
  transition: transform 0.1s linear;
}
.benefits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.benefit-item { text-align: center; }
.benefit-item:nth-child(1) { transition-delay: 0ms; }
.benefit-item:nth-child(2) { transition-delay: 80ms; }
.benefit-item:nth-child(3) { transition-delay: 160ms; }
.benefit-item:nth-child(4) { transition-delay: 240ms; }
.benefit-icon {
  width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--lavender-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 30px; height: 30px; }
.benefit-item p { font-size: 0.95rem; color: var(--purple-light); max-width: 220px; margin: 0 auto; }

/* ===== Ambassador Testimonial ===== */
.ambassador-section { background: var(--bg-alt); }
.ambassador-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.ambassador-inner blockquote p {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--purple); line-height: 1.4; margin-bottom: 24px;
}
.ambassador-inner cite { display: block; font-style: normal; font-weight: 600; color: var(--ink); font-family: 'Poppins', sans-serif; }
.ambassador-inner blockquote footer span { font-size: 0.85rem; color: var(--purple-light); }
.ambassador-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.ambassador-burst {
  position: absolute; width: 320px; height: 320px; background: var(--lavender);
  clip-path: polygon(
    50% 0%, 59.1% 16.2%, 75% 6.7%, 74.7% 25.3%, 93.3% 25%, 83.8% 40.9%,
    100% 50%, 83.8% 59.1%, 93.3% 75%, 74.7% 74.7%, 75% 93.3%, 59.1% 83.8%,
    50% 100%, 40.9% 83.8%, 25% 93.3%, 25.3% 74.7%, 6.7% 75%, 16.2% 59.1%,
    0% 50%, 16.2% 40.9%, 6.7% 25%, 25.3% 25.3%, 25% 6.7%, 40.9% 16.2%
  );
}
.ambassador-visual img {
  position: relative; z-index: 1; width: 240px; height: 300px; object-fit: cover;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
}

/* ===== Product Divider ===== */
.product-divider {
  padding: 60px 0; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, #EDEBE0, var(--bg));
}
.divider-text {
  display: inline-block;
  font-family: 'Fraunces', serif; font-weight: 700; color: var(--green);
  font-size: clamp(4rem, 14vw, 10rem); line-height: 1; letter-spacing: 0.02em;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ===== Product Cards ===== */
.product-cards-section { padding-top: 40px; }
.product-cards { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: -20px; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; width: 300px; text-align: center;
  box-shadow: var(--shadow-md);
  --tilt: 0deg;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.product-card.tilt-left { --tilt: -4deg; }
.product-card.tilt-right { --tilt: 4deg; }
/* Higher-specificity overrides needed so the tilt survives the generic
   .reveal transform (translateY) instead of one clobbering the other. */
.js-ready .product-card.reveal { transform: translateY(28px) rotate(var(--tilt)); }
.js-ready .product-card.reveal.in-view { transform: translateY(0) rotate(var(--tilt)); }
.product-card:hover,
.js-ready .product-card.reveal.in-view:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card-media { aspect-ratio: 3/4; border-radius: var(--radius-sm); margin-bottom: 16px; }
.product-tag { font-weight: 600; color: var(--purple); font-family: 'Fraunces', serif; font-size: 1.1rem; }

/* ===== How It Works (Process Timeline) ===== */
.process-section { background: var(--bg-alt); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; --fill: 0%; }
.timeline::before {
  content: ""; position: absolute; top: 28px; left: 16%; right: 16%; height: 1px;
  background: var(--lavender-soft); z-index: 0;
}
.timeline::after {
  content: ""; position: absolute; top: 28px; left: 16%; height: 2px;
  width: var(--fill); background: var(--green); z-index: 0;
  transition: width 0.1s linear;
}
.timeline-step { position: relative; z-index: 1; text-align: center; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--lavender-soft); color: var(--purple);
  border: 2px solid var(--lavender);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.timeline-num.active { background: var(--green); color: var(--white); border-color: transparent; }
.timeline-num.pulse { animation: nodePulse 0.4s ease; }
@keyframes nodePulse { 0% { transform: scale(1); } 50% { transform: scale(1.18); } 100% { transform: scale(1); } }
.timeline-step h3 { font-family: 'Fraunces', serif; color: var(--purple); font-size: 1.15rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.92rem; color: var(--purple-light); }

/* ===== Ingredients Spotlight ===== */
.ingredients-section { background: var(--bg); }
.ingredients-sub { color: var(--purple-light); max-width: 480px; margin: 12px auto 0; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.ingredients-grid .ingredient-card:nth-child(1) { transition-delay: 0ms; }
.ingredients-grid .ingredient-card:nth-child(2) { transition-delay: 90ms; }
.ingredients-grid .ingredient-card:nth-child(3) { transition-delay: 180ms; }
.ingredient-card { perspective: 1200px; height: 260px; cursor: pointer; }
.ingredient-card-inner {
  position: relative; width: 100%; height: 100%; text-align: center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
}
.ingredient-card:hover .ingredient-card-inner,
.ingredient-card.flipped .ingredient-card-inner,
.ingredient-card:focus-visible .ingredient-card-inner { transform: rotateY(180deg); }
.ingredient-face {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
}
.ingredient-front { background: var(--white); box-shadow: var(--shadow-sm); }
.ingredient-back { background: var(--purple); color: var(--white); transform: rotateY(180deg); }
.ingredient-icon { width: 56px; height: 56px; margin-bottom: 16px; color: var(--green); }
.ingredient-icon svg { width: 100%; height: 100%; }
.ingredient-front h4 { font-family: 'Fraunces', serif; color: var(--purple); font-size: 1.15rem; }
.ingredient-back p { font-size: 0.95rem; line-height: 1.6; }

/* ===== Social Proof ===== */
.social-section { background: var(--bg-alt); overflow: hidden; }
.social-marquee { margin-top: 56px; display: flex; flex-direction: column; gap: 20px; }
.marquee-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; }
.js-ready .marquee-row-1 .marquee-track { animation: marqueeLeft 26s linear infinite; }
.js-ready .marquee-row-2 .marquee-track { animation: marqueeRight 30s linear infinite; }
.js-ready .marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.social-item { flex: 0 0 auto; width: clamp(180px, 22vw, 240px); }
.social-media { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; }
.social-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.social-item:hover .social-media img { transform: scale(1.08); }
.social-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(46,42,61,0.75), rgba(46,42,61,0));
  color: var(--white); font-size: 0.85rem; font-weight: 600;
}

/* ===== Newsletter ===== */
.newsletter-section { background: var(--lavender-soft); text-align: center; }
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-inner p { color: var(--purple-light); margin-top: 12px; }
.newsletter-form { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 240px; padding: 14px 22px; border-radius: 999px; border: 1.5px solid var(--lavender);
  background: var(--white); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-form input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(91,82,152,0.14); }
.newsletter-success { display: none; margin-top: 20px; font-weight: 600; color: var(--green); }
.newsletter-success.visible { display: block; animation: successPop 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes successPop { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ===== Nutrients Starburst ===== */
.nutrients-section { background: var(--bg-alt); }
.starburst-row {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 64px;
}
.starburst {
  width: 160px; height: 160px; flex-shrink: 0;
  background: var(--lavender);
  clip-path: polygon(
    50% 0%, 59.1% 16.2%, 75% 6.7%, 74.7% 25.3%, 93.3% 25%, 83.8% 40.9%,
    100% 50%, 83.8% 59.1%, 93.3% 75%, 74.7% 74.7%, 75% 93.3%, 59.1% 83.8%,
    50% 100%, 40.9% 83.8%, 25% 93.3%, 25.3% 74.7%, 6.7% 75%, 16.2% 59.1%,
    0% 50%, 16.2% 40.9%, 6.7% 25%, 25.3% 25.3%, 25% 6.7%, 40.9% 16.2%
  );
  display: flex; align-items: center; justify-content: center;
  transform: rotate(var(--rot, 0deg)) scale(0.6); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1), opacity 0.6s ease;
}
.js-ready .starburst.in-view { opacity: 1; transform: rotate(var(--rot, 0deg)) scale(1); }
.starburst:hover { transform: rotate(0deg) scale(1.08); }
.starburst span {
  transform: rotate(calc(var(--rot, 0deg) * -1));
  font-weight: 600; font-size: 0.9rem; color: var(--purple); text-align: center; padding: 0 20px;
}
.starburst:hover span { transform: rotate(0deg); transition: transform 0.4s ease; }

/* ===== Use Case Rows ===== */
.usecase-section { background: var(--bg); }
.usecase-rows { margin-top: 64px; }
.usecase-row { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 56px; align-items: center; }
.usecase-row:not(:last-child) { margin-bottom: 72px; }
.usecase-row:nth-child(even) { direction: rtl; }
.usecase-row:nth-child(even) > * { direction: ltr; }
.usecase-media { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; max-width: 300px; }
.usecase-row:nth-child(even) .usecase-media { margin-left: auto; }
.usecase-text h4 { font-family: 'Fraunces', serif; color: var(--purple); font-size: 1.5rem; margin-bottom: 12px; }
.usecase-text p { font-size: 1rem; color: var(--purple-light); max-width: 460px; line-height: 1.7; }

/* Directional slide-in, alternating per row — higher specificity so it
   overrides (rather than fights) the generic .reveal translateY. */
.js-ready .usecase-media.reveal { transform: translateX(-60px); }
.js-ready .usecase-text.reveal { transform: translateX(60px); }
.js-ready .usecase-row:nth-child(even) .usecase-media.reveal { transform: translateX(60px); }
.js-ready .usecase-row:nth-child(even) .usecase-text.reveal { transform: translateX(-60px); }
.js-ready .usecase-media.reveal.in-view,
.js-ready .usecase-text.reveal.in-view,
.js-ready .usecase-row:nth-child(even) .usecase-media.reveal.in-view,
.js-ready .usecase-row:nth-child(even) .usecase-text.reveal.in-view { transform: translateX(0); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--lavender-soft); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; text-align: left; font-weight: 600; color: var(--purple); font-size: 1.02rem;
  font-family: 'Fraunces', serif;
}
.faq-icon { flex-shrink: 0; font-size: 1.3rem; color: var(--green); transition: transform 0.25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 4px 22px; color: var(--purple-light); font-size: 0.95rem; opacity: 0; transition: opacity 0.25s ease; }
.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-inner { opacity: 1; transition-delay: 0.1s; }

/* ===== Shop Now ===== */
.shop-now-section {
  position: relative; overflow: hidden; text-align: center;
  min-height: 460px; padding: 100px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #6EC1E4 0%, #4A7FD4 60%, #3D63C9 100%);
}
.shop-now-text {
  display: block; white-space: nowrap;
  font-family: 'Fraunces', serif; font-weight: 700; color: rgba(255,255,255,0.96);
  font-size: clamp(2.6rem, 10vw, 6.5rem); line-height: 1; letter-spacing: 0.01em;
  margin-bottom: 40px;
  will-change: transform;
  transition: transform 0.1s linear;
}
.shop-now-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.btn-market-a { background: #1E8A5F; color: var(--white); }
.btn-market-a:hover { background: #17724D; transform: translateY(-2px); }
.btn-market-b { background: #E85D3D; color: var(--white); }
.btn-market-b:hover { background: #D14A2B; transform: translateY(-2px); }
.shop-now-distributor { color: rgba(255,255,255,0.92); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===== Footer ===== */
.site-footer { background: var(--lavender-soft); padding-top: 72px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 56px; }
.footer-col h4 { font-family: 'Fraunces', serif; color: var(--purple); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--purple-light); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--purple); }
.footer-outro { position: relative; }
.footer-wordmark {
  display: flex; align-items: flex-end; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; color: var(--purple);
  font-size: clamp(4rem, 16vw, 11rem); line-height: 0.85;
  padding-top: 20px;
}
.footer-mask {
  display: inline-block; width: 1.1em; height: 0.9em; margin: 0 0.02em 0.05em;
  border-radius: 8% 8% 0 0;
  transform: translateY(0.05em);
}

/* ===== Scroll reveal =====
   Gated behind .js-ready (set synchronously in <head>) so content is
   visible by default if JS is disabled/blocked/fails to load. */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.js-ready .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { transition: opacity 0.4s ease; transform: none; }
  .js-ready .product-card.reveal,
  .js-ready .product-card.reveal.in-view { transition: opacity 0.4s ease; transform: rotate(var(--tilt)); }
  .js-ready .usecase-media.reveal,
  .js-ready .usecase-text.reveal,
  .js-ready .usecase-row:nth-child(even) .usecase-media.reveal,
  .js-ready .usecase-row:nth-child(even) .usecase-text.reveal { transition: opacity 0.4s ease; transform: none; }
  .intro-reveal, .intro-mask { animation: none; }
  .intro-reveal { display: none; }
  .starburst { transition: opacity 0.4s ease; transform: rotate(0deg) scale(1) !important; }
  .ingredient-card-inner { transition: none; }
  .js-ready .marquee-row-1 .marquee-track,
  .js-ready .marquee-row-2 .marquee-track { animation: none; }
  .marquee-row { overflow-x: auto; }
  .timeline-num.pulse { animation: none; }
  .newsletter-success.visible { animation: none; }
}

/* ===== Mobile ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .ambassador-inner { grid-template-columns: 1fr; text-align: center; }
  .ambassador-inner blockquote footer { display: flex; flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed; inset: 0; background: var(--purple); display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 1050;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav { flex-direction: column; gap: 28px; }
  .main-nav a { color: var(--white); font-size: 1.4rem; }
  .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .product-cards { flex-direction: column; align-items: center; }
  .usecase-row, .usecase-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .usecase-row:not(:last-child) { margin-bottom: 40px; }
  .usecase-media, .usecase-row:nth-child(even) .usecase-media { max-width: 260px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before, .timeline::after { display: none; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .ingredient-card { max-width: 320px; margin: 0 auto; }
  .social-item { width: clamp(140px, 42vw, 200px); }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  section { padding: 70px 0; }
}
