:root {
  color-scheme: dark;
  --bg: oklch(0.095 0.010 42);
  --bg-soft: oklch(0.150 0.018 44);
  --surface: oklch(0.185 0.022 44);
  --surface-2: oklch(0.250 0.038 44);
  --ink: oklch(0.975 0 0);
  --muted: oklch(0.790 0.028 58);
  --primary: oklch(0.710 0.165 55);
  --primary-ink: oklch(0.145 0.018 42);
  --offer-yellow: oklch(0.905 0.190 96);
  --offer-border: oklch(0.720 0.170 62);
  --offer-surface: oklch(0.075 0.010 48);
  --offer-muted: oklch(0.735 0.012 58);
  --green: oklch(0.640 0.135 154);
  --green-deep: oklch(0.350 0.090 154);
  --tomato: oklch(0.650 0.165 28);
  --paper: oklch(0.980 0.006 78);
  --paper-ink: oklch(0.150 0.010 42);
  --line: oklch(1 0 0 / 0.14);
  --line-dark: oklch(0.210 0.020 42 / 0.22);
  --radius: 8px;
  --max: 1160px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    linear-gradient(150deg, oklch(0.130 0.026 154 / 0.58), transparent 30rem),
    linear-gradient(200deg, oklch(0.250 0.060 42 / 0.58), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, oklch(0.115 0.012 42) 46%, var(--bg) 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  line-height: 1.7;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 8.5vw, 5.85rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 5.2vw, 4.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
}

.top-ribbon {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 48px);
  padding: 10px 16px;
  background: var(--green-deep);
  color: white;
  font-size: 0.9rem;
  font-weight: 850;
}

.top-ribbon span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-cta {
  border: 1px solid var(--line);
  background: oklch(0.100 0.006 42 / 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 7px;
  border-radius: 999px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 780;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="true"] {
  background: oklch(1 0 0 / 0.08);
  color: var(--ink);
}

.header-cta {
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  color: oklch(0.075 0.012 48);
  background: var(--offer-yellow);
  box-shadow: 0 8px 16px oklch(0.900 0.190 96 / 0.18);
}

.hero {
  position: relative;
  min-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) max(20px, calc((100vw - var(--max)) / 2)) clamp(56px, 8vw, 92px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  display: grid;
  align-self: start;
  place-items: center;
  margin-top: clamp(42px, 3vw, 54px);
  min-width: 0;
}

.hero-product-shot {
  position: relative;
  width: min(100%, 820px);
  min-width: 0;
  aspect-ratio: 1024 / 572;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, var(--bg) 0%, oklch(0.095 0.010 42 / 0.70) 26%, transparent 58%),
    radial-gradient(circle at 70% 18%, oklch(0.780 0.090 72 / 0.28), transparent 24%),
    linear-gradient(180deg, oklch(0.250 0.030 54), oklch(0.120 0.018 42) 56%, oklch(0.300 0.055 52) 57%, oklch(0.210 0.034 50));
  box-shadow: 0 42px 90px oklch(0 0 0 / 0.38);
}

.hero-product-shot::before {
  display: none;
}

.hero-product-shot > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-digital-pack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 23%;
  background:
    linear-gradient(180deg, oklch(0.460 0.070 58), oklch(0.280 0.046 50)),
    oklch(0.350 0.050 52);
  box-shadow: inset 0 16px 28px oklch(0 0 0 / 0.22);
}

.hero-pack-badge {
  position: absolute;
  top: 7%;
  right: 5%;
  z-index: 3;
  width: min(25%, 194px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, oklch(0.520 0.155 15), oklch(0.330 0.118 13) 70%);
  color: oklch(0.960 0.045 83);
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 6px oklch(0.680 0.090 43 / 0.32),
    inset 0 0 0 10px oklch(0.940 0.036 82 / 0.14),
    0 18px 36px oklch(0 0 0 / 0.32);
}

