:root {
  --bg: #fbfaf2;
  --paper: #fff;
  --ink: #101012;
  --muted: #63635e;
  --line: rgba(16,16,18,.11);
  --mint: #d8fff3;
  --mint-2: #bef5e7;
  --yellow: #fff08b;
  --yellow-2: #ffe76a;
  --cream: #fff8dc;
  --shadow: 0 28px 80px rgba(21,31,29,.12);
  --shadow-soft: 0 18px 50px rgba(21,31,29,.09);
  --radius-lg: 34px;
  --serif: 'Cormorant Garamond',Georgia,serif;
  --sans: 'Inter',Arial,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(circle at 3% 5%,rgba(255,239,120,.55),transparent 22%),radial-gradient(circle at 96% 13%,rgba(205,255,239,.75),transparent 27%),linear-gradient(90deg,#fff3a5 0 4.7%,#fbfaf2 12% 88%,#d9fff5 95% 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px,calc(100% - 40px));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  z-index: -2;
  pointer-events: none;
}

.page-glow--left {
  left: -12vw;
  top: 8vh;
  background: var(--yellow);
}

.page-glow--right {
  right: -12vw;
  top: 16vh;
  background: var(--mint-2);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 0 12px;
  transition: .25s ease;
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 10px 18px 10px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 20px;
}

.brand__mark {
  font-size: 26px;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  color: #575756;
  font-weight: 600;
}

.main-nav a {
  transition: .2s;
}

.main-nav a:hover {
  color: #000;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #101012;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.burger span {
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: .2s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--dark {
  background: #101012;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.btn--line {
  background: rgba(255,255,255,.48);
  border-color: rgba(16,16,18,.15);
  color: #101012;
}

.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 11px;
}

.btn--full {
  width: 100%;
}

.section-offset {
  padding-top: 42px;
}

.section {
  padding: 88px 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: #373733;
}

.eyebrow span {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--yellow),var(--mint));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(440px,.9fr);
  gap: 54px;
  align-items: center;
  min-height: 650px;
}

.hero__copy h1 {
  font-family: var(--serif);
  font-size: 70px;
  line-height: .88;
  letter-spacing: -.065em;
  margin: 24px 0 20px;
  max-width: 660px;
}

.hero__lead {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 610px;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: nowrap;
  margin-top: 64px;
}

.mini-proof {
  min-width: 142px;
  padding: 18px 20px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.mini-proof--yellow {
  background: linear-gradient(135deg,#fff6a9,#fffbdc);
}

.mini-proof strong {
  display: block;
  font-size: 31px;
  letter-spacing: -.06em;
}

.mini-proof span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 650;
}

.hero__visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  right: 0;
  top: 48px;
  width: 62%;
  height: 560px;
  border-radius: 36px;
  background: linear-gradient(135deg,#dbfff5,#fff2a8);
  transform: rotate(.3deg);
}

.hero-card--person {
  left: 0;
  top: 170px;
  width: 46%;
  height: 390px;
  border-radius: 36px;
  background: #fff;
  transform: rotate(-2deg);
}

.explore-badge {
  position: absolute;
  left: 14%;
  top: 68px;
  width: 120px;
  height: 120px;
  border: 1px solid #101012;
  border-radius: 50%;
  z-index: 5;
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: italic;
  font-size: 20px;
  line-height: 1.02;
  transform: rotate(6deg);
}

.explore-badge i {
  font-style: normal;
  font-size: 25px;
}

.floating-img--capsule {
  position: absolute;
  right: 49%;
  bottom: 8%;
  width: 115px;
  border-radius: 34px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  animation: float 5.2s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .82;
}

.orb--mint {
  width: 160px;
  height: 160px;
  background: #c9fff0;
  right: 14%;
  bottom: 0;
  z-index: -1;
}

.orb--yellow {
  width: 105px;
  height: 105px;
  background: #fff08b;
  left: 16%;
  top: 39%;
  z-index: -1;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr 1.1fr;
  gap: 20px;
  margin-top: 22px;
}

.story-card {
  position: relative;
  min-height: 184px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.7);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-card--photo:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 68%;
  background: linear-gradient(transparent,rgba(0,0,0,.78));
}

.story-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.story-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .88;
}

.story-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
  margin-top: 6px;
}

