@font-face {
  font-family: "Cormorant Garamond";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/cormorant-garamond-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
  src: url("assets/fonts/manrope-400-800-latin.woff2") format("woff2");
}

:root {
  --paper: #f7f0df;
  --paper-deep: #eadbb9;
  --cream: #fffaf0;
  --olive: #454616;
  --olive-dark: #292d10;
  --olive-soft: #6d6a2b;
  --gold: #c89535;
  --gold-light: #e6c16f;
  --brown: #5d4526;
  --ink: #29281e;
  --muted: #716b5d;
  --white: #fffdf7;
  --line: rgba(93, 69, 38, 0.17);
  --green: #3d7b36;
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 65px rgba(61, 49, 22, 0.17);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(101, 76, 30, 0.045) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 55%, rgba(101, 76, 30, 0.035) 0 1px, transparent 1px);
  background-size: 19px 19px, 27px 27px;
  content: "";
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

h1,
h2,
h3 {
  color: var(--olive-dark);
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.05;
}

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

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

picture {
  display: block;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
  position: relative;
  width: 100%;
}

.section {
  padding: 52px 0;
}

.receive,
.reading,
.testimonials,
.journey,
.audience,
.principles,
.offer,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.purchase-strip,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 180px;
}

.header {
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
}

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

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  gap: 11px;
  letter-spacing: -0.3px;
}

.brand em {
  color: var(--gold);
  font-style: normal;
}

.brand__mark {
  align-items: center;
  background: var(--olive);
  border-radius: 11px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand__mark svg {
  fill: none;
  height: 31px;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 31px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--body);
  font-weight: 800;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn--small {
  background: var(--olive);
  box-shadow: 0 8px 22px rgba(69, 70, 22, 0.18);
  color: var(--white);
  font-size: 13px;
  padding: 12px 20px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(200, 149, 53, 0.25);
  color: var(--olive-dark);
}

.btn--primary:hover {
  box-shadow: 0 18px 38px rgba(200, 149, 53, 0.35);
}

.hero {
  background:
    linear-gradient(112deg, rgba(32, 35, 12, 0.98), rgba(70, 70, 21, 0.95)),
    var(--olive-dark);
  color: var(--white);
  min-height: 600px;
  overflow: hidden;
  padding: 36px 0;
  position: relative;
}

.hero::after {
  border: 1px solid rgba(230, 193, 111, 0.21);
  border-radius: 38px;
  content: "";
  inset: 20px;
  pointer-events: none;
  position: absolute;
}

.hero__glow {
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  position: absolute;
}

.hero__glow--one {
  background: radial-gradient(circle, rgba(224, 168, 60, 0.22), transparent 70%);
  height: 650px;
  right: -140px;
  top: -180px;
  width: 650px;
}

.hero__glow--two {
  background: radial-gradient(circle, rgba(255, 247, 219, 0.08), transparent 68%);
  bottom: -320px;
  height: 700px;
  left: -250px;
  width: 700px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 1.12fr 0.7fr;
}

.hero__content {
  max-width: 685px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-light);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.1px;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--olive-soft);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(46px, 4.7vw, 68px);
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold-light);
  display: block;
}

.hero__lead {
  color: rgba(255, 253, 247, 0.82);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 650px;
}

.check-list {
  list-style: none;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 11px;
  margin-bottom: 10px;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.check-list--light {
  margin-bottom: 22px;
}

.check-list--light li {
  color: rgba(255, 253, 247, 0.9);
}

.check-list--light li::before {
  color: var(--gold-light);
}

.btn--hero {
  flex-direction: column;
  font-size: 15px;
  line-height: 1.2;
  padding: 15px 27px;
  text-transform: uppercase;
}

.btn small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 5px;
  opacity: 0.75;
}

.secure-note {
  color: rgba(255, 253, 247, 0.6);
  font-size: 11px;
  margin-top: 9px;
}