.hero-pack-badge span,
.hero-pack-badge small {
  font-size: clamp(0.56rem, 1.05vw, 0.82rem);
  font-weight: 950;
  line-height: 1.05;
}

.hero-pack-badge strong,
.hero-pack-badge em {
  display: block;
  font-size: clamp(1.2rem, 2.35vw, 2.15rem);
  font-style: normal;
  font-weight: 950;
  line-height: 0.9;
}

.hero-pack-badge em {
  font-size: clamp(1.65rem, 3.8vw, 3.15rem);
}

.hero-mini-books {
  position: absolute;
  left: 8%;
  right: 20%;
  bottom: 9%;
  z-index: 1;
  height: 70%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0;
}

.hero-mini-book {
  --mini-accent: oklch(0.360 0.080 34);
  width: 15%;
  max-width: 126px;
  min-width: 72px;
  aspect-ratio: 0.62;
  margin-left: -2.5%;
  padding: 10px 8px 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid oklch(0.780 0.026 76);
  border-left: 10px solid var(--mini-accent);
  border-radius: 6px 9px 9px 6px;
  background: oklch(0.965 0.014 82);
  color: oklch(0.210 0.020 42);
  box-shadow:
    inset 5px 0 10px oklch(0 0 0 / 0.07),
    0 18px 28px oklch(0 0 0 / 0.26);
}

.hero-mini-book:first-child {
  margin-left: 0;
}

