/* ============================================================
   qt matcha — brand stylesheet
   Palette pulled from packaging: chartreuse, pink, orange,
   deep matcha green, cream.
   ============================================================ */

:root {
  --chartreuse: #d9e653;
  --chartreuse-light: #e8f07e;
  --pink: #f7a8c8;
  --pink-hot: #f26fa8;
  --pink-pale: #fbd3e2;
  --orange: #f5a04c;
  --green-deep: #2f6b2b;
  --green-dark: #234f20;
  --green-matcha: #7aa657;
  --cream: #fdf8ee;
  --ink: #234f20;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(35, 79, 32, 0.12);
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Quicksand', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(47,107,43,0.5) transparent; }

/* slim overlay scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(47,107,43,0.42); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(242,111,168,0.85); }
::-webkit-scrollbar-thumb:active { background: var(--pink-hot); }
::selection { background: var(--chartreuse); color: var(--green-dark); }

:focus-visible { outline: 3px solid var(--pink-hot); outline-offset: 2px; border-radius: 4px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--green-deep);
  color: var(--chartreuse);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.04em;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid rgba(35, 79, 32, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo span { font-size: 0.95rem; letter-spacing: 0.28em; padding-left: 0.28em; display: block; margin-top: -2px; font-weight: 600; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links a { position: relative; padding: 4px 0; }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 3px;
  background: var(--pink-hot);
  border-radius: 3px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  background: var(--green-deep);
  color: #fff;
  border: 3px solid var(--green-deep);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px) scale(1.02); background: var(--pink-hot); border-color: var(--pink-hot); }

.btn-outline { background: transparent; color: var(--green-deep); }

.btn-outline:hover { background: var(--green-deep); color: #fff; }

.btn-pink { background: var(--pink-hot); border-color: var(--pink-hot); }
.btn-pink:hover { background: var(--green-deep); border-color: var(--green-deep); }

.hamburger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--green-deep); cursor: pointer; }

/* ---------- marquee ticker ---------- */
.ticker {
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: scroll 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  text-transform: lowercase;
}

.ticker-track span { margin: 0; }
.tick-leaf { display: inline-block; margin: 0 26px; flex: none; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-green { background: var(--chartreuse); color: var(--green-deep); }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-pale) 55%, var(--orange) 130%);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: var(--green-dark);
  margin-bottom: 18px;
}

.hero h1 em { font-style: normal; color: #fff; text-shadow: 0 3px 0 rgba(35,79,32,0.25); }

.hero p.lead {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }

.badge {
  background: rgba(255,255,255,0.75);
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.hero-img img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow);
}

/* ---------- section basics ---------- */
section.block { padding: 90px 0; }

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink-hot);
  text-transform: lowercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin-bottom: 10px;
}

h2.title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--green-dark); margin-bottom: 16px; }

.center { text-align: center; }

.sub { font-size: 1.15rem; font-weight: 600; max-width: 62ch; margin: 0 auto 48px; }