.story-card--cream {
  padding: 24px;
  background: linear-gradient(135deg,#fffbe8,#e5fff7);
}

.story-card--cream small {
  font-weight: 800;
}

.story-card--cream p {
  font-size: 18px;
  line-height: 1.3;
  margin: 22px 0 0;
  letter-spacing: -.03em;
}

.quote-mark {
  position: absolute;
  right: 20px;
  bottom: 4px;
  font-family: var(--serif);
  font-size: 70px;
  line-height: 1;
}

.story-card--dark:after {
  background: linear-gradient(transparent,rgba(0,0,0,.82));
}

.two-col {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.route__top h2,
.banner-copy h2,
.formula__head h2,
.compare-heading h2,
.stories__head h2,
.order-copy h2,
.faq-heading h2 {
  font-family: var(--serif);
  font-size: clamp(42px,5vw,68px);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 14px 0 0;
}

.section-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 42px;
}

.problem-card {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.problem-card:before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--yellow),var(--mint));
  opacity: .72;
}

.number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #101012;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.problem-card h3 {
  font-size: 28px;
  letter-spacing: -.05em;
  line-height: 1;
  margin: 52px 0 12px;
}

.problem-card p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.route {
  position: relative;
}

.route:before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 540px;
  background: linear-gradient(135deg,rgba(212,255,242,.62),rgba(255,240,139,.34));
  border-radius: 0 0 52px 52px;
  z-index: -1;
  clip-path: ellipse(78% 56% at 50% 42%);
}

.route__top {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.route__top p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.72;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.benefit-card {
  position: relative;
  min-height: 460px;
  background: linear-gradient(180deg,#e3fff7,#f8fffc);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.benefit-card--accent {
  background: linear-gradient(160deg,#fff7a8,#d8fff3);
}

.benefit-card h3 {
  font-size: 28px;
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 10px;
}

.benefit-card p {
  font-size: 13px;
  line-height: 1.58;
  color: #50504c;
  margin: 0 0 14px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: auto;
}

.tags span {
  font-size: 10px;
  font-weight: 800;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(16,16,18,.06);
  border-radius: 999px;
  padding: 7px 10px;
  color: #555;
}

.benefit-card img {
  width: 100%;
  height: 178px;
  border-radius: 20px;
  object-fit: cover;
  margin-top: 24px;
}

.benefit-card a {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.info-banner {
  padding-top: 52px;
}

.banner-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 36px;
  align-items: center;
  min-height: 420px;
  border-radius: 42px;
  background: linear-gradient(115deg,#d8fff3 0%,#fff4a1 63%,#fff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 48px 56px;
}

.banner-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/botanical-bg.jpg') center/cover;
  opacity: .16;
  mix-blend-mode: multiply;
}

.banner-copy,
.banner-visual {
  position: relative;
  z-index: 2;
}

.banner-copy p {
  max-width: 560px;
  line-height: 1.72;
  color: #444;
}

.banner-visual img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.13);
}

.banner-note {
  position: absolute;
  left: -18px;
  bottom: 22px;
  background: #4f6b77;
  color: #fff;
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

.banner-note strong,
.banner-note span {
  display: block;
}

.banner-note span {
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.formula__head,
.stories__head {
  text-align: center;
  max-width: 780px;
}

.formula__head p {
  color: var(--muted);
  line-height: 1.7;
}

.support-anywhere {
  padding-top: 40px;
}

.support-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.support-left h2 {
  font-family: var(--serif);
  font-size: clamp(43px,5vw,66px);
  line-height: .9;
  letter-spacing: -.055em;
  margin: 14px 0 26px;
}

.support-photo {
  height: 360px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-right {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: start;
}

.support-right>p {
  grid-column: 1/-1;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.service-list {
  background: rgba(255,255,255,.72);
  border-radius: 28px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.service-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
}

.service-list span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #101012;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
}

.quick-box {
  background: linear-gradient(135deg,#fff399,#d8fff3);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.quick-box img {
  height: 130px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
}

.quick-box h3 {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 8px;
}

.quick-box p {
  font-size: 13px;
  color: #4e4e49;
  line-height: 1.55;
}

.formula {
  position: relative;
}

.formula:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/abstract-bg.jpg') center/cover;
  opacity: .08;
  z-index: -1;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 44px;
}

.ingredient {
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.8);
}

.ingredient img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.ingredient h3 {
  font-size: 22px;
  letter-spacing: -.04em;
  margin: 18px 8px 8px;
}

.ingredient p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0 8px 10px;
}

.ingredient--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg,#fff7b3,#e6fff8);
}

.ingredient--wide img {
  height: 100%;
}

.compare-shell {
  border-radius: 40px;
  background: #101012;
  color: #fff;
  padding: 50px;
  box-shadow: var(--shadow);
}

.compare-heading {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.compare-heading .kicker {
  color: var(--yellow);
}

.compare-table {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}

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

.compare-row>div {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  line-height: 1.5;
  color: rgba(255,255,255,.76);
}

.compare-row>div:first-child {
  font-weight: 800;
  color: #fff;
}

.compare-row--head>div {
  background: rgba(255,255,255,.08);
  font-weight: 900;
  color: #fff;
}

.stories {
  padding-top: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 38px;
}

.review {
  background: rgba(255,255,255,.76);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.8);
}

.review img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.review p {
  font-size: 15px;
  line-height: 1.62;
  color: #444;
  margin: 18px 8px;
}

.review strong {
  display: block;
  margin: 0 8px 8px;
}

.order-section {
  padding-top: 30px;
}

.order-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 54px;
  align-items: center;
  border-radius: 44px;
  background: linear-gradient(125deg,#dcfff5,#fff096);
  padding: 56px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.order-shell:before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -35%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}

.order-copy,
.lead-form {
  position: relative;
  z-index: 2;
}

.order-copy p {
  max-width: 580px;
  line-height: 1.72;
  color: #444;
}

.order-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.order-benefits div {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 750;
}

.order-benefits strong {
  color: #101012;
}

.lead-form {
  background: #fff;
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  display: grid;
  gap: 15px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  color: #555;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(16,16,18,.12);
  background: #f8f8f3;
  padding: 0 16px;
  color: #101012;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: #101012;
  background: #fff;
}

.form-note {
  font-size: 11px;
  line-height: 1.55;
  color: #777;
  text-align: center;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 56px;
}

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

.faq-list details {
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.8);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  padding: 22px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary:after {
  content: "âˆ’";
}

.faq-list p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  background: #101012;
  color: #fff;
  margin-top: 60px;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 40px;
  align-items: start;
}

