:root {
  --white: #ffffff;
  --ink: #111111;
  --muted: #646464;
  --soft: #f5f5f5;
  --line: #e8e8e8;
  --red: #b91c1c;
  --red-bright: #dc2626;
  --red-soft: #fff1f1;
  --graphite: #2f2f2f;
  --cash-yellow: #ffe100;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.075);
  --soft-shadow: 0 16px 44px rgba(17, 17, 17, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #fbfbfb 100%);
  color: var(--graphite);
  font-family: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.preloading {
  overflow: hidden;
}

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

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

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease, visibility .4s ease;
}

.site-preloader.preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  position: relative;
  width: clamp(78px, 12vw, 126px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28%;
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(255, 225, 0, 0));
  transform: translate3d(0, 6px, 0) scale(.98);
  animation:
    preloader-logo-enter .22s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    preloader-logo-glow .56s cubic-bezier(0.22, 1, 0.36, 1) .18s forwards,
    preloader-logo-dissolve .22s cubic-bezier(0.22, 1, 0.36, 1) .74s forwards;
  will-change: opacity, transform, filter;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader-logo::after {
  content: "";
  position: absolute;
  inset: -24%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 225, 0, .08) 42%,
    rgba(255, 225, 0, .88) 49%,
    rgba(255, 255, 255, .64) 52%,
    rgba(255, 225, 0, .18) 59%,
    transparent 67%,
    transparent 100%
  );
  filter: blur(1.5px);
  mix-blend-mode: screen;
  transform: translate3d(-135%, 0, 0) skewX(-12deg);
  animation: logo-shine .56s cubic-bezier(0.22, 1, 0.36, 1) .16s forwards;
  will-change: transform;
}

@keyframes logo-shine {
  to {
    transform: translate3d(135%, 0, 0) skewX(-12deg);
  }
}

@keyframes preloader-logo-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes preloader-logo-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 225, 0, 0));
  }

  48% {
    filter: drop-shadow(0 0 24px rgba(255, 225, 0, .38));
  }
}

@keyframes preloader-logo-dissolve {
  to {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 225, 0, 0));
    transform: translate3d(0, -4px, 0) scale(.985);
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: calc(100% - 48px);
  max-width: 1240px;
  height: 72px;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, -webkit-backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu-socials {
  display: none;
}

.nav-link,
.site-footer a,
.social-row a,
.social-pill {
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--cash-yellow);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cash-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-footer a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

.social-pill svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-pill {
  --social-shift: -18px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-size: 0;
  box-shadow: 0 0 18px rgba(255, 225, 0, .1);
  transform: translateX(var(--social-shift));
}

.social-pill span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.social-pill:hover {
  border-color: rgba(255, 225, 0, .62);
  background: rgba(255, 225, 0, .1);
  box-shadow: 0 0 28px rgba(255, 225, 0, .26), 0 10px 26px rgba(0, 0, 0, .18);
  color: var(--cash-yellow);
  transform: translateX(var(--social-shift, 0)) scale(1.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--cash-yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transform-origin: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  animation: cta-glow 3s ease-in-out infinite;
}

.header-cta:hover {
  background: #ffdf1f;
  box-shadow: 0 16px 38px rgba(255, 225, 0, .38);
  transform: scale(1.04);
  animation: none;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 156px) 0;
  scroll-margin-top: 120px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 92svh;
  display: grid;
  align-items: center;
  margin: 0;
  padding: clamp(132px, 12vw, 172px) clamp(20px, 6vw, 92px) clamp(54px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .56) 34%, rgba(0, 0, 0, .16) 62%, rgba(0, 0, 0, .04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .08) 32%, rgba(0, 0, 0, .2) 100%),
    url("assets/author-red.png") 58% center / auto 108% no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: block;
  color: var(--white);
}

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 225, 0, .34);
  background: rgba(255, 225, 0, .14);
  color: var(--cash-yellow);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: inherit;
  font-size: clamp(48px, 6.45vw, 96px);
  line-height: .96;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-profit-word {
  position: relative;
  display: inline-block;
  color: inherit;
}

.hero-profit-word::after {
  content: "";
  position: absolute;
  left: .03em;
  right: .03em;
  bottom: -.08em;
  height: .055em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 225, 0, .72), #ffe100 48%, rgba(255, 255, 255, .72));
  box-shadow: 0 0 16px rgba(255, 225, 0, .42);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-profit-line .82s cubic-bezier(0.22, 1, 0.36, 1) .95s forwards;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
  font-weight: 800;
}

.hero-offer {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(15, 15, 15, .36);
  color: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .14), 0 0 16px rgba(255, 225, 0, .06) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.hero-trust-badge svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--cash-yellow);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-cta-note {
  display: flex;
  flex: 0 0 clamp(360px, 31vw, 460px);
  max-width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.hero-cta-note-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 225, 0, .52);
  border-radius: 999px;
  background: rgba(15, 15, 15, .42);
  color: rgba(255, 255, 255, .94);
  box-shadow: 0 0 18px rgba(255, 225, 0, .16), 0 12px 28px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  animation: hero-cta-note-pulse 4.8s ease-in-out infinite;
}

.hero-cta-note-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: var(--cash-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 24px 44px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.button.primary {
  gap: 12px;
  overflow: hidden;
  background: var(--cash-yellow);
  color: var(--ink);
  box-shadow: 0 20px 42px rgba(255, 225, 0, .26), 0 0 0 1px rgba(17, 17, 17, .03) inset;
  transform-origin: center;
  isolation: isolate;
  animation: cta-glow 3s ease-in-out infinite;
}

.button.primary span,
.button.primary svg {
  position: relative;
  z-index: 1;
}

.button.primary svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #4d0808;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}

.hero .button.primary::after {
  content: "";
  position: absolute;
  inset: -28% -42%;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, .22) 45%,
    rgba(255, 255, 255, .78) 50%,
    rgba(255, 225, 0, .3) 55%,
    transparent 63%,
    transparent 100%
  );
  filter: blur(1px);
  transform: translate3d(-125%, 0, 0) skewX(-12deg);
  animation: hero-button-shine 3.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
  will-change: transform;
}

