:root {
  color-scheme: light;
  --ink: oklch(16% 0.012 170);
  --ink-soft: oklch(35% 0.018 170);
  --muted: oklch(52% 0.015 170);
  --line: oklch(90% 0.01 170);
  --line-strong: oklch(82% 0.015 170);
  --page: oklch(98.8% 0.004 110);
  --surface: oklch(100% 0 0);
  --surface-soft: oklch(96.5% 0.012 145);
  --green: oklch(39% 0.105 153);
  --green-2: oklch(49% 0.12 154);
  --green-soft: oklch(91% 0.045 150);
  --gold: oklch(78% 0.12 78);
  --rose: oklch(92% 0.035 24);
  --shadow: 0 28px 70px color-mix(in oklch, var(--ink), transparent 91%);
  --shadow-soft: 0 12px 32px color-mix(in oklch, var(--ink), transparent 94%);
  --radius: 6px;
  --container: 1180px;
  --section: clamp(76px, 9vw, 136px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--line), transparent 48%) 1px, transparent 1px) 50% 0 / 88px 88px,
    linear-gradient(180deg, var(--page), var(--surface-soft) 44%, var(--page) 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 8%, color-mix(in oklch, var(--green-soft), transparent 16%), transparent 30rem),
    radial-gradient(circle at 4% 44%, color-mix(in oklch, var(--rose), transparent 24%), transparent 26rem);
  z-index: -2;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--container), calc(100% - 32px));
  min-height: 68px;
  margin: 12px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid color-mix(in oklch, var(--line), transparent 18%);
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface), transparent 12%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 106px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s var(--ease), transform .22s var(--ease);
}

nav a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.section-band {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  padding-block: var(--section);
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(330px, 1.07fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
  padding-top: clamp(52px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.section-intro h2,
.offer h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: .95;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(4rem, 8.2vw, 6rem);
}

.hero-copy p {
  max-width: 34rem;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions span,
.benefit-media span {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 40px color-mix(in oklch, var(--ink), transparent 86%);
  font-weight: 700;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(100deg, transparent 35%, color-mix(in oklch, white, transparent 68%), transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 22px 56px color-mix(in oklch, var(--green), transparent 74%);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover {
  color: white;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: clamp(460px, 54vw, 660px);
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}

.hero-visual::before {
  inset: 4% 9% 11% 9%;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--surface), transparent 10%), color-mix(in oklch, var(--green-soft), transparent 16%));
  border: 1px solid color-mix(in oklch, var(--line), transparent 10%);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  width: 66%;
  aspect-ratio: 1;
  left: 18%;
  bottom: 3%;
  background: color-mix(in oklch, var(--green), transparent 86%);
  filter: blur(28px);
  transform: scaleX(1.25);
}

.hero-bg {
  position: absolute;
  inset: 9% auto auto 4%;
  width: 62%;
  height: 72%;
  object-fit: cover;
  border-radius: 999px;
  opacity: .12;
  filter: saturate(.82);
}

.hero-product {
  position: absolute;
  right: clamp(10px, 5vw, 70px);
  bottom: 1%;
  width: min(78%, 540px);
  filter: drop-shadow(0 42px 48px color-mix(in oklch, var(--ink), transparent 78%));
  animation: productFloat 8s var(--ease) infinite;
  will-change: transform;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .4fr);
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-intro h2,
.offer h2,
.final-cta h2 {
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
}

.section-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.58;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line-strong);
}

.signal-grid p {
  min-height: 206px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  align-items: end;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 560;
  line-height: 1.24;
  background: color-mix(in oklch, var(--surface), transparent 24%);
}

.signal-grid p:last-child {
  border-right: 0;
}

.reviews {
  width: 100%;
  padding-inline: max(16px, calc((100vw - var(--container)) / 2));
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.reviews-head img {
  width: 92px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.reviews-head p,
.score p {
  margin: 8px 0 0;
  color: var(--muted);
}

.score {
  text-align: right;
}

.score strong {
  display: block;
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: .8;
}

.score span,
.review-card > span {
  color: var(--gold);
  letter-spacing: .05em;
}

.review-tabs {
  display: flex;
  width: fit-content;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
  background: var(--surface-soft);
}

.review-tabs button,
.track-controls button,
.thumbs button,
.package {
  font: inherit;
  cursor: pointer;
}

.review-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 650;
  transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}

.review-tabs button:hover {
  transform: translateY(-1px);
}

.review-tabs button.active {
  color: white;
  background: var(--ink);
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 380px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 0 16px;
}

.review-track::-webkit-scrollbar {
  height: 8px;
}

.review-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line-strong);
}