/* ---------- product cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-8px) rotate(-0.5deg); }

.card-img { aspect-ratio: 1 / 0.85; overflow: hidden; }

.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.card-body h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 6px; }

.card-tag { font-weight: 700; color: var(--pink-hot); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }

.card-body p { font-size: 0.98rem; margin-bottom: 18px; }

.price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 14px; color: var(--green-deep); }

.price s { color: #b4b4a4; font-weight: 600; font-size: 1rem; margin-left: 8px; }

.card .btn { margin-top: auto; text-align: center; }

/* color-blocked cards */
.card.c-green .card-body { background: var(--chartreuse-light); }
.card.c-pink .card-body { background: var(--pink-pale); }
.card.c-orange .card-body { background: #fde3c8; }

/* ---------- iron section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0; }

.stat {
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--pink-hot); line-height: 1; }

.stat .lbl { font-size: 0.82rem; font-weight: 700; margin-top: 6px; }

/* ---------- benefits icons ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.benefit { text-align: center; padding: 10px; }

.benefit .icon {
  width: 88px; height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  background: var(--pink-pale);
}

.benefit:nth-child(2) .icon { background: var(--chartreuse-light); }
.benefit:nth-child(3) .icon { background: #fde3c8; }
.benefit:nth-child(4) .icon { background: var(--pink-pale); }

.benefit h3 { font-size: 1.25rem; color: var(--green-dark); margin-bottom: 6px; }

.benefit p { font-size: 0.95rem; }

/* ---------- testimonial band ---------- */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testi {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testi .stars { color: var(--orange); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 12px; }

.testi p { font-size: 1rem; margin-bottom: 16px; }

.testi .who { font-weight: 800; font-family: var(--font-display); color: var(--green-deep); }

/* ---------- lifestyle gallery band ---------- */
.band-img { position: relative; }

.band-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- newsletter / footer ---------- */
.newsletter {
  background: linear-gradient(rgba(217,230,83,0.82), rgba(217,230,83,0.82)), url('../images/matcha-swirl.jpg') center/cover;
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--green-dark); margin-bottom: 12px; }

.newsletter p { font-weight: 600; margin-bottom: 26px; }

.news-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.news-form input {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 3px solid var(--green-deep);
  width: min(360px, 90vw);
  background: var(--cream);
  color: var(--ink);
}

.news-form input:focus { outline: 3px solid var(--pink-hot); }

footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 64px 0 30px;
}

.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }

.foot-grid h4 { color: var(--chartreuse); margin-bottom: 14px; font-size: 1.1rem; }

.foot-grid ul { list-style: none; }

.foot-grid li { margin-bottom: 8px; font-size: 0.95rem; }

.foot-grid a:hover { color: var(--pink); }

.foot-logo { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--chartreuse); line-height: 1; }

.foot-note { border-top: 1px solid rgba(253,248,238,0.2); padding-top: 22px; font-size: 0.8rem; opacity: 0.75; }

.disclaimer { font-size: 0.75rem; opacity: 0.65; margin-top: 10px; max-width: 90ch; }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  padding: 70px 0 60px;
  text-align: center;
}

.page-hero.bg-pink { background: linear-gradient(160deg, var(--pink) 0%, var(--pink-pale) 100%); }
.page-hero.bg-green { background: linear-gradient(160deg, var(--chartreuse) 0%, var(--chartreuse-light) 100%); }
.page-hero.bg-orange { background: linear-gradient(160deg, var(--orange) 0%, #fde3c8 100%); }

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--green-dark); margin-bottom: 14px; }

.page-hero p { font-size: 1.2rem; font-weight: 600; max-width: 60ch; margin: 0 auto; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  background: none;
  border: none;
  padding: 22px 60px 22px 26px;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--pink-hot);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-a-inner { padding: 0 26px 24px; font-size: 1rem; }

/* ---------- science page ---------- */
.science-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }

.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--pink-hot);
}

.step:nth-child(2) { border-top-color: var(--orange); }
.step:nth-child(3) { border-top-color: var(--green-deep); }

.step .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--pink-pale);
  line-height: 1;
  margin-bottom: 10px;
}

.step h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 10px; }

