:root {
  --jade-950: #063c39;
  --jade-900: #07514c;
  --jade-800: #075e58;
  --jade-700: #08746b;
  --jade-100: #dceee8;
  --jade-50: #eff8f4;
  --cream: #fbf7ef;
  --cream-deep: #f1e6d2;
  --paper: #fffefa;
  --ink: #15312d;
  --muted: #536863;
  --orange: #dd7d25;
  --orange-dark: #ba5c11;
  --gold: #e4a23d;
  --line: rgba(7, 94, 88, 0.16);
  --shadow: 0 24px 70px rgba(6, 60, 57, 0.13);
  --shadow-soft: 0 14px 36px rgba(6, 60, 57, 0.09);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: white;
  background: var(--jade-700);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--jade-950);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--jade-800);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 78px 0;
  overflow: hidden;
  background: linear-gradient(110deg, #f6f8ed 0%, #fbfcf5 44%, #e5efd7 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 252, 245, 0.96) 0%, rgba(251, 252, 245, 0.86) 48%, rgba(251, 252, 245, 0.16) 100%),
    url("/assets/template.jpg") center right / min(56vw, 780px) auto no-repeat;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -290px;
  top: 160px;
  border: 1px solid rgba(7, 94, 88, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--jade-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.55rem, 4.55vw, 4.55rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 600;
}

h2 em,
h3 em {
  color: var(--jade-700);
  font-weight: inherit;
}

.hero-lead {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: #294943;
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.hero-lead em {
  color: var(--jade-800);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
}

.hero-description {
  max-width: 625px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.authority-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 630px;
  margin-top: 1.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
}

.authority-note p {
  margin: 0;
  color: #36554f;
  font-size: 0.94rem;
  line-height: 1.45;
}

.authority-seal {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.hero-purchase {
  display: grid;
  grid-template-columns: auto minmax(270px, 1fr);
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-price {
  min-width: 154px;
  padding: 0.7rem 1rem;
  color: var(--jade-950);
  background: rgba(225, 239, 231, 0.78);
  border: 1px solid rgba(7, 94, 88, 0.15);
  border-radius: 1rem;
  line-height: 1.14;
}

.hero-price span,
.hero-price small {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
}

.hero-price strong {
  display: block;
  margin: 0.2rem 0;
  font-family: "Lora", Georgia, serif;
  font-size: 1.72rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 60px;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 0.95rem;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(186, 92, 17, 0.2);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(186, 92, 17, 0.28);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange) 0%, #cd6919 100%);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ec8b30 0%, var(--orange-dark) 100%);
}

.button-arrow {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1.05rem;
  transition: transform 220ms ease;
}

.button:hover .button-arrow {
  transform: translateX(3px);
}

.payment-copy {
  margin: 0.65rem 0 0;
  color: #506b65;
  font-size: 0.9rem;
  text-align: right;
}

.medical-note {
  margin: 0.9rem 0 0;
  color: #71817e;
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.45;
}

.product-stage {
  position: relative;
  isolation: isolate;
  padding: clamp(1rem, 2vw, 1.6rem);
  background: transparent;
  border: 0;
  border-radius: 50% 50% 2rem 2rem / 16% 16% 2rem 2rem;
}

.product-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 64%;
  aspect-ratio: 1;
  top: -9%;
  right: -10%;
  background: rgba(7, 116, 107, 0.16);
  border-radius: 50%;
}

.product-stage img {
  width: 100%;
  min-height: 430px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.7rem 1rem;
  color: var(--jade-950);
  background: rgba(255, 254, 250, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.product-caption span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: white;
  background: var(--jade-700);
  border-radius: 50%;
}

.section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 1.25rem;
}

.section-intro p {
  max-width: 690px;
  margin: 0.45rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-demo {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 2rem;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.step-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -60px;
  bottom: -60px;
  border: 1px solid rgba(7, 94, 88, 0.13);
  border-radius: 50%;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: white;
  background: var(--jade-800);
  border-radius: 1rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card:nth-child(2) .step-number {
  background: var(--orange);
}

.step-card h3 {
  margin: 1.3rem 0 0.65rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.simple-promise {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 790px;
  margin: 2.5rem auto;
  padding: 1.3rem 1.5rem;
  color: var(--jade-950);
  background: var(--jade-50);
  border-left: 4px solid var(--jade-700);
  border-radius: 0 1rem 1rem 0;
}

.simple-promise > span {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--jade-700);
  border-radius: 50%;
}

.simple-promise strong {
  font-size: 1.08rem;
}

.simple-promise p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.flipbook-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  overflow: hidden;
  border: 1px dashed rgba(7, 94, 88, 0.38);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(246, 249, 239, 0.88), rgba(246, 249, 239, 0.88)),
    url("/assets/template.jpg") center 35% / cover no-repeat;
}

.flipbook-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.42rem 0.7rem;
  color: white;
  background: var(--jade-800);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.flipbook-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 460px;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 254, 250, 0.92);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.flipbook-symbol {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.25rem;
}

.flipbook-copy strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1.2rem;
}

