/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 1406:0 Unexpected "<"

**/
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette — drawn directly from packaging */
  --teal:       #32B8B4;
  --teal-dk:    #228A87;
  --teal-dkr:   #1A6E6B;
  --teal-lt:    #7DD4D1;
  --teal-pale:  #D6F0EF;
  --teal-faint: #EEF8F8;

  --amber:      #E8820C;
  --amber-dk:   #C46A06;
  --amber-lt:   #F5A840;
  --amber-pale: #FEF0D8;

  --ink:        #16211F;   /* near-black with a teal tinge */
  --bark:       #2D4440;   /* dark teal-green for body text */
  --mist:       #5A7876;   /* mid-tone for secondary text */
  --fog:        #A8C4C2;   /* light for labels, rules */
  --pearl:      #F4FAFA;   /* near-white with a teal blush */
  --white:      #FFFFFF;
  --warm:       #FBF7F0;   /* warm off-white for contrast sections */

  /* Type */
  --display: 'Barlow Condensed', sans-serif;
  --body:    'Barlow', sans-serif;
  --serif:   'Lora', serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  font-family: var(--body);
  color: var(--bark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 998; pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════ */
.ann {
  background: var(--ink);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.ann a {
  color: var(--teal-lt);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(125,212,209,.35);
  transition: border-color .2s;
}
.ann a:hover { border-color: var(--teal-lt); }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  height: 70px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 24px rgba(26,110,107,.25);
  overflow: hidden;
}

/* Subtle wave texture on nav */
.nav::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 0% 50%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 120% at 100% 50%, rgba(26,110,107,.3) 0%, transparent 55%);
}

.logo {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .06em;
  color: white;
  text-decoration: none;
  z-index: 1;
  line-height: 1;
}
.logo sup {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .12em;
  opacity: .6;
  margin-left: 2px;
  vertical-align: super;
  font-family: var(--body);
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 36px; list-style: none; z-index: 1;
}
.nav-links a {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: white; }

.nav-right { display: flex; align-items: center; gap: 14px; z-index: 1; }
.nav-cart {
  font-family: var(--body);
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.nav-cart:hover { color: white; }
.nav-shop {
  background: var(--amber);
  color: white;
  font-family: var(--body);
  font-size: 12px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 3px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.nav-shop:hover { background: var(--amber-dk); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   HERO — horizontal split, white left
════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

/* LEFT — white, generous type */
.hero-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 52px;
  position: relative;
  animation: fadeIn .6s ease both;
}

/* thin teal left-edge accent bar */
.hero-left::before {
  content: '';
  position: absolute;
  left: 0; top: 40px; bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
  border-radius: 2px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-dk);
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 0;
}
/* the emotional line goes serif italic */
.hero-h1 .serif-line {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: .75em;
  text-transform: none;
  line-height: 1.2;
  color: var(--teal-dk);
  letter-spacing: -.01em;
  margin-top: 4px;
}
.hero-h1 .serif-line em {
  color: var(--amber);
  font-style: italic;
}

.hero-rule {
  width: 48px; height: 2px;
  background: var(--teal);
  margin: 28px 0;
  border-radius: 1px;
}

.hero-body {
  font-family: var(--body);
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--mist);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-body strong {
  font-weight: 600; color: var(--bark);
}

/* Purchase toggle */
.pt-wrap {
  background: var(--teal-faint);
  border: 1px solid var(--teal-pale);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  width: fit-content;
  margin-bottom: 20px;
}
.pt-opt {
  font-family: var(--body);
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: var(--mist);
  background: none; border: none; cursor: pointer;
  padding: 9px 18px; border-radius: 5px;
  transition: all .2s;
}
.pt-opt.active {
  background: var(--teal);
  color: white;
  font-weight: 600;
}
.pt-save {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-size: 9px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px;
  margin-left: 6px; vertical-align: middle;
}

.cta-row {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px;
}
.cta-main {
  background: var(--teal);
  color: white;
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 3px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; gap: 10px;
}
.cta-main:hover { background: var(--teal-dk); transform: translateY(-1px); }
.cta-arr {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.18); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1;
  transition: transform .2s;
}
.cta-main:hover .cta-arr { transform: translateX(2px); }
.cta-learn {
  font-family: var(--body);
  font-size: 13px; font-weight: 400;
  color: var(--mist);
  background: none; border: none;
  border-bottom: 1px solid var(--fog);
  padding-bottom: 2px; cursor: pointer;
  letter-spacing: .02em;
  transition: color .2s, border-color .2s;
}
.cta-learn:hover { color: var(--bark); border-color: var(--mist); }

