/* ============ HOMEPAGE (dark, Sigma-structured) ============ */

/* ---------- Hero: full-bleed cinematic ---------- */
.hero {
  position: relative; overflow: hidden; min-height: min(88vh, 780px);
  display: flex; align-items: center;
  background: radial-gradient(1200px 600px at 75% 30%, #24384c 0%, #16222e 45%, var(--bg) 100%);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,15,20,.88) 0%, rgba(10,15,20,.55) 40%, rgba(10,15,20,.08) 75%),
              linear-gradient(0deg, rgba(13,20,27,.9) 0%, transparent 25%); }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(48px, 8vw, 96px); max-width: 620px; }
.hero__trusted { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; font-size: .88rem; font-weight: 600; color: var(--t-mid); }
.avatars { display: flex; }
.avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg);
  background: linear-gradient(140deg, var(--teal), var(--navy)); margin-left: -8px;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 800; font-size: .6rem; color: #fff; }
.avatars span:first-child { margin-left: 0; }
.hero h1 { margin: .5rem 0 1.1rem; }
.hero__lead { color: var(--t-mid); font-size: 1.02rem; max-width: 54ch; }
.hero__cta { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.hero__cta .btn { min-width: min(380px, 100%); }
@media (max-width: 640px){
  .hero { min-height: 0; }
  .hero__bg img { object-position: 72% center; }
  .hero__inner { max-width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- Ingredients: photo cards ---------- */
.ingcard { display: flex; align-items: center; gap: 1rem; background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: .9rem 1rem; position: relative; transition: border-color .18s, transform .18s; }
.ingcard:hover { border-color: rgba(226,154,60,.5); transform: translateY(-2px); }
.ingcard__img { width: 82px; height: 82px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; background: var(--panel-2); }
.ingcard__name { font-family: var(--font-head); font-weight: 700; font-size: .98rem; }
.ingcard__dose { color: var(--t-mid); font-size: .88rem; margin-top: .15rem; }
.ingcard__plus { position: absolute; top: 10px; right: 12px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--t-mid); font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: transform .2s var(--ease); }
.ingcard__desc { display: none; color: var(--t-mid); font-size: .85rem; margin-top: .3rem; line-height: 1.55; }
.ingcard.open .ingcard__desc { display: block; }
.ingcard.open .ingcard__plus { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }
.trustline { text-align: center; color: var(--t-mid); font-size: .85rem; font-weight: 600; letter-spacing: .04em; margin-top: 1.8rem; }
.trustline b { color: var(--accent); font-weight: 700; }

/* ---------- Stats band (bg photo + 2x2) ---------- */
.stats { background:
  linear-gradient(90deg, rgba(13,20,27,.94) 0%, rgba(13,20,27,.78) 50%, rgba(13,20,27,.55) 100%),
  var(--bg-2); position: relative; overflow: hidden; }
.stats__bgimg { position: absolute; inset: 0; z-index: 0; }
.stats__bgimg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; object-position: right center; }
.stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.stats__left h2 { text-transform: uppercase; }
.stats__left h2 em { font-style: normal; color: var(--accent); }
.stats__left .sub { color: var(--t-mid); margin: .9rem 0 1.6rem; font-size: .95rem; }
.statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3.4vw, 44px) clamp(22px, 4vw, 56px); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.3rem, 4.4vw, 3.3rem); color: var(--t-hi); line-height: 1; }
.stat__label { font-family: var(--font-head); font-weight: 700; color: var(--accent); margin: .45rem 0 .3rem; font-size: .98rem; }
.stat__sub { color: var(--t-mid); font-size: .87rem; line-height: 1.55; max-width: 32ch; }
@media (max-width: 880px){ .stats__grid { grid-template-columns: 1fr; } }

/* ---------- Benefits: accordion bars + product callouts ---------- */
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.bene { border: 1px solid rgba(226,154,60,.45); border-radius: var(--radius); background: transparent;
  margin-bottom: .9rem; overflow: hidden; }
.bene__head { display: flex; align-items: center; gap: 1rem; width: 100%; background: none; border: none;
  padding: .85rem 1.1rem; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--t-hi); }