.button.primary:hover {
  background: #ffea3b;
  box-shadow: 0 28px 70px rgba(255, 225, 0, .42), 0 0 0 1px rgba(17, 17, 17, .04) inset;
  transform: translateY(-3px) scale(1.025);
  animation: none;
}

.button.primary:hover svg {
  transform: translateX(4px);
}

.button.ghost {
  display: none;
}

.hero .button.primary {
  min-width: clamp(360px, 31vw, 460px);
  font-size: 22px;
}


.section-heading {
  max-width: 860px;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.for-whom-section {
  width: 100%;
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(54px, 6vw, 84px);
  background: #f7f7f7;
  scroll-margin-top: 132px;
}

.for-whom-section .section-heading,
.audience-grid {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.for-whom-section .section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
}

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

.audience-card,
.bonus-card,
.reason-card,
.compare-card,
.pricing-card,
.timeline-item,
.faq-list details,
.facts article,
.inside-copy {
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(220px, 280px) 1fr;
  gap: 32px;
  align-items: center;
  min-height: 0;
  overflow: hidden;
  padding: 32px 40px;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.audience-card:hover {
  border-color: #c81e1e;
  box-shadow: 0 18px 45px rgba(200, 30, 30, .1);
  transform: translateY(-4px);
}

.bonus-card:hover,
.reason-card:hover,
.timeline-item:hover {
  border-color: rgba(220, 38, 38, .32);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.audience-card::after {
  display: none;
}

.audience-card span {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  margin: 0;
  color: #c81e1e;
  opacity: 1;
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1;
  font-weight: 800;
  z-index: 1;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0;
  color: #111111;
  font-size: clamp(26px, 2.3vw, 32px);
  line-height: 1.1;
  font-weight: 700;
}

.audience-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  color: #666666;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
}

.audience-card p:first-of-type {
  grid-column: 3;
  margin: 0;
}

.audience-card p + p {
  grid-column: 3;
  margin: 10px 0 0;
  padding-top: 0;
}

.audience-card strong {
  color: #c81e1e;
  font-weight: 700;
}

.reason-card p,
.timeline-item p,
.author-copy p,
.inside-copy p,
.pricing-card p,
.faq-list p {
  color: var(--muted);
}

.bonuses {
  width: 100%;
  padding-top: clamp(44px, 5vw, 72px);
  background: #f8f8f8;
}

.bonuses .section-heading {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-bottom: clamp(80px, 7vw, 100px);
  margin-left: auto;
}

.bonus-layout {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(18px, 2vw, 26px);
  align-items: flex-end;
  justify-content: center;
}

.bonus-card {
  min-height: 420px;
  padding: clamp(34px, 3.5vw, 48px);
  border-color: rgba(0, 0, 0, .08);
  border-radius: 32px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.bonus-card:hover {
  border-color: #c81e1e;
  box-shadow: 0 18px 45px rgba(200, 30, 30, .1);
  transform: translateY(-6px);
}

.bonus-card-featured {
  position: relative;
  order: 2;
  flex: 0 1 430px;
  height: 820px;
  min-height: 820px;
  padding-top: clamp(70px, 6vw, 90px);
  border-color: rgba(200, 30, 30, .34);
  box-shadow: 0 28px 80px rgba(200, 30, 30, .12);
  overflow: visible;
  text-align: center;
}

.bonus-card-side {
  display: flex;
  flex: 1 1 0;
  height: 680px;
  min-height: 680px;
  max-width: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bonus-card-left {
  order: 1;
}

.bonus-card-right {
  order: 3;
}

.bonus-card-side .bonus-icon {
  flex: 0 0 auto;
}

.bonus-card-side h3 {
  min-height: 72px;
}

.bonus-card-side ul,
.bonus-card-side ol {
  margin-top: auto;
}

.bonus-card-featured::before {
  display: none;
}

.bonus-card-featured p,
.bonus-card-featured li {
  color: #666666;
  text-align: left;
}

.bonus-card-featured .bonus-badge {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: #c81e1e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.bonus-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: #c81e1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-icon-ai {
  width: 104px;
  height: 104px;
  margin: 0 auto 28px;
}

.bonus-card h3 {
  color: #111111;
}

.bonus-card-featured h3 {
  margin-bottom: 30px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .98;
}

.bonus-card ul,
.bonus-card ol {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: #666666;
}

.line-icon,
.mini-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border: 1px solid rgba(179, 139, 0, .28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--red) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--red) 47% 53%, transparent 53%);
}

.line-icon.alt {
  background:
    radial-gradient(circle at center, var(--red) 0 4px, transparent 5px),
    conic-gradient(from 90deg, transparent 0 25%, rgba(220, 38, 38, .24) 0 50%, transparent 0 75%, rgba(220, 38, 38, .24) 0);
}

.ai-mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--red-soft);
  color: var(--red);
  font-weight: 800;
  font-size: 20px;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(28px, 3vw, 36px);
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #ffffff;
  color: var(--graphite);
}

.dark-band .section-heading,
.dark-band .reason-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.reason-card {
  min-height: 270px;
  padding: clamp(30px, 3vw, 44px);
  background: #ffffff;
  border-color: rgba(17, 17, 17, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.reason-card:hover {
  border-color: #c81e1e;
  box-shadow: 0 18px 45px rgba(200, 30, 30, .1);
  transform: translateY(-6px);
}

.reason-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  color: #c81e1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease, color .25s ease;
}

.reason-card:hover .reason-icon {
  color: #9f1717;
  transform: scale(1.08);
}

.reason-card h3 {
  color: #111111;
  font-weight: 800;
}

.reason-card p {
  color: #666666;
  line-height: 1.5;
}

.mini-icon {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--red) 45% 55%, transparent 55%),
    linear-gradient(45deg, transparent 0 45%, var(--red) 45% 55%, transparent 55%);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, 96px) minmax(0, 1fr);
  grid-template-rows: auto 90px auto 90px auto;
  column-gap: 48px;
  row-gap: 24px;
  overflow: visible;
}