/* Trust tickers */
.trust-row {
  display: flex; gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--teal-pale);
}
.tr-item {
  flex: 1;
  padding-right: 20px; margin-right: 20px;
  border-right: 1px solid var(--teal-pale);
}
.tr-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.tr-num {
  font-family: var(--display);
  font-size: 26px; font-weight: 800;
  color: var(--teal-dk);
  line-height: 1; margin-bottom: 2px;
  letter-spacing: -.01em;
}
.tr-label {
  font-size: 10px; font-weight: 400;
  color: var(--fog);
  letter-spacing: .05em; line-height: 1.45;
}

/* RIGHT — teal background, product */
.hero-right {
  background: var(--teal);
  position: relative; overflow: hidden;
  animation: fadeIn .9s .1s ease both;
}

/* wave stripe texture */
.hero-right::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255,255,255,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(26,110,107,.5) 0%, transparent 55%);
}

/* Large ghosted 4 */
.hero-ghost-4 {
  position: absolute;
  font-family: var(--display);
  font-size: 560px; font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1;
  right: -40px; top: -40px;
  pointer-events: none; user-select: none;
  z-index: 1;
}

/* teal wave at bottom — mirrors packaging */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  pointer-events: none;
}

.product-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center;
  animation: riseIn 1s .4s ease both;
}
.product-pouch {
  width: 200px; height: auto;
  filter: drop-shadow(0 20px 50px rgba(26,110,107,.4)) drop-shadow(0 4px 12px rgba(0,0,0,.15));
  transition: transform .5s ease;
}
.product-pouch:hover { transform: translateY(-6px) scale(1.02); }

/* Floating data cards */
.data-card {
  position: absolute; z-index: 5;
  background: white;
  border-radius: 10px;
  animation: fadeUp .7s ease both;
}
.dc-dose {
  top: 32px; left: 24px;
  animation-delay: .9s;
  padding: 14px 18px;
}
.dc-cert {
  top: 32px; right: 24px;
  animation-delay: 1.0s;
  padding: 14px 16px;
  text-align: center;
}
.dc-review {
  bottom: 80px; left: 20px;
  animation-delay: 1.1s;
  padding: 14px 18px;
  max-width: 210px;
}
.dc-price {
  bottom: 72px; right: 20px;
  animation-delay: 1.2s;
  padding: 14px 18px;
  min-width: 140px;
  text-align: center;
}

.dc-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 6px;
}
.dc-value {
  font-family: var(--display);
  font-size: 28px; font-weight: 800;
  color: var(--teal-dk);
  line-height: 1; margin-bottom: 2px;
  letter-spacing: -.01em;
}
.dc-sub {
  font-size: 10px; font-weight: 400;
  color: var(--mist);
  letter-spacing: .03em;
}

.dc-cert .cert-ring {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  margin: 0 auto 6px;
}
.dc-cert .cert-name {
  font-size: 11px; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}
.dc-cert .cert-sub2 {
  font-size: 9px; color: var(--fog); letter-spacing: .04em;
}

.review-stars { color: var(--amber); font-size: 12px; margin-bottom: 6px; }
.review-q {
  font-family: var(--serif);
  font-size: 13px; font-style: italic;
  color: var(--ink); line-height: 1.55;
  margin-bottom: 5px;
}
.review-who { font-size: 10px; color: var(--fog); }

.price-was {
  font-size: 11px; color: rgba(22,33,31,.25);
  text-decoration: line-through; margin-bottom: 2px;
}
.price-now {
  font-family: var(--display);
  font-size: 34px; font-weight: 800;
  color: var(--ink); line-height: 1; margin-bottom: 2px;
  letter-spacing: -.01em;
}
.price-period { font-size: 10px; color: var(--mist); margin-bottom: 10px; }
.add-btn {
  background: var(--teal);
  color: white;
  font-family: var(--body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 3px; border: none; cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.add-btn:hover { background: var(--teal-dk); }

/* ════════════════════════════════════════════
   PROOF BAR
════════════════════════════════════════════ */
.proof-bar {
  background: var(--ink);
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
}
.proof-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(50,184,180,.06) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.pb-item {
  flex: 1;
  display: flex; align-items: center; gap: 18px;
  padding: 28px 36px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
@media (max-width: 640px) {
  .proof-bar { flex-direction: column; }
  .pb-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 22px 24px;
  }
  .pb-item:last-child { border-bottom: none; }
}
.pb-item:last-child { border-right: none; }
.pb-n {
  font-family: var(--display);
  font-size: 48px; font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1; flex-shrink: 0;
  letter-spacing: -.02em;
}
.pb-title {
  font-family: var(--body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: white; margin-bottom: 4px;
}
.pb-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.42);
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 52px;
}
.s-tag {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.s-tag-pip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.s-tag-text {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-dk);
}
.s-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800; text-transform: uppercase;
  line-height: .96; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 0;
}
.s-headline .serif-note {
  display: block;
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: .68em; text-transform: none;
  color: var(--teal-dk);
  line-height: 1.3; margin-top: 6px;
  letter-spacing: -.01em;
}
.s-headline .amber-note {
  color: var(--amber);
}
.s-body {
  font-size: 16px; font-weight: 300; line-height: 1.82;
  color: var(--mist); max-width: 580px;
}