.compare { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid #f0ecdf; }

.compare th { background: var(--green-deep); color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; }

.compare tr td:first-child { font-weight: 700; }

.compare .yes { color: var(--green-deep); font-weight: 800; }
.compare .no { color: #c05656; font-weight: 800; }

/* ---------- about page ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.value {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  background: var(--pink-pale);
}

.value:nth-child(2) { background: var(--chartreuse-light); }
.value:nth-child(3) { background: #fde3c8; }

.value h3 { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-img { order: -1; margin-top: 8px; }
  .hero-img img { max-height: 46vh; width: 100%; object-fit: cover; object-position: center 35%; border-radius: var(--radius-lg); }
  .cards, .testis, .science-steps, .values { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 6%;
    gap: 16px;
    border-bottom: 2px solid rgba(35,79,32,0.08);
  }
  .nav-links.show { display: flex; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   funnels — buybox, quiz, VSL (added by round 2 build)
   ============================================================ */

/* ---------- subscribe buybox ---------- */
.buybox { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.buy-media { position: sticky; top: 110px; }
.buy-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; justify-content: center; }

/* horizontally swipeable table on small screens */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.table-scroll .compare { min-width: 540px; }

/* auto-scrolling trust badge marquee (buybox) */
.buybox > * { min-width: 0; }
.trust-marquee { overflow: hidden; width: 100%; max-width: 100%; margin-top: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.tm-track { display: flex; gap: 10px; width: max-content; animation: scroll 28s linear infinite; }
.tm-track .badge { white-space: nowrap; flex: none; margin-right: 0; }

.step-label { font-family: var(--font-display); font-weight: 700; color: var(--green-dark); font-size: 1.05rem; margin: 26px 0 14px; }
.step-label .n { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; background: var(--pink-hot); color: #fff; align-items: center; justify-content: center; font-size: 0.85rem; margin-right: 8px; }

.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.opt-grid.two { grid-template-columns: 1fr 1fr; }
.opt-card { position: relative; border: 3px solid rgba(35,79,32,0.15); border-radius: 20px; background: #fff; padding: 16px 12px 14px; cursor: pointer; text-align: center; transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease; }
.opt-card:hover { border-color: var(--green-matcha); }
.opt-card input { position: absolute; opacity: 0; pointer-events: none; }
.opt-card.sel { border-color: var(--green-deep); background: var(--chartreuse-light); transform: translateY(-2px); }
.opt-card .o-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--green-dark); }
.opt-card .o-sub { font-size: 0.8rem; font-weight: 600; opacity: 0.8; margin: 2px 0 6px; }
.opt-card .o-price { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--green-deep); }
.opt-card .o-price s { color: #b4b4a4; font-size: 0.85rem; margin-left: 5px; }
.opt-card .o-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pink-hot); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; padding: 3px 10px; border-radius: var(--radius-pill); white-space: nowrap; }

.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-btn { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--green-deep); background: #fff; font-size: 1.3rem; font-weight: 800; color: var(--green-deep); cursor: pointer; line-height: 1; transition: background 0.15s ease, color 0.15s ease; }
.qty-btn:hover { background: var(--green-deep); color: #fff; }
.qty-num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--green-dark); min-width: 34px; text-align: center; }

.total-line { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 20px; padding: 18px 22px; box-shadow: var(--shadow); margin: 26px 0 16px; }
.total-line .t-label { font-weight: 700; }
.total-line .t-label small { display: block; font-size: 0.78rem; color: var(--pink-hot); font-weight: 700; }
.total-line .t-price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--green-deep); }
.total-line .t-price s { font-size: 1rem; color: #b4b4a4; margin-right: 8px; }

.big-cta { display: block; width: 100%; text-align: center; font-size: 1.25rem; padding: 18px 30px; }
.fine { font-size: 0.85rem; text-align: center; margin-top: 12px; font-weight: 600; opacity: 0.8; }

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk { background: #fff; border-radius: 20px; padding: 26px 20px; box-shadow: var(--shadow); text-align: center; }
.perk .p-ico { font-size: 2rem; margin-bottom: 10px; }
.perk h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 6px; }
.perk p { font-size: 0.9rem; }

.guarantee { background: var(--pink-pale); border-radius: var(--radius-lg); padding: 44px 40px; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; max-width: 860px; margin: 0 auto; }
.guarantee .g-badge { width: 110px; height: 110px; border-radius: 50%; background: var(--pink-hot); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; text-align: center; font-size: 0.9rem; line-height: 1.15; box-shadow: var(--shadow); }
.guarantee .g-badge b { font-size: 1.6rem; }
.guarantee h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 8px; }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: var(--green-deep); padding: 12px 18px; display: none; z-index: 300; justify-content: space-between; align-items: center; gap: 12px; box-shadow: 0 -6px 20px rgba(35,79,32,0.25); }
.sticky-cta .s-price { font-family: var(--font-display); font-weight: 800; color: var(--chartreuse); font-size: 1.15rem; }
.sticky-cta .btn { background: var(--pink-hot); border-color: var(--pink-hot); padding: 10px 24px; font-size: 1rem; }

