:root {
  --bg: #080704;
  --bg-soft: #11100c;
  --card: #17140f;
  --card-light: #211b12;
  --gold: #d8a84a;
  --gold-soft: #f4d995;
  --text: #f8f1df;
  --muted: #bdb29a;
  --line: rgba(216, 168, 74, 0.22);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(216, 168, 74, 0.18), transparent 28rem),
    radial-gradient(circle at 15% 20%, rgba(216, 168, 74, 0.1), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 7, 4, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand,
.desktop-nav,
.trust-bar,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  flex: 1;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a:hover {
  color: var(--gold-soft);
}

.nav-label-mobile {
  display: none;
}

.nav-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-icon--pulse {
  animation: nav-gift-pulse 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes nav-gift-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(216, 168, 74, 0));
  }

  50% {
    transform: scale(1.14);
    filter: drop-shadow(0 0 10px rgba(216, 168, 74, 0.65));
  }
}

.header-cta {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(216, 168, 74, 0.14);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 921px) {
  .site-header {
    justify-content: space-between;
  }

  .brand {
    flex-shrink: 0;
  }

  .desktop-nav a {
    min-height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: inherit;
  }

  .desktop-nav a:hover {
    color: var(--gold-soft);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .header-cta .nav-icon {
    width: 34px;
    height: 34px;
  }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  grid-template-areas:
    "copy visual"
    "actions visual";
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding-top: 58px;
  padding-bottom: 64px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.hero-actions {
  grid-area: actions;
  align-self: start;
}

.hero-visual {
  grid-area: visual;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 680px;
  font-size: clamp(1.85rem, 3.55vw, 3.55rem);
  line-height: 1.06;
}

h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line {
  display: block;
}

.hero-title-mobile {
  display: none;
}

h2 {
  font-size: clamp(1.9rem, 3.45vw, 3.55rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(0.92rem, 1.05vw, 1.03rem);
  line-height: 1.65;
}

.hero-subtitle-mobile {
  display: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, #8a5c18);
  color: #140d03;
  box-shadow: 0 16px 36px rgba(216, 168, 74, 0.26);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-soft);
}

.button.full {
  width: 100%;
}

.trust-bar {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.trust-bar span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(84%, 340px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  max-height: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 7, 4, 0.24));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 760px;
}

@media (min-width: 621px) {
  .pain .section-heading.narrow {
    max-width: 920px;
  }

  .pain .section-heading h2 .title-line {
    display: block;
    white-space: nowrap;
  }
}

.section-heading p {
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.75;
}

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

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

.pain-carousel__viewport,
.testimonial-carousel__viewport {
  overflow: visible;
}

.pain-card,
.testimonial-card,
.pillar-grid article,
.audience-card,
.price-card,
.promise-card,
.chapter-list article,
.bonus-list div,
.faq details {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.pain-card {
  min-height: 112px;
  padding: 22px;
  border-radius: 20px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.pain-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.pain-transition {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--gold-soft);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.pain-carousel__nav,
.testimonial-carousel__nav {
  display: none;
}

.pain-carousel.is-mobile .pain-carousel__nav,
.testimonial-carousel.is-mobile .testimonial-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.pain-carousel.is-mobile .pain-carousel__track,
.testimonial-carousel.is-mobile .testimonial-carousel__track {
  display: block;
}

.pain-carousel.is-mobile .pain-card,
.testimonial-carousel.is-mobile .testimonial-card {
  display: none;
}

.pain-carousel.is-mobile .pain-card.is-active {
  display: block;
  min-height: 168px;
  padding: 22px;
  border-radius: 20px;
}

.testimonial-carousel.is-mobile .testimonial-card.is-active {
  display: block;
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
}

.pain-carousel-btn,
.testimonial-carousel-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(216, 168, 74, 0.1);
  color: var(--gold-soft);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.pain-carousel-btn:disabled,
.testimonial-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pain-carousel-btn:not(:disabled):hover,
.testimonial-carousel-btn:not(:disabled):hover {
  background: rgba(216, 168, 74, 0.18);
  border-color: rgba(216, 168, 74, 0.34);
}

.pain-carousel-counter,
.testimonial-carousel-counter {
  min-width: 52px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.pain-carousel-counter strong,
.testimonial-carousel-counter strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.promise-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  text-align: center;
}

.promise-card p {
  max-width: 760px;
  margin: 18px auto 0;
}

.comparison-table {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.transformation.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.transformation .section-heading {
  margin-bottom: 44px;
}

.transformation .section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.75rem);
}

.comparison-table__header,
.comparison-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table__header {
  border-bottom: 1px solid var(--line);
}

.comparison-table__col {
  padding: clamp(26px, 3.5vw, 40px);
}

.comparison-table__col--before {
  background: rgba(255, 255, 255, 0.015);
  border-right: 1px solid rgba(216, 168, 74, 0.1);
}

.comparison-table__col--after {
  background: linear-gradient(145deg, rgba(216, 168, 74, 0.12), rgba(255, 255, 255, 0.02));
}

.comparison-label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-table h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.comparison-table__col--after h3 {
  color: var(--gold-soft);
}

.comparison-table__row {
  border-bottom: 1px solid rgba(216, 168, 74, 0.1);
}

.comparison-table__row:last-child {
  border-bottom: 0;
}

.comparison-table__row p {
  margin: 0;
  padding: clamp(22px, 3vw, 30px) clamp(20px, 3.2vw, 32px);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.58;
}

.comparison-table__row p:first-child {
  color: var(--muted);
  border-right: 1px solid rgba(216, 168, 74, 0.08);
}

.comparison-table__row p:last-child {
  color: var(--text);
  font-weight: 600;
}

blockquote {
  margin: 30px auto 0;
  max-width: 720px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.author {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.author-image {
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 10%, rgba(216, 168, 74, 0.2), transparent 22rem), var(--card);
}

.author-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: bottom center;
}

.author-copy p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.78;
}

.author-credential {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 0.96rem;
}

.pillar-grid article {
  padding: 24px;
  border-radius: 22px;
}

.pillar-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.pillar-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.68;
}