#program .section-heading {
  margin-bottom: clamp(26px, 3vw, 42px);
}

#program {
  overflow: visible;
  padding-top: clamp(28px, 3vw, 36px);
}

.timeline::before {
  display: none;
}

.timeline-item {
  position: relative;
  min-height: 390px;
  padding: clamp(32px, 3.4vw, 48px);
  background: #ffffff;
  border-color: rgba(17, 17, 17, .08);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  z-index: 2;
}

.timeline-item::before {
  content: var(--day);
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(200, 30, 30, .1);
  font-size: clamp(86px, 8vw, 128px);
  line-height: .8;
  font-weight: 800;
  pointer-events: none;
}

.timeline-item:hover {
  border-color: #c81e1e;
  box-shadow: 0 18px 45px rgba(200, 30, 30, .1);
  transform: translateY(-6px);
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 14px;
  color: #c81e1e;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 800;
}

.timeline-item h3,
.timeline-item p {
  position: relative;
  z-index: 1;
}

.timeline-item h3 {
  color: #111111;
}

.timeline-item strong {
  color: #c81e1e;
}

.timeline-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.timeline-item:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

.timeline-item:nth-child(7) {
  grid-column: 1;
  grid-row: 3;
}

.timeline-item:nth-child(9) {
  grid-column: 1;
  grid-row: 5;
}

