:root {
  --ink: #101512;
  --paper: #f6f4ee;
  --white: #ffffff;
  --green: #145a43;
  --green-dark: #0b2f25;
  --green-deeper: #071d17;
  --gold: #c8a15f;
  --coral: #e15a2f;
  --muted: #66736d;
  --line: rgba(16, 21, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #dedbd2;
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
}

svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  flex: 0 0 auto;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.shell {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(16, 21, 18, 0.08), 0 18px 50px rgba(16, 21, 18, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-block {
  width: 100%;
}

.btn-big {
  min-height: 56px;
  padding: 16px 24px;
  font-size: 17px;
}

.btn-cta {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(225, 90, 47, 0.28);
}

.btn-cta:hover {
  background: #cb4d25;
}

.btn-outline {
  background: var(--white);
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: #eef5f0;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid var(--line-light);
}

.band {
  padding: 36px 20px 40px;
}

.band-light {
  background: var(--paper);
}

.band-dark {
  background: var(--green-dark);
  color: var(--paper);
}

.band-green {
  background: var(--green);
  color: var(--white);
}

.section-head {
  max-width: 480px;
  margin: 0 auto 24px;
}

.section-head.on-dark {
  color: var(--white);
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
}

.kicker-gold {
  color: var(--gold);
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.section-lead {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.on-dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.tiny-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.band-dark .tiny-note {
  color: rgba(255, 255, 255, 0.6);
}

/* Age gate */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--green-deeper);
}

.age-gate.is-hidden {
  display: none;
}

.age-box {
  width: 100%;
  max-width: 360px;
  padding: 26px 22px 22px;
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.age-logo {
  width: 84px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.age-box h1 {
  margin: 10px 0 8px;
  font-size: 28px;
  line-height: 1.15;
}

.age-copy {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.age-box .btn {
  margin-bottom: 10px;
}

.age-note {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

/* Topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 9px 16px;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
}

.topbar-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.rating-text svg.lucide {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.age-chip {
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
}

/* Hero */

.hero {
  padding: 30px 20px 34px;
  background: var(--green-dark);
  color: var(--paper);
}

.hero-copy h1 {
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.02;
}

.lead {
  margin: 14px 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.stars,
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg.lucide,
.review-stars svg.lucide {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.hero-badges {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badges svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  margin-top: 28px;
}

.hero-product {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.chip-days {
  top: 12px;
  left: 4px;
}

.chip-natural {
  right: 4px;
  bottom: 12px;
}

.hero-chip svg.lucide {
  width: 15px;
  height: 15px;
  color: var(--coral);
}

/* Quiz */

.quiz-box {
  max-width: 480px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quiz-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.quiz-step-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: #e3dfd4;
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 0.25s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
  animation: step-in 0.24s ease;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step h3,
.quiz-result h3 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.3;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid.one {
  grid-template-columns: minmax(0, 1fr);
}

.option {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1.5px solid #d8d4c8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.12s ease;
}

.option:active {
  transform: translateY(1px);
}

.option.is-selected {
  border-color: var(--green);
  background: #eef5f0;
}

.option-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.option-ico svg.lucide {
  width: 17px;
  height: 17px;
}

.quiz-result {
  text-align: center;
  animation: step-in 0.24s ease;
}

.result-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.result-badge svg.lucide {
  width: 24px;
  height: 24px;
}

.quiz-result p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.quiz-nav .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.quiz-hint {
  font-size: 12px;
  color: var(--muted);
}

/* How it works */

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 8px;
  align-content: start;
}

.step-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 161, 95, 0.16);
  color: var(--gold);
}

.step-ico svg.lucide {
  width: 22px;
  height: 22px;
}

.steps h3 {
  margin: 2px 0 0;
  font-size: 17px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* Ingredients */

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 80px;
  padding: 8px 12px 8px 8px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.acc-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.acc-copy strong {
  font-size: 15px;
}

.acc-copy small {
  font-size: 12px;
  color: var(--muted);
}

.acc-chevron {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.accordion-card.is-open .acc-chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 14px 16px 84px;
  font-size: 14px;
  line-height: 1.6;
  color: #444b47;
}

.accordion-panel p {
  margin: 0;
}

.accordion-card.is-open .accordion-panel {
  display: block;
  animation: step-in 0.2s ease;
}

/* Compare slider */

.compare-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.compare-base,
.compare-top {
  position: absolute;
  inset: 0;
}

.compare-base img,
.compare-top img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.compare-base img {
  width: 100%;
}

.compare-top {
  left: 0;
  width: calc(var(--compare-pos, 0.5) * 100%);
  overflow: hidden;
  border-right: 2px solid var(--white);
}

.compare-top img {
  width: calc(100% / var(--compare-pos, 0.5));
  height: 100%;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--compare-pos, 0.5) * 100%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 4px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle svg.lucide {
  width: 26px;
  height: 26px;
  padding: 4px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.compare-tag {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(11, 47, 37, 0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.tag-left {
  left: 12px;
}

.tag-right {
  right: 12px;
}

/* Reviews */

.review-track {
  display: flex;
  gap: 14px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 86%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  scroll-snap-align: center;
}

.review-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.review-card footer strong {
  display: block;
  font-size: 14px;
}

.review-card footer small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid #d8d4c8;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
}

.icon-btn svg.lucide {
  width: 20px;
  height: 20px;
}

.review-counter {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* Plans */

.promo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f6ead0;
  color: #6f521d;
  font-size: 14px;
  font-weight: 800;
}

.promo-note svg.lucide {
  width: 16px;
  height: 16px;
}

.plan-list {
  display: grid;
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px 18px;
  border: 1.5px solid #d8d4c8;
  border-radius: 8px;
  background: var(--white);
}

.plan-card.popular {
  border-color: var(--green);
  background: #f0f6f2;
}

.plan-card.is-selected {
  border-color: var(--coral);
  box-shadow: 0 10px 26px rgba(225, 90, 47, 0.16);
}

.plan-card.is-selected .select-plan {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 8px 22px rgba(225, 90, 47, 0.28);
}

.plan-flag {
  position: absolute;
  top: -12px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 6px;
  background: var(--gold);
  color: #101512;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-head h3 {
  margin: 0;
  font-size: 20px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6e2d7;
  color: #4f5a54;
  font-size: 12px;
  font-weight: 800;
}

.plan-price {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.plan-features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.45;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features svg.lucide {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--green);
}

.plan-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

/* Handoff */

.handoff {
  text-align: center;
}

.choice-row {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 18px;
}

.handoff-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.handoff-note svg.lucide {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row svg.lucide {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

/* Footer */

.footer {
  padding: 30px 20px calc(34px + env(safe-area-inset-bottom));
  background: var(--green-deeper);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-logo {
  width: 46px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0 0 16px;
  font-size: 13px;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
}

.disclaimer {
  max-width: 560px;
  margin: 0 auto 14px;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Sticky CTA */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 47, 37, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.22);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-plan {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}

.sticky-cta .btn {
  flex: 1;
  max-width: 320px;
  min-height: 50px;
}

@media (min-width: 640px) {
  .shell {
    max-width: 760px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 32px;
    padding: 46px 34px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-visual {
    margin-top: 0;
  }

  .section-head {
    max-width: 560px;
  }

  .quiz-box {
    max-width: 560px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    margin: 0 auto;
  }

  .accordion {
    max-width: 620px;
    margin: 0 auto;
  }

  .review-card {
    flex-basis: 46%;
  }

  .plan-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    margin: 0 auto;
  }

  .choice-row {
    grid-template-columns: 1fr auto;
    max-width: 560px;
  }
}