.review-card {
  scroll-snap-align: start;
  min-height: 330px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklch, white, var(--surface-soft) 24%);
  box-shadow: 0 1px 0 color-mix(in oklch, white, transparent 10%) inset;
}

.review-card.is-hidden {
  display: none;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer span,
.review-card small {
  color: var(--muted);
}

.review-card h4,
.review-card p {
  margin: 0;
}

.review-card h4 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.review-card p {
  color: var(--ink-soft);
  line-height: 1.5;
}

.track-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.track-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 1.45rem;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.track-controls button:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
}

.benefit-list {
  display: grid;
  border-block: 1px solid var(--line-strong);
}

.benefit-list article {
  display: grid;
  grid-template-columns: minmax(170px, .43fr) 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article:last-child {
  border-bottom: 0;
}

.benefit-list h3,
.ingredient-grid h3,
.ritual-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.benefit-list p,
.ingredient-grid p,
.ritual-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.benefit-media {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.benefit-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ingredients {
  width: 100%;
  padding-inline: max(16px, calc((100vw - var(--container)) / 2));
  background: color-mix(in oklch, var(--green-soft), white 62%);
  border-block: 1px solid color-mix(in oklch, var(--green), white 70%);
}

.ingredient-grid,
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1px;
  border: 1px solid color-mix(in oklch, var(--green), white 68%);
  background: color-mix(in oklch, var(--green), white 68%);
}

.ingredient-grid article,
.ritual-grid article {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  background: color-mix(in oklch, white, var(--green-soft) 18%);
}

.ingredient-grid img,
.ritual-grid img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(.92) contrast(.98);
}

.offer {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.gallery {
  position: sticky;
  top: 104px;
}

.gallery-main {
  min-height: 540px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 44%, color-mix(in oklch, var(--green-soft), transparent 12%), transparent 19rem),
    linear-gradient(180deg, white, var(--surface-soft));
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: min(84%, 520px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px color-mix(in oklch, var(--ink), transparent 86%));
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}

.gallery-main:hover img {
  transform: scale(1.018) translateY(-4px);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.thumbs button {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 6px;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.thumbs button:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.thumbs img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.offer-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in oklch, white, var(--surface-soft) 18%);
  box-shadow: var(--shadow);
}

.offer-panel > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.5;
}

.bonus {
  color: var(--green) !important;
  font-weight: 800;
}

.packages {
  display: grid;
  gap: 10px;
  margin-block: 24px;
}

.package {
  position: relative;
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  text-align: left;
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.package:hover,
.package.selected {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--green), white 15%);
  box-shadow: 0 14px 36px color-mix(in oklch, var(--green), transparent 88%);
}

.package.selected {
  background: color-mix(in oklch, white, var(--green-soft) 20%);
}

.package img {
  width: 86px;
  height: 72px;
  object-fit: contain;
}

.package strong,
.package small {
  display: block;
}

.package strong {
  font-size: 1rem;
}

.package small {
  color: var(--muted);
  font-weight: 600;
}

.package > span:last-child {
  text-align: right;
  font-size: 1.13rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.package s {
  margin-left: 6px;
  color: var(--muted);
  font-size: .88rem;
}

.package em {
  position: absolute;
  top: -11px;
  right: 14px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--ink);
  color: white;
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
}

.buy {
  width: 100%;
  min-height: 72px;
  flex-direction: column;
  border-radius: var(--radius);
}

.buy small {
  color: color-mix(in oklch, white, var(--green-soft) 22%);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 600;
}

.trust-row span:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line-strong);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.cards img {
  height: 22px;
}

.ritual-grid {
  border-color: var(--line);
  background: var(--line);
}

.ritual-grid article {
  background: white;
}

.ritual-grid article span {
  justify-self: start;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--green);
  font-size: .86rem;
  font-weight: 700;
}

.faq {
  width: min(940px, calc(100% - 32px));
}

.faq .section-intro {
  display: block;
}

.faq-list {
  display: grid;
  gap: 8px;
}

details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 0;
  color: var(--ink);
  font-weight: 650;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 600;
  transition: transform .24s var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 64ch;
  margin: 0;
  padding: 0 40px 22px 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
  padding-bottom: clamp(56px, 8vw, 100px);
}