/* ---------- quiz funnel ---------- */
.quiz-shell { max-width: 660px; margin: 0 auto; }
.progress { height: 12px; background: #fff; border-radius: var(--radius-pill); overflow: hidden; box-shadow: var(--shadow); }
.progress i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--pink-hot), var(--orange)); border-radius: var(--radius-pill); transition: width 0.35s ease; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 700; margin: 8px 4px 0; color: var(--green-deep); }

.q-card { background: #fff; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow); margin-top: 26px; }
.q-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green-dark); margin-bottom: 6px; }
.q-card .q-sub { font-weight: 600; font-size: 0.98rem; opacity: 0.85; }
.answers { display: grid; gap: 12px; margin-top: 24px; }
.ans { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); background: var(--cream); border: 3px solid rgba(35,79,32,0.15); border-radius: 18px; padding: 16px 20px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease; }
.ans:hover { border-color: var(--pink-hot); background: var(--pink-pale); transform: translateX(4px); }
.ans .a-emoji { font-size: 1.5rem; }
.quiz-back { background: none; border: none; font-weight: 700; color: var(--green-deep); cursor: pointer; font-size: 0.9rem; margin-top: 18px; font-family: var(--font-body); }
.quiz-back:hover { color: var(--pink-hot); }

.result-card { text-align: center; }
.result-card .r-emoji { font-size: 3rem; }
.result-card img { border-radius: 20px; margin: 18px auto; max-width: 320px; box-shadow: var(--shadow); }
.code-chip { display: inline-block; background: var(--chartreuse); color: var(--green-dark); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: 0.08em; padding: 10px 26px; border-radius: var(--radius-pill); border: 3px dashed var(--green-deep); margin: 14px 0; }

/* ---------- VSL page ---------- */
.vsl-hero { background: var(--green-dark); color: var(--cream); padding: 60px 0 80px; text-align: center; }
.vsl-hero .kicker { color: var(--chartreuse); }
.vsl-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3.4rem); max-width: 22ch; margin: 0 auto 14px; }
.vsl-hero h1 em { font-style: normal; color: var(--pink); }
.vsl-hero .lead { font-size: 1.15rem; font-weight: 600; max-width: 58ch; margin: 0 auto; opacity: 0.9; }