.bene__body { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); color: var(--t-mid); font-size: .92rem; }
.bene.open .bene__body { max-height: 300px; }
.bene__body p { padding: 0 1.1rem 1rem 4.4rem; }
.benefits__media { position: relative; display: flex; justify-content: center; }
.benefits__media > img { max-height: 520px; border-radius: var(--radius-lg); }
.callout { position: absolute; font-family: var(--font-head); font-weight: 700; font-size: .88rem; text-align: center;
  color: var(--t-hi); line-height: 1.3; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.callout svg { display: block; margin: 0 auto .35rem; color: var(--t-hi); }
.callout--1 { top: 6%; right: 2%; } .callout--2 { top: 32%; right: -1%; }
.callout--3 { top: 58%; right: 2%; } .callout--4 { top: 82%; right: 4%; }
.callout--stat { left: -2%; top: 30%; max-width: 150px; }
.callout--stat b { display: block; font-size: 2rem; color: var(--accent); font-weight: 800; }
.callout--stat small { font-size: .68rem; color: var(--t-mid); font-weight: 600; }
@media (max-width: 880px){ .benefits__grid { grid-template-columns: 1fr; } .callout--2 { right: 0; } }

/* ---------- Problem: copy + hex row + chart ---------- */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.problem h2 { text-transform: uppercase; }
.problem h2 em { font-style: normal; color: var(--accent); }
.problem .sub { color: var(--t-mid); margin-top: .9rem; font-size: .95rem; }
.hexrow { display: flex; gap: clamp(14px, 2.6vw, 34px); margin-top: 1.8rem; flex-wrap: wrap; }
.hexitem { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--t-mid); line-height: 1.5; }
.hexitem .hex { margin: 0 auto .5rem; }
.chartbox { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(16px, 2.4vw, 28px); }
.chartbox svg { width: 100%; height: auto; display: block; }
@media (max-width: 880px){ .problem__grid { grid-template-columns: 1fr; } }

/* ---------- Journey photo cards ---------- */
.jcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/3.6; background: var(--panel); }
.jcard img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.45) contrast(1.05); }
.jcard__title { position: absolute; top: 46%; left: 0; right: 0; text-align: center; font-family: var(--font-head);
  font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: .06em; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.jcard__cap { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10,15,20,.82); padding: .7rem .9rem;
  font-size: .8rem; text-align: center; color: var(--t-mid); }

/* ---------- Goals tiles ---------- */
.goal { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 6/7; background: var(--panel); }
.goal img { width: 100%; height: 100%; object-fit: cover; }
.goal__cap { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10,15,20,.85); padding: .55rem .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; color: var(--t-hi); }

/* ---------- Transformations ---------- */
.tcard { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.tcard__body { padding: 1.2rem 1.3rem 1.4rem; }
.tcard__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .6rem; }
.tcard__name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.tcard__age { font-size: .8rem; color: var(--t-mid); font-weight: 600; }
.tcard__quote { font-style: italic; color: var(--t-mid); font-size: .92rem; line-height: 1.65; border-bottom: 1px solid var(--line-soft); padding-bottom: 1rem; }
.meter { margin-top: .9rem; }
.meter__row { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 600; color: var(--t-mid); margin-bottom: .3rem; }
.meter__row b { color: var(--accent); font-weight: 700; }
.meter__bar { height: 5px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.meter__fill { height: 100%; border-radius: 99px; background: var(--grad-gold); }

/* ---------- Timeline journey ---------- */
.tl__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 72px); align-items: start; }
.tl__brand { position: sticky; top: 100px; }
.tl__brandimg { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3.4; }
.tl__brandimg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.5); }
.tl__brandimg::after { content: ""; position: absolute; inset: 0; background: rgba(13,20,27,.45); }
.tl__brandlogo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.tl__brandlogo img { height: 34px; filter: none; }
.tl__brand h2 { text-transform: uppercase; margin-top: 1.6rem; text-align: center; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.tl__brand h2 em { font-style: normal; color: var(--accent); }
.tl__brand .sub { color: var(--t-mid); text-align: center; font-size: .9rem; margin-top: .8rem; }
.tl__brand .cta-stack { margin-top: 1.4rem; }
.tl { position: relative; padding-left: 64px; }
.tl::before { content: ""; position: absolute; left: 25px; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(226,154,60,.15)); }
.tl__item { position: relative; padding-bottom: clamp(36px, 5vw, 60px); }
.tl__item:last-child { padding-bottom: 0; }
.tl__dot { position: absolute; left: -64px; top: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--accent); box-shadow: 0 0 22px rgba(226,154,60,.35);
  display: flex; align-items: center; justify-content: center; color: var(--accent); }
.tl__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .7rem; }
.tl__week { background: var(--panel-2); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 800;
  font-size: .64rem; letter-spacing: .14em; padding: .3rem .7rem; border-radius: 6px; color: var(--t-hi); }