/* ════════════════════════════════════════════
   LIFESTYLE STRIP — 3 up
════════════════════════════════════════════ */
.ls-strip { background: var(--warm); padding: 0; }
.ls-grid { display: grid; grid-template-columns: repeat(3,1fr); height: 360px; }
.ls-cell { position: relative; overflow: hidden; }
.ls-photo {
  width: 100%; height: 100%;
  /* placeholder gradient — replace with img */
}
.ls-dark { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(22,33,31,.72) 0%, rgba(22,33,31,.1) 55%, transparent 100%);
}
.ls-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px; z-index: 2;
}
.ls-cap-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 4px;
}
.ls-cap-text {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: white; line-height: 1.4;
}

/* ════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
.problem-s { background: var(--white); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.muscle-chart {
  background: var(--teal-faint);
  border: 1px solid var(--teal-pale);
  border-radius: 16px; padding: 36px;
}
.mc-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 28px;
}
.mc-row { margin-bottom: 22px; }
.mc-row:last-of-type { margin-bottom: 0; }
.mc-rowlabel {
  display: flex; justify-content: space-between;
  margin-bottom: 7px;
}
.mc-decade {
  font-size: 13px; font-weight: 500; color: var(--bark);
}
.mc-pct {
  font-family: var(--display);
  font-size: 13px; font-weight: 700; color: var(--teal-dk);
  letter-spacing: -.01em;
}
.mc-track {
  height: 8px; background: var(--teal-pale);
  border-radius: 4px; overflow: hidden;
}
.mc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dk) 0%, var(--teal) 100%);
  border-radius: 4px;
}
.mc-caption {
  margin-top: 22px;
  font-size: 11px; font-weight: 300;
  color: var(--fog); line-height: 1.65;
  font-style: italic;
}
.pstat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.pstat {
  padding: 20px;
  background: var(--teal-faint);
  border-radius: 10px;
  border-left: 3px solid var(--teal);
}
.pstat-n {
  font-family: var(--display);
  font-size: 30px; font-weight: 800;
  color: var(--teal-dk); line-height: 1;
  margin-bottom: 4px; letter-spacing: -.01em;
}
.pstat-l {
  font-size: 12px; font-weight: 300;
  color: var(--mist); line-height: 1.5;
}

/* ════════════════════════════════════════════
   FULL BLEED — lifestyle quote section
════════════════════════════════════════════ */
.fullbleed {
  position: relative; height: 500px; overflow: hidden;
}
.fb-photo {
  width: 100%; height: 100%;
  /* placeholder */
}
.fb-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(22,33,31,.8) 0%,
    rgba(22,33,31,.55) 45%,
    rgba(50,184,180,.15) 100%
  );
}
.fb-content {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%);
  z-index: 2; padding: 0 80px; max-width: 660px;
}
.fb-pip {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal);
  margin-bottom: 20px;
}
.fb-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800; text-transform: uppercase;
  line-height: .96; letter-spacing: -.01em;
  color: white; margin-bottom: 20px;
}
.fb-headline em {
  display: block;
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: .7em; text-transform: none;
  color: var(--teal-lt); line-height: 1.2;
  margin-top: 6px;
}
.fb-body {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 420px; margin-bottom: 28px;
}
.fb-cta {
  background: var(--amber); color: white;
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 3px; border: none;
  cursor: pointer; transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.fb-cta:hover { background: var(--amber-dk); transform: translateY(-1px); }

/* Photo placeholder component */
.photo-ph {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.ph-grad { width: 100%; height: 100%; }
.ph-person {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: .12;
}
.ph-note {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(22,33,31,.75);
  padding: 9px 14px;
  font-size: 9.5px; font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.55; font-style: italic;
  letter-spacing: .01em;
}

/* ════════════════════════════════════════════
   CALORIC / GLP-1
════════════════════════════════════════════ */
.caloric-s { background: var(--ink); position: relative; overflow: hidden; }
.caloric-s::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(50,184,180,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.caloric-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.caloric-copy .s-headline { color: white; }
.caloric-copy .s-tag-text { color: var(--teal-lt); }
.caloric-copy .s-tag-pip { background: var(--teal-lt); }
.caloric-copy .s-body { color: rgba(255,255,255,.5); margin-bottom: 28px; }
.founder-quote {
  background: rgba(50,184,180,.08);
  border: 1px solid rgba(50,184,180,.2);
  border-radius: 12px;
  padding: 28px 30px;
  margin-top: 28px;
}
.fq-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 10px;
}
.fq-text {
  font-family: var(--serif);
  font-size: 15px; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,.75); line-height: 1.72;
  margin-bottom: 12px;
}
.fq-attr {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,.35);
}
.c-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: background .2s;
}
.c-card:hover { background: rgba(255,255,255,.08); }
.c-card-icon {
  width: 36px; height: 36px; border-radius: 7px;
  background: rgba(50,184,180,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.c-card-title {
  font-family: var(--body);
  font-size: 13px; font-weight: 600;
  color: white; margin-bottom: 3px;
}
.c-card-body {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.48); line-height: 1.6;
}
.c-disc {
  margin-top: 16px;
  font-size: 10px; font-weight: 300;
  color: rgba(255,255,255,.25);
  line-height: 1.6; font-style: italic;
}

/* ════════════════════════════════════════════
   PRODUCT DETAIL
════════════════════════════════════════════ */
.product-s { background: var(--warm); }
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.product-imagery {
  display: flex; gap: 20px; align-items: flex-start;
  position: relative;
}
.product-imagery img {
  width: 56%; height: auto;
  filter: drop-shadow(0 16px 40px rgba(50,184,180,.25)) drop-shadow(0 4px 12px rgba(0,0,0,.1));
}
.product-imagery img.back {
  width: 40%; margin-top: 48px;
  filter: drop-shadow(0 10px 28px rgba(50,184,180,.15));
}
.prod-brand {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-dk); margin-bottom: 6px;
}
.prod-name {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800; text-transform: uppercase;
  color: var(--ink); line-height: 1;
  letter-spacing: -.01em; margin-bottom: 6px;
}
.prod-sub {
  font-size: 14px; font-weight: 300;
  color: var(--fog); letter-spacing: .04em;
  margin-bottom: 28px;
}