.final-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.55;
}

.final-cta dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  border-block: 1px solid var(--line-strong);
  background: var(--line);
}

.final-cta dl div {
  min-height: 104px;
  padding: 20px;
  display: grid;
  align-content: center;
  background: color-mix(in oklch, white, var(--surface-soft) 24%);
}

dt {
  color: var(--ink);
  font-weight: 700;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.site-footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, .62fr));
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.site-footer img {
  width: 116px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer p,
.site-footer a {
  color: color-mix(in oklch, white, transparent 24%);
  line-height: 1.5;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer div:nth-child(2) p + p {
  margin-top: 10px;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.985);
  filter: blur(10px);
  transition:
    opacity .78s var(--ease),
    transform .78s var(--ease),
    filter .78s var(--ease);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes productFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-.8deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(.8deg);
  }
}

/* Product-sales pass: product, offer, proof, then education. */
body {
  background:
    radial-gradient(circle at 78% 4%, color-mix(in oklch, var(--green-soft), white 20%) 0 18rem, transparent 38rem),
    linear-gradient(180deg, white 0, var(--page) 36rem, color-mix(in oklch, var(--green-soft), white 78%) 100%);
}

body::before {
  display: none;
}

.site-header {
  top: 10px;
  min-height: 64px;
  border: 1px solid color-mix(in oklch, var(--ink), transparent 88%);
  background: color-mix(in oklch, white, transparent 5%);
  box-shadow: 0 8px 0 color-mix(in oklch, var(--green-soft), white 35%);
}

nav a[href="#comprar"] {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 18px;
  background: var(--green);
  color: white;
}

nav a[href="#comprar"]:hover {
  color: white;
  background: var(--ink);
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, .86fr) minmax(330px, 1.14fr);
  gap: clamp(30px, 6vw, 86px);
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.hero-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(3.5rem, 7.2vw, 5.85rem);
  letter-spacing: -0.034em;
}

.hero-copy p {
  max-width: 36rem;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-actions {
  align-items: stretch;
  gap: 12px;
}

.hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
  background: var(--green);
  border-color: var(--green);
}

.hero-actions span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding-inline: 18px;
  background: white;
  color: var(--ink-soft);
}

.hero-visual {
  min-height: clamp(410px, 43vw, 570px);
}

.hero-visual::before {
  inset: 6% 2% 5% 14%;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--green-soft), white 12%), white 62%),
    var(--surface);
  box-shadow: 0 10px 0 color-mix(in oklch, var(--green), white 62%);
}

.hero-visual::after {
  width: 74%;
  left: 10%;
  bottom: 7%;
  background: color-mix(in oklch, var(--gold), transparent 70%);
  filter: blur(18px);
}

.hero-bg {
  inset: 8% auto auto 0;
  width: 48%;
  height: 80%;
  border-radius: 18px;
  opacity: .18;
}

.hero-product {
  right: clamp(0px, 5vw, 54px);
  bottom: 3%;
  width: min(82%, 560px);
  filter: drop-shadow(0 24px 24px color-mix(in oklch, var(--ink), transparent 82%));
}

.offer {
  width: min(1240px, calc(100% - 32px));
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.gallery {
  top: 92px;
}

.gallery-main {
  min-height: clamp(460px, 44vw, 620px);
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 52%, color-mix(in oklch, var(--green-soft), white 12%) 0 12rem, transparent 22rem),
    linear-gradient(180deg, white, color-mix(in oklch, var(--green-soft), white 58%));
  box-shadow: 0 10px 0 color-mix(in oklch, var(--green), white 62%);
}

.gallery-main img {
  width: min(88%, 560px);
  max-height: 560px;
  filter: drop-shadow(0 20px 18px color-mix(in oklch, var(--ink), transparent 84%));
}

.thumbs {
  gap: 10px;
}

.thumbs button {
  border-color: color-mix(in oklch, var(--ink), transparent 88%);
  border-radius: 10px;
  background: white;
}

.offer-panel {
  position: sticky;
  top: 92px;
  border: 2px solid color-mix(in oklch, var(--green), white 42%);
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 0 color-mix(in oklch, var(--green), white 62%);
}

.offer-panel h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.034em;
}

.bonus {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in oklch, var(--gold), white 70%);
  color: var(--ink) !important;
  font-size: .98rem !important;
}