.video-frame { position: relative; aspect-ratio: 16 / 9; max-width: 860px; margin: 34px auto 0; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(120% 140% at 50% 0%, var(--green-deep) 0%, #17330f 75%); box-shadow: 0 24px 70px rgba(0,0,0,0.4); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-frame .vf-inner { text-align: center; padding: 20px; }
.play-btn { width: 92px; height: 92px; border-radius: 50%; background: var(--pink-hot); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: transform 0.15s ease; box-shadow: 0 10px 30px rgba(242,111,168,0.45); }
.video-frame:hover .play-btn { transform: scale(1.08); }
.play-btn::after { content: ''; display: block; width: 0; height: 0; border-left: 26px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 7px; }
.vf-label { font-family: var(--font-display); font-weight: 700; color: var(--chartreuse); }
.vf-sub { font-size: 0.85rem; opacity: 0.75; margin-top: 4px; }
.vf-bar { position: absolute; left: 0; bottom: 0; height: 6px; width: 0%; background: var(--pink-hot); transition: width 0.5s linear; }

.reveal-zone { max-height: 0; overflow: hidden; transition: max-height 0.8s ease; }
.reveal-zone.show { max-height: 4000px; }

.offer-stack { max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.offer-stack .os-head { background: var(--pink-hot); color: #fff; text-align: center; padding: 18px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.offer-stack ul { list-style: none; padding: 26px 34px 10px; }
.offer-stack li { display: flex; justify-content: space-between; gap: 16px; font-weight: 600; padding: 12px 0; border-bottom: 2px dashed rgba(35,79,32,0.12); }
.offer-stack li .os-val { font-family: var(--font-display); font-weight: 700; color: var(--green-deep); white-space: nowrap; }
.offer-stack .os-total { padding: 20px 34px 30px; text-align: center; }
.offer-stack .os-total .was { font-size: 1.1rem; font-weight: 700; color: #b4b4a4; text-decoration: line-through; }
.offer-stack .os-total .now { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--green-deep); margin: 4px 0 16px; }

/* ---------- deeper mobile pass ---------- */
@media (max-width: 900px) {
  .buybox { grid-template-columns: 1fr; }
  .buy-media { position: static; }
  .perks { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee .g-badge { margin: 0 auto; }
}

@media (max-width: 560px) {
  section.block { padding: 56px 0; }
  .announce { font-size: 0.72rem; padding: 8px 12px; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding: 44px 0 0; }
  .hero p.lead { font-size: 1.05rem; }
  .benefits { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }

  /* buybox: shop-first mobile layout */
  #buy { padding-top: 14px !important; }
  .buy-head { display: none; }
  .opt-grid { grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .opt-grid.two { grid-template-columns: 1fr; gap: 12px; }
  .opt-card { padding: 15px 8px 12px; border-width: 2.5px; border-radius: 16px; }
  .opt-card .o-name { font-size: 0.88rem; line-height: 1.15; }
  #format-grid .o-sub { display: none; }
  #format-grid .opt-card[data-name="the flavor flight"] .o-sub { display: block; font-size: 0.76rem; }
  .opt-card .o-price { font-size: 0.9rem; margin-top: 3px; }
  .opt-card .o-price s { font-size: 0.74rem; margin-left: 3px; }
  .opt-card .o-tag { font-size: 0.58rem; padding: 3px 8px; max-width: 94%; overflow: hidden; text-overflow: ellipsis; }
  .step-label { margin: 24px 0 16px; }
  .qty-row { justify-content: center; }
  .buy-media img { max-height: 44vh; width: 100%; object-fit: cover; }
  .trust-row { margin-top: 12px; }

  .q-card { padding: 28px 22px; }
  .ticker-track { font-size: 0.95rem; }
  .btn { padding: 12px 24px; }
  .big-cta { font-size: 1.1rem; }
  body { padding-bottom: 0; }
  .has-sticky { padding-bottom: 76px; }
}

/* ---------- page assets (round 3 polish) ---------- */
.video-frame .vf-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,51,15,0.2), rgba(23,51,15,0.55)); z-index: 1; }
.video-frame .vf-inner { position: relative; z-index: 2; }
.video-frame .vf-label, .video-frame .vf-sub { text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.video-frame .vf-sub { color: #fff; opacity: 0.9; }
.vf-bar { z-index: 2; }

.os-img { width: 100%; display: block; }

.quiz-cover { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 24px; display: block; }

.who-row { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.who-row img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid var(--pink-pale); flex: none; }
.who-row .who { margin: 0; }

/* ---------- UGC review cards + fyp band + pour moment ---------- */
.testi { overflow: hidden; }
.testi-photo { margin: -30px -30px 18px; display: block; }
.testi-photo img { width: 100%; aspect-ratio: 4 / 3.6; object-fit: cover; display: block; }

.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ugc-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); transition: transform 0.2s ease; }
.ugc-grid img:nth-child(odd) { transform: rotate(-1.4deg); }
.ugc-grid img:nth-child(even) { transform: rotate(1.4deg); }
.ugc-grid img:hover { transform: scale(1.05) rotate(0deg); }

.pour-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pour-band img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.pour-steps { list-style: none; }
.pour-steps li { display: flex; gap: 14px; align-items: baseline; font-weight: 600; font-size: 1.05rem; padding: 10px 0; }
.pour-steps .ps-n { font-family: var(--font-display); font-weight: 800; color: var(--pink-hot); font-size: 1.3rem; }

@media (max-width: 900px) {
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .pour-band { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
}