.route-arrow {
  display: block;
  width: 90px;
  height: 36px;
  color: #c81e1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-cell {
  display: flex;
  align-self: center;
  justify-self: center;
  min-width: 80px;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.route-arrow-down {
  width: 36px;
  height: 90px;
}

.arrow-cell-1 {
  grid-column: 2;
  grid-row: 1;
}

.arrow-cell-2 {
  grid-column: 3;
  grid-row: 2;
}

.arrow-cell-3 {
  grid-column: 2;
  grid-row: 3;
}

.arrow-cell-4 {
  grid-column: 1;
  grid-row: 4;
}

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

.transformation {
  padding-top: clamp(72px, 7vw, 88px);
}

.transformation-card {
  display: grid;
  justify-items: center;
  overflow: visible;
  padding: clamp(48px, 6vw, 72px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 40px;
  background: #f7f7f7;
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.transformation-card[data-state="after"] {
  border-color: rgba(255, 214, 0, .42);
  background: #fffdf2;
  box-shadow: 0 24px 70px rgba(255, 214, 0, .12);
}

.transformation-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.transformation-toggle button {
  min-height: 42px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #666666;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.transformation-toggle button.is-active {
  background: #c81e1e;
  color: #ffffff;
}

.transformation-card[data-state="after"] .transformation-toggle button.is-active {
  background: #ffd600;
  color: #111111;
}

.transformation-toggle svg {
  display: block;
  width: 42px;
  height: 16px;
  fill: none;
  stroke: #c81e1e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transformation-content {
  display: grid;
  width: min(100%, 900px);
  justify-items: center;
  padding-top: clamp(34px, 5vw, 56px);
  text-align: center;
  transition: opacity .45s ease, transform .45s ease;
}

.transformation-card.is-transitioning .transformation-content {
  opacity: 0;
  transform: translateY(14px);
}

.transformation-badge {
  width: fit-content;
  margin: 0 0 28px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(200, 30, 30, .1);
  color: #c81e1e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.transformation-card[data-state="after"] .transformation-badge {
  background: #ffd600;
  color: #111111;
}

.transformation-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #c81e1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.transformation-card[data-state="after"] .transformation-icon {
  opacity: 1;
  transform: translateY(0);
}

.transformation-title {
  max-width: 900px;
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 800;
}

.transformation-text {
  max-width: 900px;
  margin: 0;
  color: #444444;
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.28;
  font-weight: 700;
}

.transformation-action {
  width: fit-content;
  min-height: 62px;
  justify-self: center;
  margin-top: clamp(34px, 5vw, 52px);
  padding: 18px 30px;
  border: 0;
  border-radius: 999px;
  background: #c81e1e;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.transformation-card[data-state="after"] .transformation-action {
  background: #ffd600;
  color: #111111;
}

.transformation-action:hover {
  background: #a91515;
  box-shadow: 0 18px 45px rgba(200, 30, 30, .2);
  transform: translateY(-3px);
}

.transformation-card[data-state="after"] .transformation-action:hover {
  background: #ffdf24;
  box-shadow: 0 18px 45px rgba(255, 214, 0, .24);
}

.pricing-section {
  width: min(1240px, calc(100% - 40px));
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(64px, 5vw, 72px);
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(340px, .42fr) minmax(0, .58fr);
  gap: clamp(34px, 4vw, 54px) clamp(56px, 7vw, 104px);
  align-items: start;
  padding: clamp(58px, 6vw, 88px);
  border: 1px solid #eaeaea;
  border-radius: 40px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, .06);
  background: #ffffff;
}

.pricing-card::after {
  display: none;
}

.price-summary {
  position: sticky;
  top: 120px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(clamp(-68px, -4.45vw, -52px));
}

.price-summary h2 {
  margin-bottom: clamp(46px, 6vw, 72px);
  color: #111111;
  font-size: clamp(62px, 7vw, 104px);
  line-height: 1;
}

.old-price {
  width: fit-content;
  margin: 0 0 24px;
  color: #9a9a9a;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #D72626;
}

.price-value {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: baseline;
  gap: .18em;
  margin: 0;
  color: #D72626;
  font-size: clamp(92px, 9.6vw, 146px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-section .price-current,
.pricing-section .price-main,
.pricing-section .price-value {
  color: #D72626 !important;
  background: none !important;
  -webkit-text-fill-color: #D72626 !important;
}

.saving-badge {
  width: fit-content;
  margin: 28px 0 0;
  padding: 13px 22px;
  border: 1px solid #D72626;
  border-radius: 999px;
  background: #ffffff;
  color: #D72626;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: .02em;
}

.price-note {
  max-width: 320px;
  margin: 42px 0 0;
  color: #111111;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}

.price-details {
  display: grid;
  gap: 18px;
}

.price-benefits {
  display: grid;
  gap: 18px;
}

.price-benefit {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: center;
  height: 148px;
  min-width: 0;
  overflow: hidden;
  padding: 28px 42px 28px 34px;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, .025);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.price-benefit:hover {
  border-color: #D72626;
  box-shadow: 0 18px 42px rgba(17, 17, 17, .08);
  transform: translateY(-4px);
}

.price-benefit-icon {
  width: 58px;
  height: 58px;
  color: #D72626;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-benefit > div {
  min-width: 0;
  overflow: hidden;
}

.price-benefit h3 {
  margin-bottom: 6px;
  color: #111111;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
  overflow-wrap: break-word;
}

.price-benefit p {
  margin: 0;
  color: #666666;
  overflow: hidden;
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.38;
  overflow-wrap: break-word;
}

.price-checklist {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 30px 34px;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  background: #ffffff;
  color: #111111;
  list-style: none;
}

.price-checklist li {
  position: relative;
  padding-left: 38px;
  color: #111111;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.45;
}

.price-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #D72626;
  font-weight: 900;
}

.price-actions {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: clamp(14px, 2vw, 24px);
}

.price-cta {
  display: inline-flex;
  width: min(100%, 480px);
  height: 72px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  background: var(--cash-yellow);
  color: #111111;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 34px rgba(255, 214, 0, .22);
  transform-origin: center;
}

.price-cta:hover {
  background: #ffdf24;
  box-shadow: 0 24px 58px rgba(255, 214, 0, .38);
  transform: scale(1.04);
}

.price-access-note {
  margin: 0;
  color: #8a8a8a;
  font-size: 14px;
  text-align: center;
}

.inside-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 112px;
  scroll-margin-top: 140px;
  overflow: visible;
}

.inside-wrapper {
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr) minmax(0, .9fr);
  gap: 40px;
  align-items: start;
  margin: 0 auto;
}

.inside-left,
.inside-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  padding: clamp(28px, 2.8vw, 36px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
}

.inside-left h2,
.inside-copy h2 {
  max-width: 420px;
  margin-bottom: 24px;
  color: #111111;
  font-size: clamp(50px, 3.8vw, 58px);
  line-height: .95;
}

.inside-left p,
.inside-copy p {
  max-width: 420px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.inside-left .button,
.inside-copy .button {
  width: fit-content;
  display: inline-flex;
  min-height: 64px;
  align-self: flex-start;
  margin: 32px 0 0;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.inside-features {
  display: grid;
  min-width: 0;
  gap: 20px;
  overflow: visible;
}

.inside-features h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}

.inside-cards,
.inside-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.inside-card,
.inside-feature-card {
  display: grid;
  min-height: 170px;
  min-width: 0;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid #ececec;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.inside-card:hover,
.inside-feature-card:hover {
  border-color: #D72626;
  box-shadow: 0 16px 36px rgba(17, 17, 17, .06);
  transform: translateY(-4px);
}

.inside-feature-icon {
  width: 50px;
  height: 50px;
  color: #D72626;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inside-card h4,
.inside-feature-card h4 {
  margin: 0;
  color: #111111;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.16;
  font-weight: 800;
}

.inside-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

.inside-perks div {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  color: #444444;
  font-size: 14px;
  font-weight: 700;
}

.inside-perks svg {
  width: 22px;
  height: 22px;
  color: #D72626;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.poster-wrap,
.inside-media {
  display: flex;
  min-width: 0;
  min-height: 550px;
  height: 550px;
  margin-top: clamp(52px, 4.8vw, 62px);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #C0211F;
  box-shadow: 0 24px 64px rgba(17, 17, 17, .12);
}

.poster-wrap img,
.inside-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.author-section {
  width: min(1240px, calc(100% - 40px));
  display: block;
  padding-top: clamp(48px, 5vw, 72px);
  scroll-margin-top: 140px;
}

.author-profile {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.author-media {
  position: relative;
  display: flex;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 32px;
  background: #FFE100;
  box-shadow: 0 24px 70px rgba(17, 17, 17, .08);
}

.author-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 32px;
}

.author-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.author-copy h2 {
  max-width: 720px;
  color: #111111;
  font-size: clamp(44px, 5vw, 64px);
}

.author-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #666666;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
}

.author-copy > h3 {
  margin-top: 14px;
  margin-bottom: 4px;
  color: #111111;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  margin: 8px 0 0;
}

.facts article {
  display: grid;
  align-content: center;
  margin: 0;
  min-width: 0;
  min-height: 164px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
}

.facts article:nth-child(2) {
  grid-row: auto;
}

.facts span {
  display: block;
  margin-bottom: 10px;
  color: #D72626;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: .9;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.facts strong {
  display: block;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.25;
}

.facts p {
  display: none;
}

.founder-story {
  position: relative;
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(17, 17, 17, .04);
}

.founder-story h3 {
  margin-bottom: 22px;
  color: #111111;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
}

.founder-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.founder-timeline::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 18px;
  top: 42px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: #D91F26;
  transform: scaleX(0);
  transform-origin: left center;
}

.founder-timeline article {
  position: relative;
  display: block;
  min-height: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateY(14px);
}

.founder-timeline article::before {
  content: "";
  position: absolute;
  left: 66px;
  top: 37px;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #D91F26;
  box-shadow: 0 0 0 4px #ffffff;
}

.founder-timeline span {
  display: block;
  margin-bottom: 22px;
  color: #D91F26;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: .95;
  font-weight: 800;
  text-align: left;
}

.founder-timeline h4 {
  margin: 0 0 8px;
  color: #111111;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.15;
  font-weight: 800;
}

.founder-timeline p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.55;
}

.founder-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 26px;
}

.founder-note-grid article {
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 17, 17, .04);
}

