:root {
  color-scheme: light;
  --ink: #070b0c;
  --ink-soft: #11191a;
  --paper: #fbfaf5;
  --paper-2: #f1eee4;
  --gold: #d9a842;
  --gold-soft: #f3cf79;
  --green: #4f8f57;
  --green-dark: #143323;
  --coral: #c74c3e;
  --text: #151716;
  --muted: #686b66;
  --line: rgba(14, 18, 17, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --hero-max: 1500px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(7, 11, 12, 0.92);
  color: #fffdf7;
  border-bottom: 1px solid rgba(217, 168, 66, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.02;
}

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

.brand strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-soft);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #12100b;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(217, 168, 66, 0.22);
}

.header-cta span {
  margin-left: 4px;
}

.hero {
  position: relative;
  min-height: calc(88vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(330px, 460px);
  justify-content: center;
  gap: clamp(44px, 6vw, 120px);
  align-items: center;
  padding: clamp(46px, 6vw, 88px) clamp(22px, 5vw, 72px) clamp(34px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(7, 11, 12, 0.97) 0%, rgba(7, 11, 12, 0.93) 38%, rgba(9, 18, 16, 0.58) 66%, rgba(7, 11, 12, 0.82) 100%),
    linear-gradient(180deg, rgba(7, 11, 12, 0.08), rgba(7, 11, 12, 0.58)),
    url("assets/mente-rica-hero-mentalidad-financiera.webp") center right / cover no-repeat;
  color: #fffdf7;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 12, 0.32));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.sale-line,
.section-label {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sale-line span {
  color: #fffdf7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.5vw, 94px);
  line-height: 0.94;
  font-weight: 700;
}

h1 span {
  display: block;
}

.h1-gold {
  color: var(--gold-soft);
  white-space: nowrap;
}

.seo-subtitle {
  max-width: 620px;
  margin-bottom: 14px;
  color: rgba(243, 207, 121, 0.92);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 760;
  line-height: 1.42;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 22px;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 660px;
  margin: 0 0 28px;
  padding: 0;
  color: rgba(255, 253, 247, 0.8);
  font-size: 14px;
  list-style: none;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--green);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button-icon {
  position: relative;
  width: 17px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
}

.button-icon::before,
.button-icon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.button-icon::before {
  left: 1px;
}

.button-icon::after {
  right: 1px;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #11100c;
  box-shadow: 0 18px 40px rgba(217, 168, 66, 0.24);
}

.inline-cta {
  width: max-content;
  margin-top: 26px;
}

.button-secondary {
  border: 1px solid rgba(255, 253, 247, 0.52);
  color: #fffdf7;
  background: transparent;
}

.button-secondary.dark {
  border-color: rgba(255, 253, 247, 0.48);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 14px;
  list-style: none;
}

.purchase-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.hero-product {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center end;
  padding-right: clamp(0px, 2vw, 30px);
}

.hero-product img {
  position: relative;
  z-index: 2;
  width: clamp(320px, 27vw, 430px);
  min-width: 310px;
  max-height: min(68vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.56));
}

.product-halo {
  position: absolute;
  right: clamp(-22px, 1vw, 12px);
  width: clamp(360px, 35vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 168, 66, 0.2), transparent 64%),
    radial-gradient(circle at 38% 65%, rgba(79, 143, 87, 0.22), transparent 50%);
  filter: blur(2px);
  opacity: 0.86;
}

.notebook {
  position: absolute;
  right: clamp(0px, 2vw, 28px);
  bottom: clamp(22px, 5vw, 54px);
  z-index: 3;
  width: min(280px, 45vw);
  padding: 18px 20px;
  border: 1px solid rgba(217, 168, 66, 0.48);
  border-radius: 8px;
  background: rgba(251, 250, 245, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.notebook span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 1700px) {
  .hero {
    justify-content: start;
    gap: clamp(320px, 19vw, 520px);
  }

  .hero-product img {
    width: clamp(380px, 21vw, 430px);
  }
}

.section-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.pain-section {
  background: linear-gradient(180deg, #fffdf8, var(--paper));
}

.pain-section h2,
.truth-section h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
}

.pain-section p,
.truth-section p {
  color: #353935;
  font-size: clamp(17px, 1.6vw, 20px);
}

.shift-section,
.inside-section,
.faq-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #fffdf8, var(--paper));
}

.shift-section h2,
.faq-section h2 {
  max-width: 950px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
}

.shift-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.signal {
  min-height: 290px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.signal h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.signal-pain h3 {
  color: var(--coral);
}

.signal-growth h3 {
  color: var(--green);
}

.signal ul,
.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal li,
.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.signal li::before {
  content: "x";
  color: var(--coral);
  font-weight: 900;
}

.signal-growth li::before,
.feature-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  border: 1px solid rgba(79, 143, 87, 0.55);
  background: radial-gradient(circle, var(--green) 0 34%, transparent 38%);
}

.bridge-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 28px;
  box-shadow: var(--shadow);
}