.chapter-list,
.bonus-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.chapter-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.bonus-list div {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  line-height: 1.45;
}

.bonus-list div small {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: line-through;
  text-transform: uppercase;
}

.bonus-list div small.is-included {
  color: var(--muted);
  text-decoration: none;
}

.chapter-list article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
}

.chapter-list article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216, 168, 74, 0.16);
  border-radius: 50%;
}

.chapter-list article span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter-list article strong {
  display: block;
  max-width: 260px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
}

.chapter-list article p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.chapter-list .chapter-featured {
  grid-column: span 3;
  min-height: 150px;
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(216, 168, 74, 0.16), rgba(255, 255, 255, 0.025));
}

.chapter-list .chapter-featured span {
  margin-bottom: 0;
}

.chapter-list .chapter-featured strong {
  max-width: none;
  font-size: 1.35rem;
}

.chapter-list .chapter-featured p {
  margin: 0;
}

.bonus-list span {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: left;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: 24px;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.audience-card.positive {
  border-color: rgba(216, 168, 74, 0.34);
  background: linear-gradient(145deg, rgba(216, 168, 74, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 48px rgba(216, 168, 74, 0.1);
}

.audience-card.positive::before {
  background: linear-gradient(90deg, #8a5c18, var(--gold-soft));
}

.audience-card.positive .eyebrow {
  color: var(--gold-soft);
}

.audience-card.negative {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22));
  box-shadow: none;
}

.audience-card.negative::before {
  background: rgba(255, 255, 255, 0.12);
}

.audience-card.negative .eyebrow {
  color: rgba(255, 255, 255, 0.42);
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text);
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.audience-card li::before {
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.audience-card.positive li::before {
  content: "✓";
  color: var(--gold-soft);
}

.audience-card.negative li {
  color: var(--muted);
}

.audience-card.negative li::before {
  content: "✕";
  color: rgba(255, 255, 255, 0.28);
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.offer-copy,
.price-card {
  border-radius: var(--radius);
}

.offer-copy {
  padding: clamp(28px, 4.5vw, 52px);
  background: linear-gradient(145deg, rgba(216, 168, 74, 0.12), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
}

.bonus-list {
  margin-top: 30px;
  grid-template-columns: 1fr;
}

.bonus-list > div {
  width: 100%;
  min-height: auto;
  align-items: start;
  justify-items: start;
}

.price-card {
  position: sticky;
  top: 110px;
  padding: 26px;
  background: linear-gradient(180deg, var(--card-light), var(--card));
  text-align: center;
}

.price-label {
  display: block;
  width: 100%;
  color: var(--gold-soft);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-label__strike {
  text-decoration: line-through;
  opacity: 0.75;
}

.price-anchor {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.price {
  margin: 12px auto 8px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.price-card small {
  display: block;
  margin-top: 12px;
  color: #968869;
  text-align: center;
}

.countdown {
  display: grid;
  gap: 6px;
  margin: 20px 0;
  padding: 14px;
  border: 1px solid rgba(216, 168, 74, 0.2);
  border-radius: 16px;
  background: rgba(216, 168, 74, 0.08);
  text-align: center;
}

.countdown span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown strong {
  color: var(--gold-soft);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.guarantee {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  justify-items: center;
}

.guarantee strong {
  display: block;
  width: 100%;
  text-align: center;
}

.guarantee span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.testimonial-card {
  min-height: 290px;
  padding: 26px;
  border-radius: 24px;
}

.testimonial-card p {
  margin-top: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.68;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 24px;
  color: var(--gold-soft);
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq details {
  border-radius: 16px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 960px;
  margin: 0 auto 18px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 10px;
    overflow: visible;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
  }

  .header-cta .nav-icon {
    width: 32px;
    height: 32px;
  }

  .brand {
    display: flex;
    flex-shrink: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
  }

  .desktop-nav {
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    width: auto;
    overflow: visible;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: block;
  }

  .desktop-nav a[href="#faq"] {
    display: none;
  }

  .desktop-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 4px 6px;
    border: none;
    border-radius: 0;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    text-decoration: underline;
    text-decoration-color: rgba(216, 168, 74, 0.55);
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }

  .desktop-nav a:hover {
    color: var(--gold-soft);
    text-decoration-color: var(--gold-soft);
  }

  .hero-copy h1 .desktop-only,
  .hero-subtitle .desktop-only {
    display: none;
  }

  .hero-title-mobile,
  .hero-subtitle-mobile {
    display: block;
  }

  .hero-subtitle-line {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 14px auto 0;
    font-size: clamp(0.68rem, 3.2vw, 0.8rem);
    line-height: 1.45;
  }

  .hero,
  .author,
  .audience,
  .offer {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy,
  .hero-actions {
    align-self: auto;
  }

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

  .bonus-list > div {
    grid-column: 1;
  }

  .pain-carousel__track,
  .testimonial-carousel__track,
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .chapter-list .chapter-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .price-card {
    position: static;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 620px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  .site-header {
    width: min(100% - 18px, 1180px);
    margin-top: 8px;
    padding: 9px 10px;
  }

  .desktop-nav {
    gap: 6px;
  }

  .desktop-nav a {
    padding: 4px 5px;
    font-size: 0.7rem;
    text-underline-offset: 3px;
  }

  .header-cta .nav-icon {
    width: 36px;
    height: 36px;
  }

  .brand {
    gap: 8px;
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 46px 0;
  }

  .hero {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 38px;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.1;
  }

  .hero-copy h1 .desktop-only {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1.12;
  }

  h3 {
    font-size: 1.05rem;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 14px auto 0;
    font-size: clamp(0.68rem, 3.2vw, 0.8rem);
    line-height: 1.45;
  }

  .hero-subtitle .desktop-only {
    display: none;
  }

  .hero-subtitle-mobile {
    display: block;
  }

  .hero-subtitle-line {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: auto;
    max-height: none;
    width: min(62vw, 200px);
    border-radius: 16px;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
  }

  .pillar-grid,
  .chapter-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .comparison-table__col {
    padding: 18px 12px;
  }

  .comparison-table__col--before {
    border-right: 1px solid rgba(216, 168, 74, 0.1);
  }

  .comparison-label {
    margin-bottom: 0;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .comparison-table h3 {
    font-size: clamp(0.78rem, 3.1vw, 0.95rem);
    line-height: 1.2;
  }

  .comparison-table__row p:first-child {
    border-right: 1px solid rgba(216, 168, 74, 0.08);
  }

  .comparison-table__row p {
    padding: 16px 12px;
    font-size: clamp(0.82rem, 3.4vw, 0.92rem);
    line-height: 1.5;
  }

  .transformation.section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .transformation .section-heading {
    margin-bottom: 30px;
  }

  .transformation .section-heading h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.15rem);
  }

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

  .pain .section-heading h2 {
    font-size: clamp(1.18rem, 5.6vw, 1.42rem);
    line-height: 1.16;
  }

  .promise-card h2 {
    font-size: clamp(1.18rem, 5.6vw, 1.42rem);
    line-height: 1.16;
  }

  .section-heading p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .pillar-grid article {
    min-height: 150px;
    padding: 14px;
    border-radius: 16px;
  }

  .pain-transition {
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .pillar-grid span {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  .pillar-grid h3 {
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .pillar-grid p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .promise-card,
  .audience-card,
  .offer-copy,
  .price-card {
    padding: 22px;
    border-radius: 18px;
  }

  blockquote {
    margin-top: 22px;
    font-size: 1.12rem;
  }

  .author {
    grid-template-columns: minmax(108px, 32%) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
  }

  .author-image {
    max-width: none;
    margin: 0;
    align-self: stretch;
    display: flex;
    min-height: 100%;
    border-radius: 14px;
  }

  .author-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: top center;
  }

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

  .author-copy .eyebrow {
    margin-bottom: 6px;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .author-copy h2 {
    font-size: clamp(0.98rem, 4.4vw, 1.12rem);
    line-height: 1.18;
  }

  .author-copy p {
    font-size: 0.78rem;
    line-height: 1.52;
  }

  .author-credential {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .bonus-list,
  .faq-list {
    gap: 10px;
  }

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

  .bonus-list > div {
    grid-column: 1;
    width: 100%;
    min-height: auto;
    padding: 14px;
    border-radius: 14px;
  }

  .chapter-list article,
  .faq details {
    padding: 14px;
    border-radius: 14px;
  }

  .chapter-list article {
    min-height: 160px;
    padding: 14px;
  }

  .chapter-list article span {
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .chapter-list article strong {
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .chapter-list article p {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .chapter-list .chapter-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .chapter-list .chapter-featured strong {
    font-size: 1.08rem;
  }

  .bonus-list strong {
    font-size: 0.92rem;
  }

  .bonus-list span {
    font-size: 0.76rem;
    line-height: 1.38;
    text-align: left;
  }

  .offer {
    gap: 16px;
  }

  .price {
    font-size: 2.45rem;
  }

  .price-card small {
    font-size: clamp(0.62rem, 2.85vw, 0.74rem);
    line-height: 1.3;
    white-space: nowrap;
  }

  .site-footer {
    font-size: 0.82rem;
    text-align: center;
  }
}

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

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

  .button:hover {
    transform: none;
  }

  .nav-icon--pulse {
    animation: none;
    filter: none;
  }
}