.founder-note-grid h3 {
  margin-bottom: 14px;
  color: #111111;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
}

.founder-note-grid p {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.58;
}

.author-social-section {
  width: 100%;
  margin-top: 24px;
  padding-top: 0;
}

.author-social-section h2 {
  margin-bottom: 22px;
  color: #111111;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  text-align: center;
}

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

.author-social-card {
  display: inline-flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 28px;
  border: 1px solid #eaeaea;
  border-radius: 28px;
  background: #ffffff;
  color: #111111;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(17, 17, 17, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.author-social-card svg {
  width: 34px;
  height: 34px;
  color: #D91F26;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  transition: transform .25s ease;
}

.author-social-card:hover {
  border-color: #D91F26;
  color: #D91F26;
  box-shadow: 0 20px 46px rgba(217, 31, 38, .12);
  transform: translateY(-4px);
}

.author-social-card:hover svg {
  transform: scale(1.08);
}

.faq-section {
  width: min(980px, calc(100% - 40px));
  padding-top: clamp(30px, 3vw, 40px);
  padding-bottom: 80px;
  scroll-margin-top: 88px;
}

.faq-section .section-heading {
  margin-bottom: clamp(10px, 1.6vw, 16px);
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 17, 17, .02);
  transition: border-color .35s ease, box-shadow .35s ease, transform .25s ease;
}

.faq-list details:hover {
  box-shadow: 0 16px 42px rgba(17, 17, 17, .055);
  transform: translateY(-3px);
}

.faq-list details.is-open {
  border-color: #FFE100;
  box-shadow: 0 18px 48px rgba(255, 225, 0, .18);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 24px 92px 24px 34px;
  color: #171717;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.28;
  font-weight: 800;
  transition: color .3s ease;
}

.faq-list details.is-open summary {
  color: #111111;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FFF7CC;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.faq-list details.is-open summary::after {
  content: "-";
  background: #FFE100;
  color: #111111;
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 92px 0 34px;
  color: #3f3f3f;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .38s ease, padding .38s ease, opacity .3s ease, transform .38s ease;
}

.faq-list details.is-open p {
  max-height: var(--faq-answer-height, 260px);
  padding-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 48px clamp(20px, 4vw, 56px);
  background: var(--graphite);
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--white);
}

.site-footer a:not(.footer-studio-link) {
  color: rgba(255, 255, 255, .72);
}

.site-footer a:not(.footer-studio-link):hover {
  color: var(--cash-yellow);
}

.footer-made {
  display: inline-flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  color: rgba(255, 255, 255, .68);
}