.learn-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding: clamp(60px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(7, 11, 12, 0.98), rgba(9, 18, 17, 0.96)),
    var(--ink);
  color: #fffdf7;
}

.learn-section > div {
  max-width: var(--max);
}

.learn-section h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.learn-section p {
  color: rgba(255, 253, 247, 0.74);
}

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

.learn-cards article {
  min-height: 250px;
  padding: 28px;
  border-left: 1px solid rgba(217, 168, 66, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.learn-cards span {
  display: block;
  margin-bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 168, 66, 0.48);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.learn-cards h3 {
  color: #8fca89;
}

.inside-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.spread {
  justify-self: center;
  width: min(100%, 560px);
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px;
  border-radius: 8px;
  background: #e9e1cd;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.page {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 354px;
  padding: 34px 30px;
  background: #fffefa;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.page-dark {
  background: var(--green-dark);
  color: #fffdf7;
}

.page span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.08;
}

.page p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 8px;
}

.inside-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 4.6vw, 64px);
}

.inside-intro {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
}

.feature-list li {
  grid-template-columns: 30px 1fr;
}

.feature-list li::before {
  grid-row: 1 / span 2;
}

.feature-list strong,
.feature-list span {
  display: block;
  grid-column: 2;
}

.feature-list span {
  color: var(--muted);
}

.format-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fffdf8;
}

.format-box strong,
.format-box span {
  display: block;
}

.method-section,
.difference-section,
.author-section {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background: #fffdf8;
}

.method-copy h2,
.difference-section h2,
.author-card h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.04;
}

.method-copy p,
.difference-section p,
.author-card p {
  color: var(--muted);
  font-size: 18px;
}

.method-steps,
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-steps article,
.difference-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.method-steps h3,
.difference-grid h3 {
  color: var(--green-dark);
}

.truth-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 250, 245, 0.96), rgba(251, 250, 245, 0.92)),
    var(--paper);
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(115deg, rgba(7, 11, 12, 0.98), rgba(9, 18, 17, 0.95)),
    var(--ink);
  color: #fffdf7;
}

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