.hero-mini-book span,
.hero-mini-book em {
  color: oklch(0.400 0.026 62);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-mini-book strong {
  min-height: 2.65em;
  display: grid;
  place-items: center;
  color: oklch(0.210 0.020 42);
  font-size: clamp(0.72rem, 1.15vw, 1rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-mini-book img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
  border: 1px solid oklch(0.650 0.030 72);
}

.hero-mini-book-tiny {
  transform: translateY(10%) rotate(-5deg);
}

.hero-mini-book-small {
  transform: translateY(4%) rotate(-2deg);
}

.hero-mini-book-main {
  z-index: 2;
  width: 21%;
  max-width: 168px;
  min-width: 100px;
  padding: 12px 10px 10px 17px;
  transform: translateY(-7%);
}

.hero-mini-book-main strong {
  min-height: 2.15em;
  font-size: clamp(0.9rem, 1.55vw, 1.35rem);
}

.hero-mini-book-main em {
  font-size: clamp(0.72rem, 1.2vw, 0.98rem);
  color: oklch(0.210 0.020 42);
}

.hero-mini-book-amber {
  --mini-accent: oklch(0.470 0.085 60);
}

.hero-mini-book-green {
  --mini-accent: oklch(0.420 0.070 146);
}

.hero-mini-book-copper {
  --mini-accent: oklch(0.480 0.080 40);
  transform: translateY(0) rotate(2deg);
}

.hero-mini-book-blue {
  --mini-accent: oklch(0.380 0.075 245);
  transform: translateY(5%) rotate(3deg);
}

.hero-mini-book-rose {
  --mini-accent: oklch(0.410 0.090 12);
  transform: translateY(9%) rotate(5deg);
}

.hero-mini-book-forest {
  --mini-accent: oklch(0.340 0.070 154);
  transform: translateY(7%) rotate(5deg);
}

.hero-bonus-strip {
  position: absolute;
  left: 19%;
  right: 31%;
  bottom: 4%;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-bonus-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: oklch(0.940 0.035 82);
  color: oklch(0.180 0.015 42);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 20px oklch(0 0 0 / 0.18);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.3vw, 5.15rem);
}

.signal,
.section-label {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.hero-lede {
  max-width: 60ch;
  margin: 28px 0 0;
  color: oklch(0.920 0.010 58);
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
}

.hero-offer {
  display: grid;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: clamp(24px, 4vw, 46px) clamp(26px, 5vw, 50px);
  border: 3px solid var(--offer-border);
  border-radius: 24px;
  background: var(--offer-surface);
}

.hero-offer span,
.hero-offer small {
  color: var(--offer-muted);
  font-weight: 820;
}

.hero-offer strong {
  color: var(--offer-yellow);
  font-size: clamp(3.4rem, 9vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.hero-offer small {
  max-width: 36ch;
  color: var(--ink);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.primary {
  background: var(--offer-yellow);
  color: oklch(0.075 0.012 48);
  box-shadow: 0 8px 16px oklch(0.900 0.190 96 / 0.18);
}

.secondary {
  border-color: var(--line);
  background: oklch(1 0 0 / 0.075);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.trust-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.08);
  color: oklch(0.910 0.010 58);
  font-size: 0.94rem;
  font-weight: 800;
}

.section-inner,
.library,
.reviews,
.faq {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.problem-section,
.story-section,
.fit-section,
.library,
.bonus-section,
.reviews,
.faq,
.final-cta {
  padding: clamp(72px, 10vw, 128px) 0;
}

.problem-layout,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 0;
  border-block: 1px solid var(--line);
}

.problem-list p {
  position: relative;
  margin: 0;
  padding: 22px 0 22px 38px;
  border-top: 1px solid var(--line);
  color: oklch(0.910 0.012 58);
  font-weight: 820;
}

.problem-list p:first-child {
  border-top: 0;
}

.problem-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tomato);
}

.section-heading {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading p:not(.section-label) {
  max-width: 64ch;
  margin: 0;
}

.align-left {
  justify-items: start;
  text-align: left;
}

.bonus-grid span {
  color: var(--primary);
  font-weight: 950;
}

.story-section,
.bonus-section {
  background: var(--paper);
  color: var(--paper-ink);
}

.story-section p,
.story-section .section-label,
.bonus-section p,
.bonus-section .section-label {
  color: oklch(0.360 0.028 58);
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: white;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, oklch(0.100 0.010 42 / 0.88) 100%);
  pointer-events: none;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 34%;
}

.story-card-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
}

.story-card-caption span {
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.story-card-caption strong {
  max-width: 22ch;
  font-size: 1.1rem;
}

.editable-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: oklch(0.900 0.035 78);
  color: oklch(0.280 0.030 42) !important;
  font-size: 0.96rem;
  font-weight: 820;
}

.fit-section {
  background: oklch(0.118 0.012 42);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.fit-card-muted {
  background: oklch(0.145 0.016 42);
}

.fit-card h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.fit-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 30px;
  color: oklch(0.900 0.012 58);
  line-height: 1.55;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.fit-card-muted li::before {
  background: var(--tomato);
}

.book-bonus-list {
  display: grid;
  gap: 22px;
}

.book-bonus-card {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(22px, 4vw, 38px);
  border: 4px dashed oklch(0.220 0.012 42);
  border-radius: 26px;
  background: var(--paper);
  color: var(--paper-ink);
}

.book-bonus-card h3 {
  color: oklch(0.260 0.070 285);
  font-size: clamp(1.75rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
}

.book-bonus-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.book-real-image {
  width: min(100%, 315px);
  aspect-ratio: 572 / 1024;
  justify-self: center;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: white;
  box-shadow: 0 22px 36px oklch(0 0 0 / 0.24);
}

.book-cover {
  --cover-accent: oklch(0.360 0.080 34);
  --cover-ink: oklch(0.210 0.020 42);
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 0.64;
  justify-self: center;
  isolation: isolate;
  filter: drop-shadow(0 24px 18px oklch(0 0 0 / 0.22));
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 4% 5% 4% auto;
  width: 20%;
  z-index: -1;
  border-radius: 0 10px 10px 0;
  background: oklch(0.170 0.020 42 / 0.26);
  transform: skewY(-2deg);
}

.book-cover-spine {
  position: absolute;
  inset: 4% auto 4% 0;
  width: 24%;
  display: grid;
  place-items: center;
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(90deg, oklch(0 0 0 / 0.18), transparent 26%),
    var(--cover-accent);
  box-shadow: inset -10px 0 16px oklch(0 0 0 / 0.18);
}

.book-cover-spine span {
  width: 13em;
  color: var(--paper);
  font-size: clamp(0.56rem, 1vw, 0.72rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-90deg);
}

.book-cover-front {
  height: 100%;
  margin-left: 17%;
  padding: clamp(13px, 2.5vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(7px, 1.4vw, 11px);
  border: 1px solid oklch(0.740 0.025 72);
  border-radius: 8px 12px 12px 8px;
  background:
    linear-gradient(90deg, oklch(0 0 0 / 0.08), transparent 9%),
    oklch(0.965 0.014 82);
  color: var(--cover-ink);
  box-shadow:
    inset 8px 0 12px oklch(0 0 0 / 0.055),
    0 2px 0 oklch(1 0 0 / 0.68);
}

.book-cover-front > span {
  color: oklch(0.390 0.030 62);
  font-size: clamp(0.58rem, 1vw, 0.74rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.book-cover-front strong {
  width: 100%;
  color: var(--cover-ink);
  font-size: clamp(1.15rem, 2.7vw, 1.82rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.book-cover-front em {
  color: var(--cover-ink);
  font-size: clamp(1.04rem, 2.3vw, 1.55rem);
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.book-cover-front small {
  min-height: 2.2em;
  color: oklch(0.380 0.026 58);
  font-size: clamp(0.68rem, 1.25vw, 0.86rem);
  font-weight: 780;
  line-height: 1.12;
  text-align: center;
}

.book-cover-front img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
  border: 1px solid oklch(0.640 0.030 72);
}

.book-cover-green {
  --cover-accent: oklch(0.420 0.070 146);
}

.book-cover-copper {
  --cover-accent: oklch(0.480 0.080 40);
}

.book-cover-amber {
  --cover-accent: oklch(0.470 0.085 60);
}

.book-cover-blue {
  --cover-accent: oklch(0.380 0.075 245);
}

.book-cover-rose {
  --cover-accent: oklch(0.410 0.090 12);
}

.book-cover-forest {
  --cover-accent: oklch(0.340 0.070 154);
}

.book-bonus-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.book-bonus-copy p {
  max-width: 34ch;
  margin: 0;
  color: oklch(0.210 0.008 42);
  font-size: clamp(1.25rem, 2.6vw, 2.15rem);
  line-height: 1.34;
  font-weight: 520;
}

.book-value {
  position: relative;
  display: inline-block;
  color: oklch(0.280 0.060 285);
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 620;
}

.book-value::after {
  content: "";
  position: absolute;
  left: -0.3em;
  right: -0.3em;
  top: 50%;
  height: 3px;
  background: currentColor;
  transform: rotate(-4deg);
}

.book-bonus-copy strong {
  color: oklch(0.260 0.070 285);
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1.05;
}

.library-cta {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(34px, 6vw, 64px);
  text-align: center;
}

.library-offer {
  width: min(100%, 560px);
  justify-items: start;
  text-align: left;
  margin-top: 0;
  padding: clamp(24px, 4vw, 42px) clamp(26px, 5vw, 50px);
}

.library-offer span {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.library-offer strong {
  font-size: clamp(3.6rem, 10vw, 5.35rem);
}

.library-offer small {
  max-width: 21ch;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.library-cta .button {
  width: min(100%, 560px);
  min-height: clamp(66px, 9vw, 86px);
  padding-inline: clamp(26px, 5vw, 48px);
  color: oklch(0.070 0.008 42);
  font-size: clamp(1.15rem, 2.7vw, 1.72rem);
  line-height: 1.15;
}

.bonus-cta {
  margin-top: clamp(30px, 5vw, 56px);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.bonus-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line-dark);
}

.bonus-grid .bonus-feature {
  grid-column: auto;
}

.bonus-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 38px oklch(0 0 0 / 0.14);
}

.bonus-grid h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
}

.bonus-grid p {
  margin: auto 0 0;
  font-size: 1rem;
}

.reviews {
  padding-top: clamp(72px, 10vw, 118px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 430px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.review-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid oklch(0.710 0.165 55 / 0.62);
}

.stars {
  color: var(--primary);
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.review-card p {
  margin: 0;
  color: oklch(0.900 0.012 58);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.review-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.12rem;
}

.review-card small {
  color: oklch(0.780 0.028 58);
  font-weight: 800;
}

.offer {
  padding: clamp(72px, 10vw, 120px) 20px;
}

.offer-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(0.240 0.055 42), oklch(0.145 0.025 42)),
    var(--surface);
  border: 1px solid var(--line);
}

.offer-copy h2 {
  max-width: 11ch;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 28px;
  color: oklch(0.900 0.012 58);
  line-height: 1.55;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  border: 3px solid var(--offer-border);
  border-radius: 24px;
  background: var(--offer-surface);
  color: var(--ink);
}

.price-label,
.microcopy {
  color: var(--offer-muted);
  font-weight: 850;
}

.old-price {
  color: oklch(0.640 0.018 58);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: line-through;
}

.price {
  color: var(--offer-yellow);
  font-size: clamp(3.35rem, 7vw, 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.save-note {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: oklch(0.905 0.190 96 / 0.16);
  color: var(--offer-yellow);
  font-weight: 950;
}

.deadline-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.060);
  border: 1px solid oklch(1 0 0 / 0.14);
}

.deadline-box span {
  color: var(--offer-muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.deadline-box strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.wide {
  width: 100%;
  margin-top: 8px;
}

.microcopy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: center;
}

.checkout-section {
  padding: clamp(56px, 8vw, 96px) 20px;
  background:
    linear-gradient(180deg, oklch(0.095 0.010 42), oklch(0.055 0.006 42)),
    var(--bg);
}

.checkout-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 15%, oklch(0.880 0.030 178), transparent 30rem),
    linear-gradient(145deg, oklch(0.925 0.018 164), oklch(0.820 0.032 155));
}

.checkout-header {
  position: relative;
}

.checkout-modal-screen {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
  isolation: isolate;
}

.checkout-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: oklch(0.600 0.045 160);
}

.checkout-modal-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.540 0.060 164 / 0.72), oklch(0.300 0.044 150 / 0.48)),
    oklch(0.600 0.045 160 / 0.42);
  backdrop-filter: blur(18px);
}

.checkout-modal-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px) saturate(0.85);
  transform: scale(1.06);
  opacity: 0.62;
}