.hero__book {
  justify-self: center;
  max-width: 305px;
  position: relative;
  transform: perspective(1400px) rotateY(-5deg) rotateX(1deg);
  width: 100%;
  z-index: 3;
}

.hero__book::after {
  background: linear-gradient(90deg, rgba(34, 27, 12, 0.34), transparent 6%, transparent 93%, rgba(255, 255, 255, 0.2));
  border-radius: 7px 12px 12px 7px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__book img {
  border-radius: 7px 12px 12px 7px;
  box-shadow: 22px 30px 60px rgba(7, 8, 2, 0.42);
  position: relative;
  width: 100%;
  z-index: 2;
}

.book-halo {
  background: radial-gradient(circle, rgba(230, 193, 111, 0.35), transparent 68%);
  filter: blur(10px);
  inset: 3%;
  position: absolute;
  transform: scale(1.4);
}

.book-chip {
  background: var(--gold);
  border-radius: 999px;
  bottom: 16px;
  box-shadow: 0 9px 25px rgba(41, 45, 16, 0.3);
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  padding: 9px 15px;
  position: absolute;
  right: -22px;
  text-transform: uppercase;
  z-index: 5;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(39px, 4.2vw, 57px);
  letter-spacing: -1.2px;
  margin-bottom: 17px;
}

.section-heading p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 650px;
}

.receive {
  background: var(--cream);
}

.receive__grid {
  align-items: center;
  display: grid;
  gap: 82px;
  grid-template-columns: 0.92fr 1.08fr;
}

.product-scene {
  align-items: center;
  display: flex;
  height: 520px;
  justify-content: center;
  margin-left: 10px;
  max-width: 510px;
  position: relative;
}

.product-scene::after {
  background: rgba(73, 60, 27, 0.18);
  border-radius: 50%;
  bottom: 17px;
  content: "";
  filter: blur(17px);
  height: 33px;
  left: 12%;
  position: absolute;
  width: 76%;
  z-index: 0;
}

.product-scene__sun {
  background: radial-gradient(circle, rgba(223, 178, 85, 0.27), rgba(223, 178, 85, 0.03) 62%, transparent 70%);
  border-radius: 50%;
  height: 410px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 410px;
  z-index: 0;
}

.product-video {
  aspect-ratio: 4 / 5;
  background: #171813;
  border: 7px solid #171813;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
  max-height: 500px;
  object-fit: contain;
  overflow: hidden;
  position: relative;
  width: min(100%, 390px);
  z-index: 2;
}

.receive-list {
  list-style: none;
}

.receive-list li {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 17px;
  padding: 17px 0;
}

.receive-list__icon {
  align-items: center;
  background: rgba(61, 123, 54, 0.12);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  flex: 0 0 29px;
  font-size: 16px;
  font-weight: 900;
  height: 29px;
  justify-content: center;
  margin-top: 1px;
}