.flipbook-copy p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.centered-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.section-benefits {
  color: white;
  background:
    radial-gradient(circle at 80% 16%, rgba(70, 180, 159, 0.18), transparent 28%),
    linear-gradient(145deg, var(--jade-950) 0%, var(--jade-800) 100%);
}

.section-benefits::before {
  content: "氣";
  position: absolute;
  top: 2rem;
  right: 5%;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, serif;
  font-size: clamp(12rem, 24vw, 24rem);
  line-height: 1;
}

.benefits-heading {
  position: relative;
  max-width: 820px;
  margin-bottom: 3rem;
}

.benefits-heading h2 {
  margin-bottom: 1.2rem;
}

.benefits-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.eyebrow-light {
  color: #8ad8c9;
}

.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-card {
  position: relative;
  min-height: 230px;
  padding: 2rem 2rem 2rem 6.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(6px);
  transition: transform 300ms ease, background-color 300ms ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.benefit-index {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #95dacc;
  font-family: "Lora", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.benefit-card h3 {
  max-width: 380px;
  margin: 0 0 0.75rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.benefits-footer {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
}

.benefits-footer p {
  flex: 1 1 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.benefits-footer p strong {
  color: white;
}

.button-light {
  flex: 0 0 350px;
  color: var(--jade-950);
  background: white;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.button-light .button-arrow {
  color: white;
  background: var(--jade-700);
}

.section-stories {
  overflow: hidden;
  background: #f5f7f0;
}

.section-stories::before,
.section-stories::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(7, 94, 88, 0.12);
  border-radius: 50%;
}

.section-stories::before {
  top: 100px;
  left: -170px;
}

.section-stories::after {
  right: -160px;
  bottom: 50px;
}

.stories-intro {
  max-width: 850px;
}

.carousel {
  max-width: 930px;
  margin: 0 auto;
  user-select: none;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0.4rem;
}

.testimonial-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 4rem 2.5rem 2.5rem;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 0.4rem);
  box-shadow: var(--shadow);
}

.testimonial-card-dark {
  background: #212529;
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  padding: 0.45rem 0.7rem;
  color: var(--jade-800);
  background: var(--jade-50);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonial-card-dark .testimonial-tag {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-card img {
  width: min(100%, 700px);
  max-height: 300px;
  object-fit: contain;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem auto 0;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  background: var(--jade-800);
  border: 0;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.carousel-arrow:hover {
  background: var(--jade-950);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 94, 88, 0.24);
  cursor: pointer;
  transition: width 250ms ease, background-color 250ms ease;
}

.carousel-dot.is-active {
  width: 32px;
  background: var(--orange);
}

.swipe-hint {
  display: none;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.section-author {
  overflow: hidden;
  background: var(--cream);
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.author-visual {
  position: relative;
}

.author-arch {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    linear-gradient(rgba(223, 238, 223, 0.78), rgba(223, 238, 223, 0.88)),
    url("/assets/template.jpg") center top / cover no-repeat;
  border-radius: 48% 48% 1.7rem 1.7rem / 25% 25% 1.7rem 1.7rem;
  box-shadow: var(--shadow);
}

.author-arch img {
  position: absolute;
  z-index: 1;
  inset: auto 50% 0 auto;
  width: min(98%, 500px);
  max-height: 590px;
  object-fit: contain;
  object-position: bottom;
  transform: translateX(50%);
}

.author-character {
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  color: rgba(7, 94, 88, 0.08);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.author-badge {
  position: absolute;
  z-index: 2;
  right: -1.4rem;
  bottom: 2.2rem;
  display: grid;
  width: 150px;
  padding: 1rem;
  color: white;
  background: var(--orange);
  border: 5px solid var(--cream);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.author-badge strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
}

.author-badge span {
  font-size: 0.75rem;
  line-height: 1.35;
}

.author-copy > p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.author-copy h2 {
  margin-bottom: 1.5rem;
}

.author-copy h3 {
  margin: 1.4rem 0 0;
  color: var(--jade-800);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.author-copy blockquote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.35rem 1.5rem 1.35rem 4rem;
  color: white;
  background: var(--jade-800);
  border-radius: 1rem;
}

.author-copy blockquote::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  color: #8ad8c9;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.author-copy blockquote p {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
}

.author-copy blockquote cite {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-style: normal;
}

.section-offer {
  overflow: hidden;
  color: white;
  background: #063f3c;
}

.offer-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.offer-decoration-one {
  width: 520px;
  height: 520px;
  top: -300px;
  left: -180px;
}

.offer-decoration-two {
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -180px;
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.offer-content h2 {
  max-width: 690px;
}

.offer-content > p:not(.eyebrow) {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding: 0.8rem 0.75rem 0.8rem 2.35rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.8rem;
  line-height: 1.45;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.price-card {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.price-kicker {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  color: var(--jade-800);
  background: var(--jade-50);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.old-price {
  margin: 1.3rem 0 0;
  color: #7a8d88;
  font-size: 1rem;
  text-decoration: line-through;
}

.price-label {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.current-price {
  color: var(--jade-800);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(4.2rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.current-price small {
  font-size: 1.4rem;
  letter-spacing: 0;
}

.shipping {
  margin: 0.6rem 0 1.2rem;
  color: var(--muted);
  font-weight: 700;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1.3rem;
}

.payment-methods span {
  padding: 0.42rem 0.65rem;
  color: #4c6560;
  background: #f0f4ef;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.button-full {
  width: 100%;
}

.email-note {
  margin: 0.85rem 0 0;
  color: #758681;
  font-size: 0.76rem;
  line-height: 1.45;
}

.section-faq {
  background: #eef0df;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading h2 {
  margin-bottom: 1rem;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid rgba(7, 94, 88, 0.13);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(6, 60, 57, 0.045);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 1rem 1.15rem;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  color: white;
  background: var(--jade-800);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 280ms ease, background-color 280ms ease;
}

.faq-list details[open] summary span {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.closing-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246, 250, 240, 0.76), rgba(246, 250, 240, 0.9)),
    url("/assets/template.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.closing-content {
  position: relative;
  max-width: 800px;
}

.closing-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  color: white;
  background: var(--jade-800);
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.closing-content .eyebrow {
  display: flex;
  justify-content: center;
}

.closing-content > p:not(.eyebrow):not(.closing-price) {
  max-width: 700px;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.closing-price {
  margin: 1.5rem 0;
  color: var(--jade-950);
  font-size: 1.1rem;
}

.closing-price strong {
  color: var(--jade-800);
  font-family: "Lora", Georgia, serif;
  font-size: 1.55rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-delay-sm {
  transition-delay: 100ms;
}

.reveal-delay {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 2rem;
  }

  .hero-purchase {
    grid-template-columns: 1fr;
  }

  .hero-price {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
  }

  .hero-price strong {
    display: inline;
  }

  .payment-copy {
    text-align: left;
  }

  .benefits-footer {
    flex-wrap: wrap;
  }

  .button-light {
    flex-basis: 100%;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 16px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-backdrop {
    background:
      linear-gradient(rgba(248, 250, 242, 0.9), rgba(248, 250, 242, 0.97)),
      url("/assets/template.jpg") center top / cover no-repeat;
  }

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

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
    order: -1;
  }

  .product-stage img {
    min-height: 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .closing-content .eyebrow {
    justify-content: center;
  }

  .hero-lead,
  .hero-description {
    margin-inline: auto;
  }

  .authority-note {
    margin-inline: auto;
    text-align: left;
  }

  .payment-copy,
  .medical-note {
    text-align: center;
  }

  .steps-grid,
  .benefits-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .benefits-heading {
    text-align: center;
  }

  .benefits-heading .eyebrow {
    justify-content: center;
  }

  .benefit-card {
    min-height: 0;
  }

  .author-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .author-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .author-copy {
    max-width: 700px;
    margin: 0 auto;
  }

  .offer-grid {
    max-width: 700px;
  }

  .offer-content {
    text-align: center;
  }

  .offer-content .eyebrow {
    justify-content: center;
  }

  .offer-list {
    text-align: left;
  }

  .price-card {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }

  .faq-heading .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .top-strip {
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    width: 100%;
  }

  .product-stage {
    padding: 0.65rem 0.65rem 1.6rem;
    border-radius: 1.5rem;
  }

  .product-caption {
    bottom: 0.45rem;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.6rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-purchase {
    width: 100%;
  }

  .hero-price {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .button {
    width: 100%;
    min-height: 62px;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-intro {
    margin-bottom: 2.2rem;
  }

  .section-intro p {
    font-size: 1rem;
  }

  .step-card {
    padding: 1.4rem;
  }

  .simple-promise {
    padding: 1.1rem;
  }

  .simple-promise > span {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .flipbook-slot {
    min-height: 280px;
    padding: 1.2rem;
    border-radius: 1.3rem;
  }

  .flipbook-copy {
    align-items: flex-start;
    padding: 1.1rem;
  }

  .flipbook-symbol {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .benefit-card {
    padding: 4.4rem 1.35rem 1.4rem;
  }

  .benefit-index {
    top: 1.25rem;
    left: 1.35rem;
  }

  .benefits-footer {
    padding: 1.2rem;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 3.8rem 1rem 1.3rem;
    border-radius: 1.2rem;
  }

  .testimonial-card img {
    max-height: 230px;
  }

  .testimonial-tag {
    top: 1.4rem;
    left: 1.25rem;
    font-size: 0.62rem;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .swipe-hint {
    display: block;
  }

  .author-arch {
    min-height: 520px;
  }

  .author-arch img {
    max-height: 510px;
  }

  .author-badge {
    right: -0.3rem;
    bottom: 1rem;
    width: 132px;
  }

  .author-copy blockquote {
    padding-left: 3.6rem;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 1.5rem 1rem;
    border-radius: 1.35rem;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 1rem;
  }

  .closing {
    min-height: 570px;
    padding: 4.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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