.checkout-screen {
  width: min(100%, 560px);
  min-height: min(735px, calc(100svh - 18px));
  max-height: calc(100svh - 18px);
  display: grid;
  grid-template-rows: 56px auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid oklch(0.870 0.010 104);
  border-radius: 18px;
  background: oklch(0.990 0 0);
  color: oklch(0.155 0.008 42);
  box-shadow: 0 24px 54px oklch(0 0 0 / 0.18);
}

.checkout-screen-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-bottom: 1px solid oklch(0.900 0.004 96);
}

.checkout-back {
  color: oklch(0.120 0.006 42);
  font-size: 2.3rem;
  line-height: 1;
}

.checkout-store-brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: oklch(0.260 0.058 152);
  font-weight: 900;
  font-size: 1.05rem;
}

.checkout-store-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: oklch(0.670 0.150 210);
  color: white;
  font-size: 0.88rem;
}

.checkout-screen-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px 20px 10px;
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
}

.checkout-screen-body h1,
.checkout-screen-body h2 {
  max-width: none;
  color: oklch(0.130 0.006 42);
  letter-spacing: -0.01em;
}

.payment-method-title {
  font-size: clamp(1.18rem, 3vw, 1.42rem);
  line-height: 1.08;
}

.checkout-order-copy {
  display: grid;
  gap: 2px;
  color: oklch(0.160 0.006 42);
  font-size: 0.94rem;
  line-height: 1.25;
}