.tl__title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.tl__li { display: flex; gap: .6rem; align-items: baseline; color: var(--t-mid); font-size: .93rem; margin-bottom: .45rem; }
.tl__li::before { content: "⌁"; color: var(--accent); font-weight: 800; }
.tl__stat { border: 1px solid rgba(226,154,60,.45); border-radius: 10px; padding: .75rem 1rem; margin-top: .9rem;
  font-size: .88rem; color: var(--t-mid); }
.tl__stat b { color: var(--accent); font-weight: 700; }
@media (max-width: 880px){ .tl__grid { grid-template-columns: 1fr; } .tl__brand { position: static; } }

/* ---------- Comparison (amber-highlight column) ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); }
.compare { width: 100%; border-collapse: collapse; background: var(--panel); min-width: 680px; }
.compare th, .compare td { padding: .95rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line-soft); font-size: .82rem; }
.compare thead th { background: var(--panel); font-family: var(--font-head); font-weight: 700; color: var(--t-mid); font-size: .9rem; vertical-align: bottom; padding-bottom: 1rem; }
.compare thead img.colimg { height: 74px; margin: 0 auto .5rem; object-fit: contain; }
.compare tbody td:first-child { text-align: left; font-weight: 600; color: var(--t-hi); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .brandcol { background: var(--grad-gold); color: #1a1205 !important; width: 130px; }
.compare thead th.brandcol { color: #1a1205; }
.compare .yes { font-weight: 900; font-size: 1rem; color: var(--good); }
.compare .brandcol.yes { color: #1a1205; }
.compare .no { color: var(--bad); font-weight: 800; font-size: 1rem; }
.compare__note { max-width: 720px; margin: 1.6rem auto 0; text-align: center; color: var(--t-mid); font-size: .88rem; }

/* ---------- Guarantee ---------- */
.guarantee { background: radial-gradient(800px 400px at 50% 0%, rgba(226,154,60,.1), transparent 60%), var(--bg-2); text-align: center; }
.guarantee__seal { width: 120px; height: 120px; border-radius: 50%; border: 1.5px solid var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 1.6rem;
  font-family: var(--font-head); box-shadow: 0 0 30px rgba(226,154,60,.25); }
.guarantee__seal b { font-size: 2.1rem; font-weight: 800; color: var(--accent); line-height: 1; }
.guarantee__seal small { font-size: .55rem; letter-spacing: .16em; font-weight: 700; color: var(--t-mid); text-transform: uppercase; margin-top: .3rem; }
.guarantee h2 { text-transform: uppercase; }
.guarantee h2 em { font-style: normal; color: var(--accent); }
.guarantee .sub { max-width: 760px; margin: 1rem auto 0; color: var(--t-mid); font-size: .96rem; }

/* ---------- Bundle option rows (Sigma style) ---------- */
.bundles__img { display: flex; justify-content: center; margin-bottom: 1.4rem; }
.bundles__img img { max-height: 220px; object-fit: contain; }
.optrows { max-width: 680px; margin-inline: auto; }
.opt { position: relative; display: grid; grid-template-columns: 74px auto 1fr auto; gap: .2rem 1rem; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: .85rem 1.1rem; cursor: pointer;
  background: var(--panel); margin-bottom: .9rem; transition: border-color .18s, background .18s; }
.opt:hover { border-color: rgba(226,154,60,.55); }
.opt.selected { border-color: var(--accent);
  background: linear-gradient(90deg, rgba(226,154,60,.16), rgba(226,154,60,.04) 60%, var(--panel)); }
.opt__thumb { grid-row: 1 / span 3; width: 74px; height: 74px; object-fit: contain; }
.opt__radio { grid-row: 1 / span 3; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--t-low); position: relative; }
.opt.selected .opt__radio { border-color: var(--accent); }
.opt.selected .opt__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }
.opt__name { font-family: var(--font-head); font-weight: 800; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; color: var(--t-hi); }
.opt__meta { grid-column: 3; font-size: .8rem; color: var(--t-mid); font-weight: 600; }
.opt__chips { grid-column: 3; display: flex; gap: .5rem; margin-top: .3rem; flex-wrap: wrap; }
.chip { border: 1px solid rgba(226,154,60,.5); color: var(--accent); border-radius: 6px; font-size: .66rem;
  font-weight: 700; letter-spacing: .06em; padding: .22rem .55rem; text-transform: uppercase; }