/* Buy box */
.buy-box {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(50,184,180,.1);
  margin-bottom: 24px;
}
.bb-tabs {
  display: flex; background: var(--teal-faint);
  border-radius: 8px; padding: 4px;
  margin-bottom: 20px;
}
.bb-tab {
  flex: 1; text-align: center;
  padding: 12px 10px; border-radius: 6px;
  cursor: pointer; border: none; background: none;
  font-family: var(--body);
  transition: all .2s;
}
.bb-tab.active {
  background: white;
  box-shadow: 0 2px 10px rgba(50,184,180,.15);
}
.bb-tab-title {
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 2px;
}
.bb-tab-sub {
  font-size: 11px; font-weight: 300; color: var(--fog);
}
.bb-tab.active .bb-tab-title { color: var(--teal-dk); }
.bb-save-pill {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 9px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px;
  margin-left: 6px; vertical-align: middle;
}
.bb-price-row {
  display: flex; align-items: baseline;
  gap: 10px; margin-bottom: 4px;
}
.bb-price {
  font-family: var(--display);
  font-size: 42px; font-weight: 800;
  color: var(--ink); line-height: 1;
  letter-spacing: -.02em;
}
.bb-was {
  font-size: 16px; color: rgba(22,33,31,.25);
  text-decoration: line-through;
}
.bb-per {
  font-size: 13px; font-weight: 300;
  color: var(--fog); margin-bottom: 20px;
}
.bb-btn {
  background: var(--teal);
  color: white;
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 4px;
  border: none; cursor: pointer; width: 100%;
  transition: background .2s, transform .15s;
}
.bb-btn:hover { background: var(--teal-dk); transform: translateY(-1px); }
.bb-guarantee {
  margin-top: 12px; text-align: center;
  font-size: 11px; font-weight: 300; color: var(--fog);
}
.features {
  display: flex; flex-direction: column; gap: 12px;
}
.feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.feat-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.feat-t {
  font-size: 14px; font-weight: 300;
  color: var(--mist); line-height: 1.6;
}
.feat-t strong { font-weight: 600; color: var(--bark); }