.footer-studio-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #FFE100;
  color: #111111;
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(17, 17, 17, .03);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.footer-studio-link:hover {
  background: #ffea3b;
  color: #111111;
  box-shadow: 0 12px 28px rgba(255, 225, 0, .24);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cta-glow {
  0%,
  72%,
  100% {
    box-shadow: 0 18px 42px rgba(255, 225, 0, .22);
    transform: scale(1);
  }

  84% {
    box-shadow: 0 24px 58px rgba(255, 225, 0, .34);
    transform: scale(1.02);
  }
}

@keyframes hero-profit-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-button-shine {
  0%,
  58% {
    transform: translate3d(-125%, 0, 0) skewX(-12deg);
  }

  86%,
  100% {
    transform: translate3d(125%, 0, 0) skewX(-12deg);
  }
}

@keyframes hero-cta-note-pulse {
  0%,
  72%,
  100% {
    border-color: rgba(255, 225, 0, .48);
    box-shadow: 0 0 16px rgba(255, 225, 0, .14), 0 12px 28px rgba(0, 0, 0, .16);
    transform: scale(1);
  }

  84% {
    border-color: rgba(255, 225, 0, .7);
    box-shadow: 0 0 24px rgba(255, 225, 0, .22), 0 14px 32px rgba(0, 0, 0, .18);
    transform: scale(1.012);
  }
}

.header-cta,
.button.primary {
  backface-visibility: hidden;
}

[data-founder-timeline].timeline-animate .founder-timeline::before {
  animation: founder-line-x 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-founder-timeline].timeline-animate .founder-timeline article {
  animation: founder-step-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-founder-timeline].timeline-animate .founder-timeline article:nth-child(1) {
  animation-delay: 1s;
}

[data-founder-timeline].timeline-animate .founder-timeline article:nth-child(2) {
  animation-delay: 1.12s;
}

[data-founder-timeline].timeline-animate .founder-timeline article:nth-child(3) {
  animation-delay: 1.24s;
}

[data-founder-timeline].timeline-animate .founder-timeline article:nth-child(4) {
  animation-delay: 1.36s;
}

@keyframes founder-line-x {
  to {
    transform: scaleX(1);
  }
}

@keyframes founder-line-y {
  to {
    transform: scaleY(1);
  }
}

@keyframes founder-step-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .reveal,
  .reveal.show,
  .founder-timeline article {
    opacity: 1;
    transform: none;
  }

  .founder-timeline::before {
    transform: none;
  }

  .header-cta,
  .button.primary {
    animation: none;
  }

  .hero-profit-word::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero .button.primary::after {
    animation: none;
    opacity: 0;
  }

  .hero-cta-note-pill {
    animation: none;
  }

  .site-preloader {
    display: none;
    animation: none;
  }

  body.preloading {
    overflow: auto;
  }
}

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

  .top-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .audience-card {
    grid-template-columns: 86px minmax(190px, 240px) 1fr;
    gap: 24px;
    padding: 30px 32px;
  }

  .audience-card span {
    font-size: 58px;
  }

  .audience-card h3 {
    font-size: 26px;
  }

  .bonus-layout {
    flex-wrap: wrap;
    align-items: flex-end;
  }

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

  .bonus-card-featured {
    flex-basis: 100%;
    height: 680px;
    min-height: 680px;
  }

  .bonus-card-side {
    flex: 1 1 calc(50% - 13px);
    height: 560px;
    min-height: 560px;
    max-width: none;
  }

  .bonus-card-left,
  .bonus-card-right {
    margin-top: 0;
  }

  .author-profile,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .inside-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .inside-copy {
    min-height: 0;
  }

  .poster-wrap,
  .inside-media {
    min-height: 520px;
    height: auto;
    margin-top: 0;
  }

  .price-summary {
    position: static;
    left: auto;
    min-height: 0;
    justify-content: start;
    transform: none;
  }

  .author-media {
    position: relative;
    top: auto;
    min-height: 0;
    height: min(70vw, 680px) !important;
    align-self: start;
  }

  .author-media img {
    height: 100% !important;
    max-height: none;
  }

  .founder-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .founder-timeline::before {
    left: 94px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }

  [data-founder-timeline].timeline-animate .founder-timeline::before {
    animation-name: founder-line-y;
  }

  .founder-timeline article {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 34px;
    min-height: 58px;
  }

  .founder-timeline article::before {
    left: 87px;
    top: 10px;
  }

  .founder-timeline span {
    margin-bottom: 0;
    font-size: 28px;
    text-align: right;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 64px;
    grid-template-columns: auto 1fr;
    padding: 0 10px 0 14px;
  }

  .brand span {
    display: none;
  }

  .social-pill {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 11px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .top-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: rgba(18, 18, 18, .86);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .28);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-header.menu-open .top-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--cash-yellow);
  }

  .section,
  .bonuses,
  .pricing-section,
  .inside-section,
  .author-section,
  .faq-section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .author-section {
    padding-top: 48px;
  }

  .inside-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 34px;
    padding-bottom: 82px;
    scroll-margin-top: 120px;
  }

  .inside-wrapper {
    width: min(100% - 28px, 1280px);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

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

  .inside-card,
  .inside-feature-card {
    min-height: 142px;
    padding: 24px;
  }

  .poster-wrap,
  .inside-media {
    min-height: 420px;
    height: auto;
    margin-top: 0;
  }

  .inside-media img {
    height: auto;
    max-height: 520px;
  }

  .inside-copy h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .inside-copy .button {
    width: 100%;
    align-self: stretch;
  }

  .founder-note-grid,
  .author-social-grid {
    grid-template-columns: 1fr;
  }

  .founder-timeline span {
    font-size: 28px;
  }

  .author-social-card {
    min-height: 92px;
    border-radius: 24px;
  }

  .author-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .author-media {
    height: auto !important;
    border-radius: 28px;
  }

  .author-media img {
    height: auto !important;
    min-height: 0;
    max-height: none;
    border-radius: 22px;
  }

  .founder-story {
    margin-top: 24px;
  }

  .founder-note-grid,
  .author-social-section {
    margin-top: 24px;
  }

  .bonuses {
    width: 100%;
    padding-top: 42px;
  }

  .bonuses .section-heading,
  .bonus-layout {
    width: min(100% - 28px, 1180px);
  }

  .for-whom-section {
    width: 100%;
  }

  .dark-band {
    padding-bottom: 28px;
  }

  #program {
    padding-top: 28px;
  }

  .for-whom-section .section-heading,
  .audience-grid {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    width: 100%;
    min-height: 92svh;
    padding: 118px 14px 52px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .58) 50%, rgba(0, 0, 0, .22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .44) 0%, rgba(0, 0, 0, .1) 34%, rgba(0, 0, 0, .24) 100%),
      url("assets/author-red.png") 64% center / auto 108% no-repeat;
  }

  h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.02;
  }

  .cta-row {
    display: grid;
    max-width: 360px;
  }

  .button {
    width: 100%;
    min-height: 72px;
    padding: 22px 32px;
  }

  .reason-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
  }

  .arrow-cell {
    display: none;
  }

  .timeline-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-item {
    min-height: 0;
  }

  .transformation-card {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .transformation-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .transformation-toggle button {
    flex: 1;
    padding-inline: 12px;
  }

  .transformation-content {
    padding-top: 28px;
  }

  .transformation-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .transformation-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .transformation-text {
    font-size: clamp(19px, 6vw, 26px);
    line-height: 1.32;
  }

  .transformation-action {
    width: 100%;
    margin-top: 24px;
  }

  .bonus-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .bonus-card {
    width: 100%;
    min-height: 0;
    padding: 32px 28px;
  }

  .bonus-card-featured,
  .bonus-card-side {
    flex-basis: auto;
    height: auto;
    min-height: 0;
    max-width: none;
    margin-top: 0;
  }

  .bonus-card-side h3 {
    min-height: 0;
  }

  .bonus-card-featured {
    padding-top: 58px;
  }

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

  .audience-card {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    min-height: 0;
    padding: 30px 28px;
  }

  .audience-card p:first-of-type,
  .audience-card p + p {
    grid-column: 1;
  }

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

  .bonus-card-featured {
    min-height: 0;
  }

  .audience-card span {
    font-size: 52px;
  }

  .audience-card h3 {
    max-width: none;
    font-size: 26px;
  }

  .timeline-item > span {
    margin-bottom: 28px;
    font-size: 58px;
  }

  .pricing-card {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .price-summary h2 {
    font-size: clamp(46px, 13vw, 68px);
    margin-bottom: 34px;
  }

  .old-price {
    margin-bottom: 18px;
    font-size: clamp(24px, 7vw, 34px);
  }

  .price-value {
    font-size: clamp(58px, 18vw, 104px);
    line-height: 1;
  }

  .price-note {
    max-width: none;
    margin-top: 28px;
    font-size: 18px;
  }

  .saving-badge {
    margin-top: 24px;
    font-size: 16px;
  }

  .price-benefit {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    height: 190px;
    min-height: 190px;
    padding: 20px 24px 20px 20px;
  }

  .price-benefit-icon {
    width: 42px;
    height: 42px;
  }

  .price-benefit h3 {
    font-size: 21px;
  }

  .price-benefit p {
    font-size: 14px;
    line-height: 1.4;
  }

  .price-cta {
    width: 100%;
  }

  .price-checklist {
    padding: 20px;
  }

  .price-access-note {
    max-width: 320px;
  }

  .faq-section {
    width: min(100% - 28px, 980px);
    padding-top: 34px;
    padding-bottom: 80px;
    scroll-margin-top: 86px;
  }

  .faq-section .section-heading {
    margin-bottom: 14px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-list details {
    border-radius: 24px;
  }

  .faq-list summary {
    min-height: 90px;
    padding: 22px 80px 22px 24px;
    font-size: 17px;
  }

  .faq-list summary::after {
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .faq-list details p {
    padding-right: 24px;
    padding-left: 24px;
    font-size: 15px;
  }

  .faq-list details.is-open p {
    padding-bottom: 26px;
  }

  .author-media img {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .preloader-logo {
    width: 78px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding: 0 8px 0 12px;
    border-radius: 999px;
  }

  .site-header.is-scrolled {
    height: 58px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    min-width: 0;
    gap: 10px;
  }

  .header-actions .social-pill {
    --social-shift: -4px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-color: rgba(255, 225, 0, .28);
    background: rgba(255, 255, 255, .06);
    color: var(--cash-yellow);
    transition: transform .25s ease, opacity .25s ease, border-color .25s ease, background .25s ease;
  }

  .header-actions .social-pill svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
  }

  .header-actions .social-pill:hover,
  .header-actions .social-pill:active {
    opacity: .9;
    border-color: rgba(255, 225, 0, .48);
    background: rgba(255, 225, 0, .1);
    box-shadow: 0 0 20px rgba(255, 225, 0, .22);
    transform: translateX(var(--social-shift)) scale(1.1);
  }

  .header-cta {
    width: min(148px, 42vw);
    min-height: 40px;
    padding: 10px 10px;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: #D72626;
    transition: transform .25s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:last-child {
    transform: translateY(7px);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.6);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(0) rotate(-45deg);
  }

  .top-nav {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 8px);
    display: grid;
    width: min(88vw, 340px);
    height: auto;
    gap: 18px;
    justify-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(15, 15, 15, .92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity .28s ease, transform .28s ease;
  }

  .site-header.menu-open .top-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-link {
    width: 100%;
    min-height: 0;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 600;
    text-align: center;
    transition: color .25s ease, transform .25s ease;
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link.active {
    color: var(--cash-yellow);
    transform: scale(1.04);
  }

  .section,
  .bonuses,
  .for-whom-section,
  .pricing-section,
  .inside-section,
  .author-section,
  .faq-section {
    width: min(100% - 28px, 1180px);
    padding-top: 56px;
    padding-bottom: 56px;
    scroll-margin-top: 90px;
  }

  section[id],
  .section {
    scroll-margin-top: 90px;
  }

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

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(35px, 10.4vw, 46px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.6vw, 44px);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: clamp(21px, 6.2vw, 28px);
    line-height: 1.12;
  }

  .hero {
    width: 100%;
    min-height: min(780px, 92svh);
    align-items: end;
    padding: 180px 14px 72px;
    scroll-margin-top: 90px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .58) 50%, rgba(0, 0, 0, .22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .44) 0%, rgba(0, 0, 0, .1) 34%, rgba(0, 0, 0, .24) 100%),
      url("assets/author-red.png") 82% center / auto 108% no-repeat;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-offer {
    max-width: 100%;
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.45;
  }

  .hero-trust-badges {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-trust-badge {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-trust-badge svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .cta-row {
    width: 100%;
    max-width: 340px;
    gap: 10px;
    margin-top: 34px;
  }

  .hero-cta-note {
    flex-basis: 100%;
    margin-top: 8px;
  }

  .hero-cta-note-pill {
    max-width: 100%;
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-cta-note-pill svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .button {
    width: 100%;
    min-height: 60px;
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
  }

  .hero .button.primary {
    min-width: 0;
    width: 100%;
    font-size: 17px;
  }

  .audience-grid,
  .reason-grid,
  .price-benefits,
  .inside-cards,
  .inside-feature-grid,
  .facts,
  .founder-note-grid,
  .author-social-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-card,
  .bonus-card,
  .reason-card,
  .timeline-item,
  .transformation-card,
  .pricing-card,
  .price-benefit,
  .price-checklist,
  .inside-copy,
  .inside-card,
  .inside-feature-card,
  .facts article,
  .founder-story,
  .founder-note-grid article,
  .author-social-card,
  .faq-list details {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 24px;
    border-radius: 24px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .audience-card span {
    font-size: 38px;
    line-height: 1;
  }

  .audience-card h3 {
    max-width: 100%;
    font-size: 24px;
  }

  .audience-card p,
  .audience-card p:first-of-type,
  .audience-card p + p {
    grid-column: 1;
    margin: 0;
    font-size: 16px;
  }

  .bonuses {
    width: 100%;
    padding-top: 56px;
  }

  .bonuses .section-heading,
  .bonus-layout,
  .for-whom-section .section-heading,
  .audience-grid,
  .dark-band .section-heading,
  .dark-band .reason-grid {
    width: min(100% - 28px, 1180px);
  }

  .bonuses .section-heading {
    margin-bottom: 36px;
  }

  .bonus-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .bonus-card-featured {
    order: 1;
    flex-basis: auto;
    padding-top: 54px;
  }

  .bonus-card-left {
    order: 2;
  }

  .bonus-card-right {
    order: 3;
  }

  .bonus-card-side {
    flex: none;
    max-width: none;
  }

  .bonus-card-side h3 {
    min-height: 0;
  }

  .bonus-card-featured h3 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .bonus-icon-ai {
    width: 82px;
    height: 82px;
  }

  #program {
    padding-top: 56px;
  }

  .timeline {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .arrow-cell {
    display: none;
  }

  .timeline-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .timeline-item > span {
    margin-bottom: 18px;
    font-size: 40px;
  }

  .timeline-item::before {
    right: 18px;
    top: 18px;
    font-size: 68px;
  }

  .timeline-item h3 {
    padding-right: 42px;
    font-size: 23px;
  }

  .timeline-item p {
    font-size: 15px;
    line-height: 1.55;
  }

  .transformation {
    padding-top: 56px;
  }

  .transformation-card {
    padding: 24px;
  }

  .transformation-toggle {
    width: 100%;
    gap: 8px;
    padding: 6px;
  }

  .transformation-toggle button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .transformation-toggle span {
    flex: 0 0 auto;
  }

  .transformation-toggle svg {
    width: 30px;
  }

  .transformation-content {
    padding-top: 24px;
  }

  .transformation-badge {
    margin-bottom: 18px;
    text-align: center;
  }

  .transformation-title {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .transformation-text {
    font-size: clamp(19px, 5.6vw, 24px);
    line-height: 1.28;
  }

  .transformation-action {
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    padding: 15px 18px;
    text-align: center;
  }

  .pricing-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .price-summary {
    position: static;
    min-height: 0;
    transform: none;
  }

  .price-summary h2 {
    margin-bottom: 26px;
    font-size: clamp(38px, 11vw, 46px);
  }

  .old-price {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .price-value {
    width: max-content;
    max-width: 100%;
    font-size: clamp(56px, 17vw, 72px);
    line-height: 1;
    white-space: nowrap;
  }

  .saving-badge {
    margin-top: 18px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .price-note {
    max-width: none;
    margin-top: 22px;
    font-size: 17px;
  }

  .price-benefit {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
  }

  .price-benefit h3 {
    font-size: 20px;
  }

  .price-benefit p {
    font-size: 14px;
    line-height: 1.45;
  }

  .price-checklist {
    padding: 20px;
  }

  .price-checklist li {
    padding-left: 30px;
    font-size: 15px;
  }

  .price-cta {
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 18px 22px;
    white-space: normal;
  }

  .inside-section {
    width: 100%;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .inside-wrapper {
    width: min(100% - 28px, 1280px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inside-copy {
    gap: 0;
  }

  .inside-left h2,
  .inside-copy h2 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .inside-left p,
  .inside-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .inside-left .button,
  .inside-copy .button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    white-space: normal;
  }

  .inside-features {
    gap: 16px;
  }

  .inside-features h3 {
    font-size: clamp(24px, 7vw, 32px);
    text-align: left;
  }

  .inside-card,
  .inside-feature-card {
    min-height: 126px;
    gap: 14px;
  }

  .inside-perks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
  }

  .inside-perks div {
    min-height: 34px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .poster-wrap,
  .inside-media {
    width: min(100%, 560px);
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: 0;
    border-radius: 24px;
    justify-self: center;
  }

  .inside-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .author-section {
    padding-top: 56px;
  }

  .author-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .author-copy {
    display: contents;
  }

  .author-copy h2 {
    order: 1;
    margin-bottom: 0;
    font-size: clamp(32px, 9.2vw, 42px);
  }

  .author-copy > p:not(.eyebrow) {
    order: 2;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .author-media {
    order: 3;
    width: min(100%, 560px);
    height: auto !important;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background: #FFE100;
    justify-self: center;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .author-media img {
    width: 100%;
    height: 100% !important;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    border-radius: 24px;
  }

  .author-copy > h3 {
    order: 4;
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 22px;
  }

  .facts {
    order: 5;
  }

  .facts article {
    min-height: 0;
  }

  .facts span {
    font-size: clamp(38px, 11vw, 48px);
  }

  .founder-story {
    margin-top: 18px;
  }

  .founder-story h3 {
    margin-bottom: 20px;
    font-size: clamp(26px, 7.4vw, 34px);
  }

  .founder-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-timeline::before {
    left: 61px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .founder-timeline article {
    grid-template-columns: 54px 1fr;
    gap: 22px;
    min-height: 0;
    padding: 0;
  }

  .founder-timeline article::before {
    left: 56px;
    top: 8px;
  }

  .founder-timeline span {
    margin: 0;
    font-size: 22px;
    text-align: right;
  }

  .founder-timeline h4 {
    font-size: 19px;
  }

  .founder-timeline p {
    font-size: 14px;
  }

  .founder-note-grid,
  .author-social-section {
    margin-top: 18px;
  }

  .author-social-section h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 8vw, 36px);
  }

  .author-social-card {
    min-height: 76px;
    justify-content: flex-start;
    padding: 22px 24px;
    font-size: 22px;
  }

  .faq-section {
    width: min(100% - 28px, 980px);
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .faq-section .section-heading {
    margin-bottom: 18px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-list summary {
    min-height: 74px;
    padding: 18px 66px 18px 20px;
    font-size: 16px;
    line-height: 1.28;
  }

  .faq-list summary::after {
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .faq-list details p {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
  }

  .site-footer {
    gap: 14px;
    padding: 34px 20px;
    border-radius: 0;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-made {
    display: grid;
    gap: 8px;
  }

  .footer-studio-link {
    width: fit-content;
    min-height: 36px;
    padding: 8px 14px;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 6px;
    padding-right: 7px;
    padding-left: 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .social-pill {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .header-actions .social-pill svg {
    width: 16px;
    height: 16px;
  }

  .header-cta {
    width: 104px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}