.checkout-order-copy strong {
  font-size: 1.06rem;
}

.checkout-payment-options {
  display: grid;
  gap: 10px;
}

.checkout-payment-card {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid oklch(0.860 0.006 96);
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 18px oklch(0 0 0 / 0.08);
  cursor: pointer;
}

.checkout-payment-card.is-selected {
  border-color: oklch(0.650 0.155 230);
  box-shadow:
    inset 0 0 0 1px oklch(0.650 0.155 230),
    0 12px 24px oklch(0.650 0.155 230 / 0.12);
}

.payment-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.payment-card-number,
.payment-card-note {
  color: oklch(0.190 0.006 42);
  font-size: clamp(0.92rem, 2.6vw, 1rem);
  line-height: 1.18;
}

.payment-card-note {
  font-weight: 580;
}

.payment-card-icon {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 999px;
  background: oklch(0.965 0.018 205);
  box-shadow: inset 0 0 0 1px oklch(0.780 0.048 205);
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
}

.checkout-payment-card:nth-child(2) .payment-card-icon {
  background: linear-gradient(145deg, oklch(0.955 0.070 190), oklch(0.910 0.070 145));
  box-shadow: inset 0 0 0 1px oklch(0.710 0.100 190);
}

.checkout-screen-footer {
  display: grid;
  gap: 7px;
  padding: 10px 20px 14px;
  border-top: 1px solid oklch(0.900 0.004 96);
  background: oklch(0.972 0.004 105);
  text-align: center;
}