.opt__price { grid-column: 4; grid-row: 1 / span 3; text-align: right; }
.opt__now { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--t-hi); display: block; }
.opt__was { font-size: .8rem; color: var(--t-low); text-decoration: line-through; font-weight: 600; display: block; }
.opt__save { font-size: .78rem; color: var(--good); font-weight: 700; }
.opt__flag { position: absolute; top: -11px; right: 14px; font-family: var(--font-head); font-weight: 800;
  font-size: .6rem; letter-spacing: .12em; padding: .3rem .7rem; border-radius: 6px; text-transform: uppercase;
  background: var(--grad-gold); color: #1a1205; }
.opt__flag--alt { background: var(--bad); color: #fff; }
@media (max-width: 560px){ .opt { grid-template-columns: 52px auto 1fr auto; } .opt__thumb { width: 52px; height: 52px; } }

.shipnote { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .85rem; font-weight: 600;
  color: var(--t-mid); margin: 1.1rem 0; }
.shipnote .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(89,201,143,.15); }
.shipnote b { color: var(--good); }
.bigcart { max-width: 680px; margin-inline: auto; }
.bigcart .btn { width: 100%; padding: 1rem 1.5rem; flex-direction: column; gap: .15rem; }
.bigcart .btn .sub { font-family: var(--font-body); font-weight: 600; font-size: .7rem; letter-spacing: .04em; opacity: .85; text-transform: none; }
.bigcart__foot { display: flex; justify-content: center; gap: 1.8rem; margin-top: .9rem; flex-wrap: wrap; }
.bigcart__foot span { font-size: .8rem; color: var(--t-mid); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- FAQ ---------- */
.faq__item { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: .65rem; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.05rem 1.2rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--t-hi); }
.faq__q .plus { flex: 0 0 auto; transition: transform .25s var(--ease); color: var(--t-mid); font-size: 1.2rem; font-weight: 400; }
.faq__item.open .plus { transform: rotate(45deg); color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); color: var(--t-mid); }
.faq__item.open .faq__a { max-height: 420px; }
.faq__a p { padding: 0 1.2rem 1.1rem; max-width: 76ch; font-size: .9rem; line-height: 1.65; }

/* ---------- Testimonials + tabs ---------- */
.tabs { display: inline-flex; gap: .3rem; background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: .3rem; margin: 0 auto 2rem; }
.tab { border: none; background: none; color: var(--t-mid); font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1.1rem; border-radius: 999px; cursor: pointer; }
.tab.active { background: var(--grad-gold); color: #1a1205; }
.rev { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.3rem 1.4rem; }
.rev__quote { font-style: italic; color: var(--t-mid); font-size: .92rem; line-height: 1.65;
  border-bottom: 1px solid var(--line-soft); padding-bottom: 1rem; margin-top: .7rem; }
.rev__meta { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.rev__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(140deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .78rem; color: #fff; }
.rev__name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; }
.rev__verified { font-size: .75rem; color: var(--t-low); }

/* ---------- sticky mobile cart (product page) ---------- */
.stickybar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(13,20,27,.96);
  backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: .7rem var(--gutter);
  display: none; align-items: center; gap: 1rem; }
.stickybar__price { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--t-hi); line-height: 1.1; }
.stickybar__was { font-size: .76rem; color: var(--t-low); text-decoration: line-through; font-weight: 600; }
.stickybar .btn { flex: 1; padding: .9rem 1rem; font-size: .95rem; }
@media (max-width: 920px){ .stickybar.show { display: flex; } body.has-stickybar { padding-bottom: 74px; } }

/* ===== v10 spice: animated meters, before/after, compare imgs ===== */
.meter__fill { transition: width 1.5s cubic-bezier(.22,.61,.36,1); }

/* Before/After transformation image */
.tcard__ba { position: relative; aspect-ratio: 5/3; overflow: hidden; background: var(--panel-2); }
.tcard__ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard__ba .lbl { position: absolute; bottom: 10px; font-family: var(--font-head); font-weight: 800; font-size: .68rem;
  letter-spacing: .1em; background: rgba(255,255,255,.92); color: #111; padding: .3rem .8rem; border-radius: 6px; }
.tcard__ba .lbl--b { left: 10px; } .tcard__ba .lbl--a { right: 10px; }
.tcard__ba::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,.6); transform: translateX(-50%); }

/* Comparison column images */
.compare thead img.colimg { height: 74px; width: auto; margin: 0 auto .5rem; object-fit: contain; display: block; }
.compare thead .colimg--svg { height: 66px; margin: 0 auto .5rem; color: var(--t-mid); }
.compare thead th.brandcol .colimg { filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }

/* stat number pop */
.stat__num, [data-count] { font-variant-numeric: tabular-nums; }