.brand--footer {
  margin-bottom: 14px;
}

.footer p {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 20px;
  text-align: center;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%,120px);
  background: #101012;
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  z-index: 80;
  font-weight: 800;
  font-size: 13px;
  transition: .35s;
}

.toast.show {
  transform: translate(-50%,0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease,transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  margin-top: 120px;
}

.reveal-delay-1 {
  transition-delay: .11s;
}

.reveal-delay-2 {
  transition-delay: .22s;
}

.reveal-delay-3 {
  transition-delay: .33s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@media (max-width:1060px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-shell .btn {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero-card--main {
    width: 58%;
    right: 6%;
  }

  .hero-card--person {
    left: 6%;
  }

  .hero-strip,
  .route-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .two-col,
  .route__top,
  .banner-shell,
  .support-grid,
  .compare-heading,
  .order-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .support-right {
    grid-template-columns: 1fr 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav.open {
    display: flex;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 104px;
    background: #101012;
    color: #fff;
    border-radius: 26px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    color: #fff;
    font-size: 18px;
  }

  .burger.active span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .burger.active span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media (max-width:760px) {
  .container {
    width: min(100% - 24px,1180px);
  }

  .site-header {
    top: 8px;
  }

  .nav-shell {
    height: 62px;
    padding-left: 18px;
  }

  .brand {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .hero__copy h1 {
    font-size: 50px;
    line-height: .92;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mini-proof {
    min-width: 0;
  }

  .hero__visual {
    min-height: 510px;
  }

  .hero-card--main {
    width: 68%;
    height: 430px;
    right: 0;
    top: 40px;
  }

  .hero-card--person {
    width: 48%;
    height: 300px;
    left: 0;
    top: 165px;
  }

  .explore-badge {
    width: 92px;
    height: 92px;
    font-size: 15px;
    left: 2%;
    top: 48px;
  }

  .floating-img--capsule {
    width: 90px;
    right: 48%;
    bottom: 0;
  }

  .hero-strip,
  .problem-grid,
  .route-grid,
  .support-right,
  .ingredients-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 210px;
  }

  .section-heading h2,
  .route__top h2,
  .banner-copy h2,
  .formula__head h2,
  .compare-heading h2,
  .stories__head h2,
  .order-copy h2,
  .faq-heading h2,
  .support-left h2 {
    font-size: 42px;
  }

  .problem-card {
    min-height: auto;
  }

  .banner-shell,
  .order-shell,
  .compare-shell {
    padding: 28px;
    border-radius: 30px;
  }

  .banner-visual img {
    height: 240px;
  }

  .banner-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .support-photo {
    height: 280px;
  }

  .ingredient--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .compare-row--head {
    display: none;
  }

  .compare-row>div {
    border-right: 0;
  }

  .compare-row>div:nth-child(2):before {
    content: 'Prostalis: ';
    font-weight: 900;
    color: #fff;
  }

  .compare-row>div:nth-child(3):before {
    content: 'ÐÐ½Ð°Ð»Ð¾Ð³Ð¸: ';
    font-weight: 900;
    color: #fff;
  }

  .order-benefits {
    display: grid;
  }

  .footer {
    margin-top: 34px;
  }

  .toast {
    width: calc(100% - 24px);
    text-align: center;
    border-radius: 22px;
  }

  .route:before {
    height: 760px;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none;
    transition: none;
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero__visual--order {
  min-height: 690px;
}

.hero__visual--order .hero-card--main {
  right: 0;
  top: -135px;
  width: 56%;
  height: 430px;
  border-radius: 38px;
}

.hero__visual--order .hero-card--person {
  left: 0;
  top: -40px;
  width: 40%;
  height: 300px;
  border-radius: 34px;
}

.hero__visual--order .explore-badge {
  left: 3%;
  top: -100px;
  background: rgba(255,255,255,.62);
}

.hero__visual--order .floating-img--capsule {
  right: 42%;
  bottom: 24%;
  z-index: 7;
  width: 96px;
}

.hero-order-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  width: min(460px,82%);
  z-index: 8;
  margin: auto;
  border: 1px solid rgba(16,16,18,.08);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
  padding: 6px 2px 10px;
  border-bottom: 1px solid rgba(16,16,18,.08);
}

.form-topline span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  color: #5e5e58;
}

.form-topline strong {
  font-size: 18px;
  letter-spacing: -.04em;
  color: #101012;
  white-space: nowrap;
}

.footer-bottom {
  color: rgba(255,255,255,.56);
}

@media (max-width:1060px) {
  .hero__visual--order {
    min-height: 760px;
  }

  .hero-order-card {
    width: min(520px,90%);
    bottom: 0;
  }

  .hero__visual--order .hero-card--main {
    right: 14%;
	top: -60px;
    width: 37%;
    height: 457px;
  }

  .hero__visual--order .hero-card--person {
    left: 6%;
    top: 26px;
    width: 38%;
    height: 395px;
  }
}

@media (max-width:760px) {
  .hero__visual--order {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero__visual--order .hero-card,
  .hero-order-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .hero__visual--order .hero-card--main,
  .hero__visual--order .hero-card--person {
    width: 100%;
    height: 490px;
    transform: none;
  }

  .hero__visual--order .hero-card--person {
    height: 400px;
  }

  .hero__visual--order .explore-badge {
    display: none;
  }

  .hero__visual--order .floating-img--capsule {
    right: 14px;
    bottom: calc(100% - 640px);
    width: 76px;
  }

  .hero-order-card {
    margin: 0;
  }

  .form-topline {
    display: grid;
    gap: 4px;
  }

  .form-topline strong {
    font-size: 17px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .hero__visual--order .orb {
    display: none;
  }
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.price-stack del {
  font-size: 15px;
  color: #777;
  text-decoration-thickness: 2px;
}

.price-stack strong {
  font-size: 28px;
  letter-spacing: -.06em;
}

.form-topline {
  justify-content: flex-start;
}

.form-topline:only-child {
  border-bottom: 0;
}

.hero__copy h1 {
  max-width: 720px;
}

.hero__trust .mini-proof--yellow strong {
  font-size: 34px;
}

.form-offer {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16,16,18,.08);
}

.price-stack {
  margin-left: auto;
  background: linear-gradient(135deg,#fff6a9,#e0fff6);
  border-radius: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(16,16,18,.07);
}

.price-stack del {
  font-weight: 800;
  color: #888;
  text-decoration-thickness: 2px;
}

.price-stack strong {
  color: #101012;
}

.risk-section {
  padding-top: 38px;
  position: relative;
}

.risk-section:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12%;
  height: 430px;
  background: linear-gradient(135deg,rgba(255,240,139,.36),rgba(216,255,243,.58));
  clip-path: ellipse(72% 56% at 50% 45%);
  z-index: -1;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 34px;
}

.risk-card {
  min-height: 270px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.risk-card:after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--yellow),var(--mint));
  opacity: .65;
}

.risk-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #101012;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.risk-card h3 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.05em;
  margin: 42px 0 12px;
  position: relative;
  z-index: 2;
}

.risk-card p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
  position: relative;
  z-index: 2;
}

.expert {
  padding-top: 46px;
}

.expert-shell {
  display: grid;
  grid-template-columns: .72fr 1.1fr;
  gap: 44px;
  align-items: center;
  border-radius: 42px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.expert-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,rgba(216,255,243,.9),rgba(255,240,139,.35),rgba(255,255,255,.9));
  z-index: 0;
}

.expert-photo,
.expert-copy {
  position: relative;
  z-index: 2;
}

.expert-photo img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.expert-copy {
  padding: 18px 24px 18px 4px;
}

.expert-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px,5vw,68px);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 14px 0 22px;
}

.expert-copy blockquote {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
  color: #171716;
}

.trust-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.trust-note div {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(16,16,18,.07);
  border-radius: 22px;
  padding: 18px;
}

.trust-note strong {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
}

.trust-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review {
  display: flex;
  flex-direction: column;
}

.review p {
  flex: 1;
}

.review-meta {
  display: block;
  margin: 0 8px 8px;
  color: #777;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stories__head {
  max-width: 780px;
}

.service-list div {
  line-height: 1.25;
}

.support-right>p {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(16,16,18,.06);
  border-radius: 26px;
  padding: 24px;
  margin: 28px;
}

.order-benefits div {
  box-shadow: 0 10px 28px rgba(16,16,18,.06);
}

.hero-order-card .btn,
.order-section .btn {
  letter-spacing: .04em;
}

.toast {
  max-width: calc(100% - 24px);
}

@media (max-width:1060px) {
  .risk-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .expert-shell {
    grid-template-columns: 1fr;
  }

  .expert-copy {
    padding: 0;
  }

  .expert-photo img {
    height: 360px;
  }

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

  .form-offer {
    display: flex;
  }
}

@media (max-width:760px) {
  .risk-grid {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: auto;
  }

  .expert-shell {
    padding: 20px;
    border-radius: 30px;
  }

  .expert-photo img {
    height: 280px;
    border-radius: 24px;
  }

  .expert-copy h2 {
    font-size: 42px;
  }

  .expert-copy blockquote {
    font-size: 25px;
  }

  .form-offer {
    display: grid;
    gap: 10px;
  }

  .price-stack {
    margin-left: 0;
    width: max-content;
  }

  .route__top {
    gap: 20px;
  }

  .support-right>p {
    padding: 18px;
  }

  .hero__copy h1 {
    font-size: 46px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }
}


/* Timeline and conversion fixes */
.timeline {
  padding-top: 54px;
}

.timeline-shell {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(216, 255, 243, .74));
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.timeline-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/botanical-bg.jpg') center/cover;
  opacity: .12;
  pointer-events: none;
}

.timeline-head,
.timeline-grid {
  position: relative;
  z-index: 2;
}

.timeline-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.timeline-head h2 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 12px 0 18px;
}

.timeline-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-card {
  min-height: 282px;
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(16, 16, 18, .07);
  box-shadow: 0 16px 38px rgba(21, 31, 29, .08);
}

.timeline-card--accent {
  background: linear-gradient(145deg, #fff6a5, #dffff6);
}

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #101012;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.timeline-card strong {
  display: block;
  margin: 22px 0 8px;
  color: #6a5a00;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.timeline-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.expert-profile {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  max-width: 520px;
  margin: 0 0 22px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 16, 18, .08);
}

.expert-profile strong {
  font-size: 16px;
  font-weight: 900;
}

.expert-profile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-stock {
  margin: 2px 0 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 240, 139, .4);
  border: 1px solid rgba(16, 16, 18, .08);
  color: #514800;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}

@media (max-width: 1060px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .timeline-shell {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .timeline-card {
    min-height: auto;
  }
}

@media (max-width:1060px) {
  .reveal.is-visible {
    margin-top: 0;
  }
}

.faq-list details[open] summary::after {
    content: "-";
}