.checkout-screen-footer .checkout-status {
  min-height: 1.2em;
  margin: 0;
  color: oklch(0.420 0.014 96);
  font-size: 0.86rem;
  line-height: 1.25;
}

.checkout-screen-footer strong {
  color: oklch(0.140 0.006 42);
  font-size: 1.05rem;
}

.confirm-order-button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  background: oklch(0.180 0.050 245);
  color: white;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.checkout-modal {
  width: min(100%, 720px);
  max-height: min(92svh, 1120px);
  overflow: auto;
  border-radius: 18px;
  background: oklch(0.985 0.006 85);
  color: oklch(0.170 0.016 150);
  border: 1px solid oklch(0.820 0.018 96);
  box-shadow: 0 18px 44px oklch(0 0 0 / 0.22);
}

.checkout-express-modal {
  width: min(100%, 510px);
  max-height: calc(100svh - 28px);
  overflow: hidden;
}

.checkout-express-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  border-bottom: 1px solid oklch(0.860 0.014 96);
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: oklch(0.350 0.060 158);
  font-size: clamp(1.2rem, 4vw, 1.65rem);
  line-height: 1;
}

.checkout-order-summary {
  border-bottom: 1px solid oklch(0.860 0.014 96);
  background: oklch(0.965 0.006 110);
}

.summary-total {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 28px);
  color: oklch(0.250 0.040 185);
}

.summary-total span {
  font-weight: 800;
}

.summary-total strong {
  color: oklch(0.120 0.010 42);
  font-size: 1.28rem;
  font-weight: 950;
}

.summary-detail {
  display: grid;
  gap: 4px;
  padding: 0 clamp(18px, 4vw, 28px) 14px;
  color: oklch(0.350 0.060 158);
}

.summary-detail.is-open {
  display: grid;
}

.summary-detail strong {
  color: oklch(0.260 0.062 152);
  font-weight: 900;
  line-height: 1.08;
}

.summary-detail span {
  color: oklch(0.500 0.014 96);
}