/* ════════════════════════════════════════════
   SCIENCE
════════════════════════════════════════════ */
.science-s { background: var(--teal-faint); }
.science-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.sci-stat {
  background: var(--teal);
  border-radius: 14px; padding: 36px;
  position: relative; overflow: hidden;
  margin-top: 28px;
}
.sci-stat::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 14px 14px;
}
.sci-stat-n {
  font-family: var(--display);
  font-size: 64px; font-weight: 800;
  color: white; line-height: 1;
  margin-bottom: 4px; position: relative; z-index: 1;
  letter-spacing: -.02em;
}
.sci-stat-l {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.72); line-height: 1.55;
  position: relative; z-index: 1; max-width: 260px;
}
.sci-stat-src {
  margin-top: 12px; font-size: 10px;
  color: rgba(255,255,255,.35); font-style: italic;
  position: relative; z-index: 1;
}
.sci-cards { display: flex; flex-direction: column; gap: 14px; }
.sci-card {
  background: white;
  border-radius: 10px;
  padding: 22px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(50,184,180,.06);
  transition: box-shadow .2s;
}
.sci-card:hover { box-shadow: 0 6px 28px rgba(50,184,180,.14); }
.sci-n {
  font-family: var(--display);
  font-size: 32px; font-weight: 800;
  color: var(--teal-pale); line-height: 1;
  flex-shrink: 0; min-width: 32px;
  letter-spacing: -.02em;
}
.sci-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.sci-body { font-size: 13px; font-weight: 300; color: var(--mist); line-height: 1.65; }

/* ════════════════════════════════════════════
   HOW
════════════════════════════════════════════ */
.how-s { background: var(--white); }
.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 56px;
}
.how-step { position: relative; }
.how-step::after {
  content: '→';
  position: absolute; top: 16px; right: -20px;
  color: var(--teal-pale); font-size: 22px; z-index: 1;
}
.how-step:last-child::after { display: none; }
.how-num {
  font-family: var(--display);
  font-size: 52px; font-weight: 800;
  color: var(--teal-faint); line-height: 1;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.how-title {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.how-body {
  font-size: 13px; font-weight: 300;
  color: var(--mist); line-height: 1.65;
}

/* ════════════════════════════════════════════
   FOUNDER
════════════════════════════════════════════ */
.founder-s { background: var(--warm); }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden; position: relative;
}
.founder-badge {
  position: absolute; top: 22px; right: -14px;
  background: var(--ink); color: white;
  border-radius: 10px; padding: 10px 14px;
  font-size: 11px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.22); z-index: 2;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.75); }
}
.founder-creds {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.fc-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.fc-icon {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--teal-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.fc-text {
  font-size: 13px; font-weight: 300;
  color: var(--mist); line-height: 1.6; padding-top: 4px;
}
.fc-text strong { font-weight: 600; color: var(--bark); }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testi-s { background: var(--teal-faint); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 48px;
}
.testi-card {
  background: white; border-radius: 14px; padding: 28px;
  border-top: 3px solid var(--teal);
}
.testi-stars { color: var(--amber); font-size: 13px; margin-bottom: 14px; }
.testi-q {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: var(--bark); line-height: 1.7;
  margin-bottom: 18px;
}
.testi-who {
  font-size: 12px; font-weight: 500; color: var(--fog);
}
.testi-who span { color: var(--mist); font-weight: 300; }

/* ════════════════════════════════════════════
   SUBSCRIBE & SAVE
════════════════════════════════════════════ */
.sns-s { background: var(--teal); position: relative; overflow: hidden; }
.sns-s::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.sns-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sns-copy .s-headline { color: white; }
.sns-copy .s-tag-text { color: rgba(255,255,255,.55); }
.sns-copy .s-tag-pip { background: rgba(255,255,255,.4); }
.sns-copy .s-body { color: rgba(255,255,255,.65); margin-bottom: 32px; }
.sns-btns {
  display: flex; align-items: center; gap: 16px; margin-top: 8px;
}
.sns-main {
  background: white; color: var(--teal-dk);
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 3px; border: none;
  cursor: pointer; transition: background .2s, transform .15s;
}
.sns-main:hover { background: var(--teal-faint); transform: translateY(-1px); }
.sns-ghost {
  font-size: 13px; color: rgba(255,255,255,.6);
  background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  padding-bottom: 2px; cursor: pointer;
}
.sns-ghost:hover { color: white; }
.sns-cards { display: flex; flex-direction: column; gap: 12px; }
.sns-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: background .2s;
}
.sns-card:hover { background: rgba(255,255,255,.16); }
.sns-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sns-card-t {
  font-size: 13px; font-weight: 600;
  color: white; margin-bottom: 2px;
}
.sns-card-b {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 1.55;
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-s { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
}
.faq-contact {
  margin-top: 24px;
  font-size: 13px; font-weight: 300; color: var(--mist);
}
.faq-contact a {
  color: var(--teal-dk); font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--teal-pale);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--teal-faint); }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 20px;
}
.faq-qt {
  font-size: 15px; font-weight: 500;
  color: var(--ink); line-height: 1.4;
}
.faq-tog {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-faint);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dk); font-size: 16px; font-weight: 700;
  flex-shrink: 0; transition: background .2s, transform .2s;
}
.faq-item.open .faq-tog {
  background: var(--teal); color: white;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  font-size: 14px; font-weight: 300;
  color: var(--mist); line-height: 1.78;
  padding-bottom: 20px; max-width: 560px;
}
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════════
   EMAIL