.packages {
  gap: 12px;
  margin-block: 26px 20px;
}

.package {
  min-height: 104px;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  border: 1px solid color-mix(in oklch, var(--ink), transparent 88%);
  border-radius: 12px;
  background: color-mix(in oklch, white, var(--green-soft) 7%);
}

.package:hover,
.package.selected {
  transform: translateY(-1px);
  border-color: var(--green);
  box-shadow: 0 5px 0 color-mix(in oklch, var(--green), white 58%);
}

.package.selected {
  background: color-mix(in oklch, var(--green-soft), white 45%);
}

.package em {
  top: -12px;
  right: 12px;
  background: var(--green);
  box-shadow: 0 3px 0 color-mix(in oklch, var(--ink), transparent 84%);
}

.package > span:last-child {
  color: var(--green);
}

.package s {
  display: inline-block;
}

.buy {
  min-height: 76px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  box-shadow: 0 7px 0 color-mix(in oklch, var(--green), black 22%);
  font-size: 1.12rem;
}

.buy:hover {
  background: var(--ink);
  box-shadow: 0 7px 0 color-mix(in oklch, var(--ink), black 20%);
}

.trust-row {
  margin-top: 18px;
  justify-content: space-between;
  gap: 8px;
}

.trust-row span {
  flex: 1 1 142px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklch, var(--green-soft), white 62%);
  color: var(--ink);
  text-align: center;
}

.trust-row span:not(:last-child)::after {
  content: none;
}

.cards {
  margin-top: 18px;
}

.signals {
  width: 100%;
  padding-inline: max(16px, calc((100vw - var(--container)) / 2));
  background: var(--ink);
  color: white;
}

.signals .section-intro h2,
.signals .section-intro p {
  color: white;
}

.signal-grid {
  border-color: color-mix(in oklch, white, transparent 78%);
}

.signal-grid p {
  position: relative;
  min-height: 176px;
  padding-top: 58px;
  border-color: color-mix(in oklch, white, transparent 86%);
  background: color-mix(in oklch, white, transparent 94%);
  color: white;
}

.signal-grid p::before {
  content: "";
  position: absolute;
  top: 24px;
  left: clamp(22px, 3vw, 34px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 6px var(--green);
}

.reviews {
  background: white;
}

.reviews-head {
  align-items: center;
}

.reviews-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-head img {
  border: 0;
  box-shadow: 0 4px 0 var(--line);
}

.score strong {
  color: var(--green);
}

.review-card {
  min-height: 318px;
  border-radius: 12px;
  border-color: color-mix(in oklch, var(--ink), transparent 90%);
  background: white;
  box-shadow: 0 6px 0 color-mix(in oklch, var(--green-soft), white 25%);
}

.ingredients {
  background: color-mix(in oklch, var(--green-soft), white 46%);
}

.ingredient-grid,
.ritual-grid {
  border-radius: 16px;
  overflow: hidden;
}

.ingredient-grid article,
.ritual-grid article {
  padding: 20px;
}

.final-cta {
  align-items: stretch;
}

.final-cta > div:nth-child(2) {
  align-self: center;
}

.final-cta dl {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .section-intro,
  .benefit-layout,
  .offer,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 520px;
  }

  .signal-grid,
  .final-cta dl,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid p:nth-child(2n) {
    border-right: 0;
  }

  .gallery {
    position: static;
  }

  .offer-panel {
    position: static;
  }
}

@media (max-width: 660px) {
  .section-band,
  .site-header,
  .faq,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  .section-band {
    padding-block: clamp(58px, 15vw, 82px);
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .hero-copy p {
    font-size: 1.06rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-product {
    width: 90%;
    right: 1%;
  }

  .signal-grid,
  .final-cta dl,
  .site-footer,
  .reviews-head,
  .benefit-list article,
  .package {
    grid-template-columns: 1fr;
  }

  .signal-grid p {
    min-height: 124px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid p:last-child {
    border-bottom: 0;
  }

  .score,
  .package > span:last-child {
    text-align: left;
  }

  .gallery-main {
    min-height: 380px;
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .package {
    gap: 12px;
  }

  .offer {
    width: min(100% - 24px, 1240px);
    padding-top: 26px;
  }

  .gallery-main {
    border-radius: 14px;
  }

  .offer-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .offer-panel h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .buy {
    position: sticky;
    bottom: 12px;
    z-index: 12;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-ready [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