.express-checkout-body {
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.express-checkout-body h1 {
  max-width: 10ch;
  color: oklch(0.350 0.060 158);
  font-size: clamp(2.2rem, 8vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.express-checkout-body .checkout-instruction {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.22rem);
}

.express-payment-options {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.payment-choice-card {
  display: grid;
  gap: 8px;
}

.payment-choice-card span {
  color: oklch(0.390 0.016 96);
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 900;
  line-height: 1.25;
}

.express-pay-button {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  color: white;
  font: inherit;
  font-size: clamp(1.05rem, 3vw, 1.22rem);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.payment-button-icon {
  font-size: 1.25em;
  line-height: 1;
}

.express-pay-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.mercado-pago-pay {
  background: oklch(0.620 0.180 252);
}

.paypal-pay {
  min-height: 66px;
  flex-direction: column;
  gap: 4px;
  background: oklch(0.900 0.048 220);
  color: oklch(0.210 0.070 252);
}

.paypal-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.paypal-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 32px;
  border-radius: 7px 9px 9px 7px;
  background: linear-gradient(135deg, #003087 0%, #0070ba 56%, #009cde 100%);
  color: white;
  font-size: 1.35rem;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.08em;
  transform: skew(-8deg);
}

.paypal-word {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.28rem, 4vw, 1.58rem);
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.03em;
}

.paypal-word span:first-child {
  color: #003087;
}

.paypal-word span:last-child {
  color: #009cde;
}

.paypal-button-copy {
  color: oklch(0.250 0.010 42);
  font-size: clamp(0.94rem, 2.6vw, 1.04rem);
  font-weight: 500;
  line-height: 1.1;
}

.paypal-button-copy strong {
  font-weight: 900;
}

.express-payment-options .checkout-status {
  margin: 4px 0 0;
  min-height: 1.4em;
  color: oklch(0.470 0.014 96);
  text-align: center;
}

.checkout-modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: clamp(28px, 5vw, 46px);
  border-bottom: 1px solid oklch(0.860 0.014 96);
}

.checkout-modal-header h1 {
  max-width: 12ch;
  color: oklch(0.350 0.060 158);
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.checkout-modal-header p {
  max-width: 42ch;
  margin: 22px 0 0;
  color: oklch(0.500 0.014 96);
  font-size: clamp(1.18rem, 2.6vw, 1.55rem);
  line-height: 1.55;
}

.checkout-close {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid oklch(0.850 0.014 96);
  background: oklch(0.960 0.010 96);
  color: oklch(0.350 0.060 158);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 520;
}

.checkout-modal-body {
  padding: clamp(26px, 5vw, 46px);
}

.checkout-product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 42px);
  padding: clamp(22px, 4vw, 32px);
  border-radius: 16px;
  background: oklch(0.950 0.006 120);
}

.checkout-product-row strong {
  color: oklch(0.350 0.060 158);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.15;
}

.checkout-product-row span {
  color: oklch(0.570 0.120 44);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 900;
  white-space: nowrap;
}

.checkout-instruction {
  max-width: 42ch;
  margin: 0 0 clamp(56px, 9vw, 92px);
  color: oklch(0.500 0.014 96);
  font-size: clamp(1.15rem, 2.8vw, 1.48rem);
  line-height: 1.55;
}

.checkout-payment-box {
  display: grid;
  gap: 20px;
}

.checkout-payment-box h2 {
  max-width: none;
  color: oklch(0.120 0.010 42);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.mp-payment {
  min-height: 330px;
  color-scheme: light;
}

.checkout-modal .checkout-status {
  color: oklch(0.420 0.014 96);
  font-size: 1rem;
}

.checkout-main {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vw, 92px) 20px clamp(56px, 8vw, 110px);
}

.checkout-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 3px solid var(--offer-border);
  border-radius: 24px;
  background: var(--offer-surface);
}

.checkout-page-panel {
  min-height: min(680px, calc(100svh - 160px));
}

.checkout-page-panel .checkout-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.checkout-copy h2 {
  max-width: 12ch;
}

.checkout-copy p {
  max-width: 58ch;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  width: min(100%, 460px);
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.060);
  border: 1px solid oklch(1 0 0 / 0.14);
}

.checkout-summary span,
.checkout-summary small,
.checkout-box-label,
.checkout-status {
  color: var(--offer-muted);
  font-weight: 850;
}

.checkout-summary strong {
  color: var(--offer-yellow);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 0.95;
}