.receive-list strong {
  color: var(--olive-dark);
  display: block;
  font-family: var(--heading);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.receive-list p {
  color: var(--muted);
  font-size: 13px;
}

.testimonials {
  background: var(--white);
  padding-bottom: 42px;
  padding-top: 26px;
}

.testimonials .section-heading {
  margin-bottom: 26px;
}

.testimonials .section-heading h2 {
  font-size: clamp(35px, 3.6vw, 48px);
  margin-bottom: 8px;
}

.testimonials .section-heading p {
  font-size: 14px;
}

.testimonials__carousel {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 46px 27px;
  position: relative;
}

.testimonials__viewport {
  overflow: visible;
  scroll-behavior: smooth;
}

.testimonials__track {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.testimonial-slide {
  background: #fff;
  border: 1px solid rgba(69, 70, 22, 0.09);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(67, 54, 25, 0.1);
  margin: 0;
  overflow: hidden;
}

.testimonial-slide img {
  aspect-ratio: 4 / 3;
  background: #fff;
  object-fit: contain;
  width: 100%;
}

.testimonial-slide picture {
  background: #fff;
}

.carousel-button {
  align-items: center;
  background: var(--olive);
  border: 1px solid rgba(230, 193, 111, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  cursor: pointer;
  display: none;
  font-family: var(--heading);
  font-size: 31px;
  height: 43px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: calc(50% - 13px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
  width: 43px;
  z-index: 3;
}

.carousel-button:hover {
  background: var(--olive-dark);
  transform: translateY(-50%) scale(1.06);
}

.carousel-button--prev {
  left: 0;
}

.carousel-button--next {
  right: 0;
}

.carousel-dots {
  bottom: 0;
  display: none;
  gap: 8px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.carousel-dot {
  background: rgba(69, 70, 22, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 8px;
}

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

.reading {
  background:
    linear-gradient(rgba(247, 240, 223, 0.93), rgba(247, 240, 223, 0.93)),
    radial-gradient(circle at center, var(--gold-light), transparent 65%);
  padding-top: 42px;
}

.reading__compare {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 44px 1fr;
  margin: 0 auto;
  max-width: 1120px;
}

.reading-card {
  position: relative;
  text-align: center;
}

.reading-card__label {
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 8px 15px;
  position: relative;
  top: 15px;
  z-index: 4;
}

.reading-card--plain .reading-card__label {
  background: #8d7b61;
}

.reading-card--explained .reading-card__label {
  background: var(--olive);
}

.page-shot {
  align-items: center;
  background: #fffdf7;
  border: 1px solid rgba(80, 62, 28, 0.08);
  box-shadow: 0 16px 36px rgba(72, 59, 26, 0.1);
  display: flex;
  height: 700px;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 4px;
  position: relative;
}

.page-shot::before {
  display: none;
}

.page-shot__link {
  align-items: center;
  cursor: zoom-in;
  display: flex;
  height: 100%;
  justify-content: center;
  max-width: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-shot picture {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  max-width: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-shot img {
  box-shadow: 0 6px 16px rgba(41, 34, 16, 0.1);
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.page-shot__hint {
  align-items: center;
  background: rgba(41, 45, 16, 0.9);
  border: 1px solid rgba(230, 193, 111, 0.45);
  border-radius: 999px;
  bottom: 14px;
  color: var(--gold-light);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 6px;
  left: 50%;
  letter-spacing: 0.6px;
  opacity: 0;
  padding: 9px 13px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
  z-index: 4;
}

.page-shot__link:hover .page-shot__hint,
.page-shot__link:focus-visible .page-shot__hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-shot--explained {
  background: #fffaf0;
}

.image-zoom {
  background: rgba(18, 20, 7, 0.86);
  display: none;
  inset: 0;
  padding: 24px;
  position: fixed;
  z-index: 300;
}

.image-zoom.is-open {
  display: grid;
  grid-template-rows: auto 1fr;
}

.image-zoom__bar {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto 14px;
  max-width: 1180px;
  width: 100%;
}

.image-zoom__title {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.image-zoom__controls {
  display: flex;
  gap: 8px;
}

.image-zoom button {
  align-items: center;
  background: var(--gold-light);
  border: 0;
  border-radius: 999px;
  color: var(--olive-dark);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 14px;
}

.image-zoom__stage {
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(230, 193, 111, 0.2);
  border-radius: 18px;
  margin: 0 auto;
  max-width: 1180px;
  overflow: auto;
  padding: 18px;
  width: 100%;
}

.image-zoom__stage img {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: none;
  width: 1000px;
}

.reading-card__caption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 19px;
}

.reading-card--explained .reading-card__caption {
  color: var(--olive);
}

.reading__arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-size: 27px;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.section.journey {
  background: var(--cream);
}

.journey__grid {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: 0.78fr 1.22fr;
}

.journey__heading {
  position: sticky;
  top: 120px;
}

.journey__heading h2 {
  font-size: clamp(42px, 4.6vw, 59px);
  margin-bottom: 22px;
}

.journey__heading p {
  color: var(--muted);
  font-size: 14px;
}

.journey__steps {
  display: block;
}

.journey__steps article {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 26px;
  grid-template-columns: 65px 1fr;
  min-height: 0;
  padding: 28px 0;
}

.journey__steps article:first-child {
  padding-top: 0;
}

.journey__steps article > span {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 35px;
  font-weight: 700;
}

.journey__steps h3 {
  font-size: 29px;
  margin-bottom: 8px;
}

.journey__steps p {
  color: var(--muted);
  font-size: 14px;
}

.journey__cta {
  align-items: center;
  background: var(--olive);
  border-bottom: 1px solid rgba(230, 193, 111, 0.45);
  border-top: 1px solid rgba(230, 193, 111, 0.45);
  box-shadow: 0 18px 42px rgba(69, 70, 22, 0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  overflow: hidden;
  padding: 32px 24px;
  position: relative;
  text-align: center;
  width: 100%;
}

.journey__cta::after {
  background: radial-gradient(circle, rgba(230, 193, 111, 0.2), transparent 68%);
  content: "";
  height: 250px;
  pointer-events: none;
  position: absolute;
  right: 80px;
  top: -110px;
  width: 250px;
}

.journey__cta > * {
  position: relative;
  z-index: 2;
}

.journey__cta span {
  color: var(--gold-light);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.journey__cta h3 {
  color: var(--white);
  font-size: 27px;
}

.journey__cta .btn {
  flex: 0 0 auto;
  font-size: 12px;
  padding: 15px 23px;
  text-transform: uppercase;
}

.purchase-strip {
  margin: 0;
  padding: 0;
}

.audience {
  background: var(--paper);
}

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

.info-card {
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 260px;
  padding: 39px 34px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  box-shadow: 0 18px 42px rgba(72, 59, 26, 0.09);
  transform: translateY(-4px);
}

.info-card__icon {
  align-items: center;
  background: var(--olive);
  border-radius: 50%;
  color: var(--gold-light);
  display: flex;
  font-size: 23px;
  height: 49px;
  justify-content: center;
  margin-bottom: 25px;
  width: 49px;
}

.info-card h3 {
  font-size: 28px;
  margin-bottom: 13px;
}

.info-card p {
  color: var(--muted);
  font-size: 13px;
}

.principles {
  background: var(--white);
  color: var(--ink);
  position: relative;
}

.principles::before {
  display: none;
}

.principles .section-heading--light h2 {
  color: var(--olive-dark);
}

.principles .section-heading--light .eyebrow {
  color: var(--olive-soft);
}

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

.principles__grid article {
  background:
    linear-gradient(135deg, rgba(41, 45, 16, 0.98), rgba(69, 70, 22, 0.96)),
    var(--olive);
  border: 1px solid rgba(230, 193, 111, 0.42);
  border-radius: 14px;
  min-height: 210px;
  padding: 27px 25px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.principles__grid article:hover {
  background:
    linear-gradient(135deg, rgba(50, 54, 18, 0.98), rgba(79, 79, 25, 0.96)),
    var(--olive);
  border-color: rgba(230, 193, 111, 0.55);
  transform: translateY(-4px);
}

.principles__grid span {
  color: var(--gold-light);
  font-family: var(--heading);
  font-size: 21px;
}

.principles__emoji {
  font-size: 30px;
  line-height: 1;
  margin-top: 14px;
}

.principles__grid h3 {
  color: var(--white);
  font-size: 29px;
  margin: 12px 0;
}

.principles__grid p {
  color: rgba(255, 253, 247, 0.68);
  font-size: 13px;
}

.offer {
  background:
    linear-gradient(110deg, rgba(38, 41, 14, 0.99), rgba(69, 70, 22, 0.97)),
    var(--olive-dark);
}

.offer .section-heading h2 {
  color: var(--white);
}

.offer .section-heading p {
  color: rgba(255, 253, 247, 0.72);
}

.offer .eyebrow--dark {
  color: var(--gold-light);
}

.offer-card {
  align-items: center;
  background: #fffdf8;
  border: 1px solid rgba(200, 149, 53, 0.48);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.74fr 1.26fr;
  margin: 0 auto;
  max-width: 950px;
  overflow: hidden;
  padding: 50px 66px;
  position: relative;
}

.offer-card::before {
  background: radial-gradient(circle, rgba(230, 193, 111, 0.24), transparent 70%);
  content: "";
  height: 450px;
  left: -150px;
  position: absolute;
  top: -60px;
  width: 450px;
}

.offer-card__book {
  position: relative;
  transform: perspective(1000px) rotateY(7deg);
  z-index: 2;
}

.offer-card__book img {
  border-radius: 5px 10px 10px 5px;
  box-shadow: 18px 22px 45px rgba(58, 44, 15, 0.25);
}

.offer-card__content {
  position: relative;
  z-index: 2;
}

.offer-card__badge {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.offer-card h3 {
  font-size: 43px;
  margin: 12px 0 16px;
}

.offer-card .check-list {
  margin-bottom: 22px;
}

.offer-price {
  margin: -2px 0 24px;
  text-align: center;
}

.offer-price span,
.offer-price small {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.offer-price span {
  margin-bottom: 4px;
}

.offer-price strong {
  color: #36a56a;
  display: block;
  font-family: var(--body);
  font-size: clamp(52px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.offer-price small {
  margin-top: 2px;
}

.btn--wide {
  flex-direction: column;
  padding: 17px 25px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.purchase-assurance {
  align-items: center;
  color: #2f9a65;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.purchase-assurance svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.purchase-assurance strong {
  font-size: 14px;
  font-weight: 800;
}

.guarantee-box {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(247, 240, 223, 0.92)),
    var(--cream);
  border: 1px solid rgba(200, 149, 53, 0.34);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.82), 0 14px 26px rgba(61, 49, 22, 0.08);
  margin-top: 18px;
  overflow: hidden;
  padding: 20px 22px;
  position: relative;
}

.guarantee-box::before {
  background: linear-gradient(90deg, rgba(200, 149, 53, 0.55), rgba(200, 149, 53, 0));
  content: "";
  height: 2px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.guarantee-box span {
  color: var(--olive);
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.guarantee-box h4 {
  color: var(--olive-dark);
  font-family: var(--heading);
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.guarantee-box p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.offer-card__note {
  color: var(--muted);
  font-size: 10px;
  margin-top: 11px;
  text-align: center;
}

.faq {
  background: var(--paper);
}

.faq-list {
  margin: 0 auto;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  align-items: center;
  background: none;
  border: 0;
  color: var(--olive-dark);
  cursor: pointer;
  display: flex;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  justify-content: space-between;
  padding: 24px 3px;
  text-align: left;
  width: 100%;
}

.faq-question span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  flex: 0 0 34px;
  font-family: var(--body);
  font-size: 21px;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  transition: transform 220ms ease;
}

.faq-answer {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease, padding 260ms ease;
}

.faq-answer p {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 55px 24px 3px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.footer {
  background: #21240c;
  color: rgba(255, 253, 247, 0.6);
  padding: 60px 0 35px;
  text-align: center;
}

.footer__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.brand--footer {
  color: var(--white);
  margin-bottom: 18px;
}

.footer p {
  font-family: var(--heading);
  font-size: 20px;
  margin-bottom: 30px;
}

.footer__email {
  color: var(--white);
  font-size: 14px;
  margin-top: -12px;
  margin-bottom: 30px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer small {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  padding-top: 25px;
  width: 100%;
}

@media (max-width: 980px) {
  .hero__grid {
    gap: 45px;
    grid-template-columns: 1fr 0.58fr;
  }

  .hero h1 {
    font-size: 56px;
  }

  .receive__grid {
    gap: 35px;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .product-scene {
    transform: scale(0.86);
    transform-origin: center;
  }

  .journey__grid {
    gap: 55px;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 42px 0;
  }

  body::before {
    display: none;
  }

  .header {
    backdrop-filter: none;
    background: rgba(255, 250, 240, 0.98);
  }

  .nav {
    height: 68px;
  }

  .nav__actions {
    gap: 0;
  }

  .brand {
    font-size: 19px;
  }

  .brand__mark {
    height: 37px;
    width: 37px;
  }

  .btn--small {
    display: none;
  }

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

  .hero::after {
    inset: 13px;
  }

  .hero__grid,
  .receive__grid,
  .journey__grid,
  .offer-card {
    grid-template-columns: 1fr;
  }

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

  .receive__grid > * {
    min-width: 0;
  }

  .hero__grid {
    gap: 50px;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 60px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .check-list--light {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero__book {
    max-width: 270px;
    order: -1;
    transform: none;
  }

  .secure-note {
    margin-left: auto;
    margin-right: auto;
  }

  .product-scene {
    height: 465px;
    justify-self: center;
    margin: -30px auto 0;
    transform: scale(0.82);
    width: 470px;
  }

  .receive__grid {
    gap: 5px;
  }

  .testimonials__carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .page-shot__hint {
    display: none;
  }

  .page-shot__link {
    cursor: default;
  }

  .testimonials__viewport {
    overflow: hidden;
  }

  .testimonials__track {
    display: flex;
    width: max-content;
  }

  .testimonial-slide {
    flex: 0 0 72vw;
  }

  .carousel-button {
    display: flex;
  }

  .carousel-dots {
    display: flex;
  }

  .reading__compare {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .reading__arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .journey__heading {
    position: static;
  }

  .journey__steps {
    display: block;
  }

  .journey__cta {
    align-items: center;
  }

  .cards-grid,
  .principles__grid {
    grid-template-columns: 1fr;
  }

  .principles__grid {
    gap: 25px;
  }

  .offer-card {
    gap: 43px;
    max-width: 600px;
    padding: 45px;
  }

  .offer-card__book {
    justify-self: center;
    max-width: 240px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero__book {
    max-width: 220px;
  }

  .btn--hero {
    padding-left: 18px;
    padding-right: 18px;
    width: 100%;
  }

  .product-scene {
    height: 400px;
    margin: -47px 0 -20px;
    transform: scale(0.68);
    transform-origin: center;
    width: 470px;
  }

  .receive-list strong {
    font-size: 20px;
  }

  .testimonials__carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-slide {
    flex-basis: 78vw;
  }

  .carousel-button {
    height: 37px;
    top: auto;
    width: 37px;
  }

  .carousel-button--prev {
    bottom: -4px;
    left: 20px;
  }

  .carousel-button--next {
    bottom: -4px;
    right: 20px;
  }

  .page-shot {
    height: 560px;
    padding: 5px;
  }

  .journey__steps article {
    gap: 15px;
    grid-template-columns: 45px 1fr;
  }

  .journey__steps article > span {
    font-size: 28px;
  }

  .journey__steps h3 {
    font-size: 25px;
  }

  .journey__cta {
    padding: 25px 22px;
  }

  .journey__cta h3 {
    font-size: 24px;
  }

  .journey__cta .btn {
    width: 100%;
  }

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

  .principles::before {
    inset: 13px;
  }

  .offer-card {
    padding: 35px 25px;
  }

  .offer-card__book {
    max-width: 190px;
  }

  .offer-card h3 {
    font-size: 36px;
  }

  .faq-question {
    font-size: 21px;
    gap: 18px;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 17px;
    gap: 8px;
  }

  .brand__mark {
    height: 34px;
    width: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