.difference-grid article {
  border-color: rgba(217, 168, 66, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.difference-grid h3 {
  color: var(--gold-soft);
}

.author-section {
  background:
    linear-gradient(135deg, rgba(20, 51, 35, 0.96), rgba(8, 13, 12, 0.98)),
    var(--green-dark);
  color: #fffdf7;
}

.author-card {
  max-width: var(--max);
  margin: 0 auto;
}

.author-card p {
  max-width: 920px;
  color: rgba(255, 253, 247, 0.78);
}

.author-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
}

.author-facts div {
  padding: 20px;
  border: 1px solid rgba(217, 168, 66, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.author-facts dt {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.author-facts dd {
  margin: 8px 0 0;
  color: #fffdf7;
  font-weight: 750;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fffdf7;
}

.offer-section h2 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
}

.offer-section p,
.final-cta p {
  max-width: 690px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 18px;
}

.checkout-card {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(217, 168, 66, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.checkout-card span,
.checkout-card small {
  color: rgba(255, 253, 247, 0.68);
}

.checkout-card > strong {
  display: block;
  margin: 12px 0;
  font-family: var(--serif);
  color: var(--gold-soft);
  font-size: 46px;
}

.faq-section {
  background: #fffdf8;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 6vw, 74px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(20, 51, 35, 0.98), rgba(8, 13, 12, 0.98)),
    var(--green-dark);
  color: #fffdf7;
  border-top: 1px solid rgba(217, 168, 66, 0.52);
  border-bottom: 1px solid rgba(217, 168, 66, 0.52);
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 253, 247, 0.74);
}

.site-footer strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 8px;
}

.site-footer small {
  color: rgba(255, 253, 247, 0.55);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
}

.mobile-sticky-cta {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 12px;
  z-index: 40;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #11100c;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(7, 11, 12, 0.98), rgba(20, 51, 35, 0.94)),
    var(--ink);
  color: #fffdf7;
}

.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) 22px;
}

.legal-shell h1 {
  max-width: 760px;
  margin: 22px 0;
  font-size: clamp(42px, 7vw, 76px);
}

.legal-shell p {
  color: rgba(255, 253, 247, 0.78);
  font-size: 18px;
}

.legal-back {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .learn-section,
  .inside-section,
  .offer-section,
  .final-cta,
  .site-footer,
  .method-section,
  .difference-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 11, 12, 0.98), rgba(7, 11, 12, 0.9) 42%, rgba(7, 11, 12, 0.56)),
      linear-gradient(180deg, rgba(7, 11, 12, 0.1), rgba(7, 11, 12, 0.6)),
      url("assets/mente-rica-hero-mentalidad-financiera.webp") center top / cover no-repeat;
  }

  .hero-product {
    min-height: 460px;
    place-items: center;
    padding-right: 0;
  }

  .hero-product img {
    width: min(56vw, 390px);
    min-width: 270px;
    max-height: none;
  }

  .product-halo {
    right: auto;
    width: min(70vw, 470px);
  }

  .learn-cards,
  .shift-grid,
  .method-steps,
  .difference-grid,
  .author-facts {
    grid-template-columns: 1fr;
  }

  .bridge-mark {
    justify-self: center;
    transform: rotate(90deg);
  }

  .final-actions,
  .header-cta {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 18px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 36px 18px 42px;
    background:
      linear-gradient(180deg, rgba(7, 11, 12, 0.97) 0%, rgba(7, 11, 12, 0.86) 46%, rgba(7, 11, 12, 0.58) 100%),
      url("assets/mente-rica-hero-mentalidad-financiera.webp") 58% top / auto 100% no-repeat;
  }

  .sale-line {
    margin-bottom: 14px;
    font-size: 11px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: clamp(44px, 13.2vw, 62px);
    line-height: 0.92;
  }

  .h1-gold {
    white-space: normal;
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.52;
  }

  .seo-subtitle {
    font-size: 16px;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    gap: 5px;
    font-size: 13px;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .trust-row {
    display: grid;
    margin-top: 22px;
    gap: 8px;
  }

  .hero-product {
    min-height: 340px;
    margin-top: -70px;
  }

  .hero-product img {
    width: min(74vw, 310px);
    min-width: 0;
  }

  .notebook {
    display: none;
  }

  .shift-section,
  .learn-section,
  .inside-section,
  .offer-section,
  .faq-section,
  .final-cta,
  .method-section,
  .difference-section,
  .author-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .signal,
  .learn-cards article,
  .checkout-card,
  .method-steps article,
  .difference-grid article {
    padding: 22px;
  }

  .spread {
    min-height: auto;
    grid-template-columns: 1fr;
    transform: none;
  }

  .page {
    min-height: 250px;
  }

  .footer-links {
    display: grid;
  }

  .inline-cta,
  .faq-cta .button {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  .button {
    transition: none;
  }
}