.checkout-box {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border-radius: 18px;
  background: oklch(0.110 0.010 42);
  border: 1px solid var(--line);
}

.checkout-box-label {
  color: var(--ink);
  font-size: 1.25rem;
}

.mp-wallet {
  min-height: 76px;
}

.checkout-status {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

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

details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 920;
}

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

details p {
  max-width: 72ch;
  margin-bottom: 0;
}

.final-cta {
  background: var(--green-deep);
  color: white;
}

.final-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.final-panel h2 {
  max-width: 12ch;
}

.final-panel p {
  max-width: 58ch;
  margin: 0;
  color: oklch(0.930 0.018 154);
}

.final-offer {
  width: min(100%, 560px);
  justify-items: start;
  text-align: left;
  margin-top: 8px;
}

.final-offer span {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.final-offer strong {
  font-size: clamp(3.4rem, 10vw, 5.2rem);
}

.final-offer small {
  max-width: 21ch;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.final-buy-button {
  width: min(100%, 560px);
  min-height: clamp(66px, 9vw, 86px);
  color: oklch(0.070 0.008 42);
  font-size: clamp(1.15rem, 2.7vw, 1.72rem);
  line-height: 1.15;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.site-footer > span {
  color: var(--muted);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(1 0 0 / 0.055);
  color: var(--ink);
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: oklch(1 0 0 / 0.095);
}

.footer-social-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
}

.footer-social-link-whatsapp {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .top-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    z-index: 0;
    height: auto;
    opacity: 1;
    place-items: center;
    margin-top: 0;
    padding: 0;
  }

  .hero-product-shot {
    width: min(100%, 720px);
    min-width: 0;
    transform: none;
  }

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

  .hero-lede {
    max-width: 47ch;
  }

  .problem-layout,
  .story-layout,
  .fit-grid,
  .book-bonus-body,
  .offer-panel,
  .checkout-panel {
    grid-template-columns: 1fr;
  }

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

  .book-bonus-copy p {
    max-width: 42ch;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 20px, var(--max));
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding-inline: 14px;
  }

  h1 {
    max-width: 10ch;
  }

  h2 {
    max-width: 11ch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    margin-inline: -10px;
  }

  .hero-product-shot {
    width: min(100vw - 20px, 520px);
  }

  .hero-product-shot::before {
    background: none;
  }

  .hero-pack-badge {
    top: 5%;
    right: 4%;
    width: 28%;
    padding: 10px;
  }

  .hero-mini-books {
    left: 4%;
    right: 11%;
    bottom: 12%;
    height: 66%;
  }

  .hero-mini-book {
    min-width: 42px;
    padding: 7px 5px 5px 10px;
    border-left-width: 7px;
  }

  .hero-mini-book span,
  .hero-mini-book em {
    font-size: 0.42rem;
  }

  .hero-mini-book strong {
    font-size: 0.54rem;
  }

  .hero-mini-book-main strong {
    font-size: 0.62rem;
  }

  .hero-bonus-strip {
    display: none;
  }

  .trust-list {
    display: grid;
  }

  .review-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid article:last-child,
  .bonus-grid .bonus-feature {
    grid-column: span 1;
  }

  .book-bonus-card {
    border-width: 3px;
    border-radius: 18px;
  }

  .book-bonus-copy p {
    font-size: 1.12rem;
  }

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

  .story-card img {
    min-height: 280px;
  }

  .offer-panel {
    padding: 22px;
  }

  .price-box,
  .checkout-panel {
    padding: 22px;
  }

  .checkout-modal-screen {
    padding: 12px;
    align-items: start;
  }

  .checkout-modal {
    max-height: none;
    border-radius: 16px;
  }

  .checkout-modal-header {
    padding: 24px;
  }

  .checkout-modal-header h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .checkout-close {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .checkout-modal-body {
    padding: 24px;
  }

  .checkout-product-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-instruction {
    margin-bottom: 44px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

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