════════════════════════════════════════════ */
.email-s { background: var(--warm); padding: 80px 0; }
.email-inner {
  max-width: 560px; margin: 0 auto;
  text-align: center; padding: 0 48px;
}
.email-form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 28px auto 0;
}
.email-in {
  flex: 1;
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--ink); background: white;
  border: 1px solid var(--teal-pale);
  border-radius: 4px; padding: 14px 18px;
  outline: none; transition: border-color .2s;
}
.email-in::placeholder { color: var(--fog); }
.email-in:focus { border-color: var(--teal); }
.email-sub {
  background: var(--teal); color: white;
  font-family: var(--body); font-size: 13px;
  font-weight: 600; letter-spacing: .04em;
  padding: 14px 22px; border-radius: 4px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.email-sub:hover { background: var(--teal-dk); }
.email-fine {
  margin-top: 12px; font-size: 11px;
  color: var(--fog); font-weight: 300;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer { background: var(--ink); padding: 64px 0 36px; }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 52px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.f-logo {
  font-family: var(--display);
  font-size: 26px; font-weight: 800;
  color: white; letter-spacing: .05em; margin-bottom: 12px;
  line-height: 1;
}
.f-teal { color: var(--teal); }
.f-tagline {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.6;
  margin-bottom: 20px;
}
.f-social { display: flex; gap: 10px; }
.f-soc {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,.45);
  text-decoration: none; transition: background .2s, color .2s;
}
.f-soc:hover { background: var(--teal); color: white; }
.footer-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.footer-col ul {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}
.footer-col ul a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-legal {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.25); line-height: 1.6;
  max-width: 580px;
}
.footer-copy {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.2); white-space: nowrap;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translate(-50%, calc(-52% + 22px)); }
  to   { opacity: 1; transform: translate(-50%, -52%); }
}

@media (max-width: 900px) {
  .hero, .problem-grid, .caloric-grid, .product-grid,
  .science-grid, .founder-grid, .sns-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-right { min-height: 480px; }
  .ls-grid { grid-template-columns: 1fr; height: auto; }
  .ls-cell { height: 260px; }
  .how-steps { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-inner, .footer-inner { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .fb-content { padding: 0 32px; max-width: 100%; }
}
/* ── PILLAR BAR ── */
.pillar-bar {
  background: var(--ink);
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
}
.pillar-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(50,184,180,.05) 1px, transparent 1px);
  background-size: 14px 14px;
}
.pillar-bar-item {
  flex: 1; display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s; position: relative; z-index: 1;
}
.pillar-bar-item:last-child { border-right: none; }
.pillar-bar-item:hover { background: rgba(50,184,180,.06); }
.pillar-num {
  font-family: var(--display);
  font-size: 44px; font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1; flex-shrink: 0;
  letter-spacing: -.02em; margin-top: -4px;
}
.pillar-title { font-family: var(--body); font-size: 12px; font-weight: 600; color: white; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.pillar-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.55; }
@media (max-width: 640px) {
  .pillar-bar { flex-direction: column; }
  .pillar-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 22px 24px;
  }
  .pillar-bar-item:last-child { border-bottom: none; }
  .pillar-num { font-size: 32px; }
}

</style>
    