:root {
  --navy: #1e415a;
  --navy-deep: #10222f;
  --navy-darkest: #091720;
  --gold: #c0ab2d;
  --gold-bright: #d4af36;
  --gold-dark: #9d8a1f;
  --ink: #151515;
  --charcoal: #2f2f2f;
  --muted: #61707a;
  --paper: #ffffff;
  --soft: #f4f6f7;
  --line: #dce2e6;
  --success: #38b989;
  --danger: #c45454;
  --shadow: 0 24px 70px rgba(9, 23, 32, 0.14);
  --radius: 22px;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body::selection {
  color: #fff;
  background: var(--navy);
}

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

button,
summary {
  font: inherit;
}

button {
  border: 0;
  touch-action: manipulation;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  font-weight: 900;
}

h3 {
  color: var(--navy-deep);
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, 100%);
}

.promo-ribbon {
  position: relative;
  z-index: 50;
  min-height: 52px;
  color: #fff;
  background: var(--gold);
}

.promo-ribbon__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 7px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promo-ribbon__deadline {
  opacity: 0.9;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.countdown span {
  min-width: 40px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: center;
  column-gap: 3px;
  padding: 5px 7px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 6px;
}

.countdown b {
  font-size: 0.95rem;
}

.countdown small {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.header-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.header-trust__divider {
  width: 1px;
  height: 18px;
  background: var(--line);
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-deep);
}

.header-contact svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--gold-dark);
}

.header-contact span,
.header-contact strong,
.header-contact small {
  display: block;
}

.header-contact strong {
  font-size: 0.75rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.header-contact small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.header-contact:hover strong,
.header-contact:focus-visible strong {
  color: var(--gold-dark);
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(9, 23, 32, 0.16);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(9, 23, 32, 0.22);
}

.button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

.button--gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
}

.button--gold:hover:not(:disabled) {
  background: linear-gradient(135deg, #dfbd47, #a38f22);
}

.button--small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button--large {
  min-height: 72px;
  padding-inline: 34px;
  font-size: 1.05rem;
}

.button--full {
  width: 100%;
}

.button__arrow {
  font-size: 1.55em;
  line-height: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 25%, rgba(42, 92, 123, 0.6), transparent 38%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 58%, var(--navy-darkest) 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  background: var(--gold);
}

.hero-glow--one {
  top: -200px;
  left: -150px;
}

.hero-glow--two {
  right: -220px;
  bottom: 120px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas: "intro vsl";
  align-items: center;
  column-gap: 48px;
}

.hero__grid > *,
.comparison > *,
.roadmap > *,
.offer-section__intro > *,
.inclusion-grid > *,
.tool-library > *,
.video-grid > *,
.founder > *,
.pricing-layout > *,
.fit-grid > *,
.faq-layout > * {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow__line {
  width: 42px;
  height: 2px;
  background: var(--gold-bright);
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.85rem, 4.15vw, 4.05rem);
  line-height: 0.98;
  font-weight: 900;
}

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

.hero h1 .headline-accent--inline {
  display: inline;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.48;
}

.hero__lead-break {
  display: block;
}

.hero__benefits,
.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__benefits {
  display: grid;
  gap: 12px;
}

.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.hero__benefits li > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: var(--gold-bright);
  border-radius: 50%;
  font-size: 0.78rem;
}

.hero__actions {
  margin-top: 20px;
}

.microcopy {
  max-width: 560px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  line-height: 1.45;
}

.microcopy__line {
  display: block;
}

.hero__guarantee {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}

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

.hero__guarantee strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.94rem;
}

.hero__guarantee span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.guarantee-badge {
  flex: 0 0 auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.guarantee-badge--hero {
  width: 82px;
}

.hero__visual {
  position: relative;
  align-self: start;
  display: grid;
  place-items: stretch;
  padding-top: 42px;
}

.offer-visual {
  position: relative;
  width: 100%;
  padding: 26px 16px 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 35px 80px rgba(0, 0, 0, 0.28);
}

.offer-visual img {
  width: 100%;
  border-radius: 12px;
}

.offer-visual__badge {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 34px);
  padding: 9px 15px;
  color: var(--navy-deep);
  background: var(--gold-bright);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.offer-visual__price {
  width: calc(100% - 60px);
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 16px;
  padding: 16px 20px;
  color: var(--navy-deep);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.offer-visual__price span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.offer-visual__price strong {
  grid-row: span 2;
  font-size: 2.2rem;
  line-height: 1;
}

.offer-visual__price small {
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-strip {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip > div {
  min-height: 104px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.as-seen {
  position: relative;
  padding: 44px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.as-seen__inc-badge {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  margin: -94px auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(9, 23, 32, 0.18));
}

.section-label--center {
  text-align: center;
}

.as-seen .section-label {
  margin-bottom: 10px;
}

.as-seen__logos {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 52px);
}

.as-seen__logos img {
  max-width: 112px;
  max-height: 32px;
  width: auto;
  height: auto;
  filter: grayscale(1);
  opacity: 0.72;
}

.hero-details {
  padding: 56px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 10%, rgba(42, 92, 123, 0.42), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--navy-deep) 58%, var(--navy-darkest));
}

.hero-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 54px;
}

.hero-details .hero__conversion {
  grid-area: auto;
}

.hero-details .offer-visual {
  width: min(100%, 650px);
  justify-self: end;
}

.section {
  padding: 105px 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(192, 171, 45, 0.13), transparent 35%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.section-intro {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.18rem;
}

.question-stack {
  display: grid;
  gap: 12px;
}

.question-stack > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
}

.question-stack span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.question-stack p {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.pull-quote {
  position: relative;
  margin-top: 42px;
  padding: 36px 40px 32px 68px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 14px;
}

.pull-quote__mark {
  position: absolute;
  top: 16px;
  left: 22px;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.pull-quote p {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.45;
  font-weight: 700;
}

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

.centered-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.centered-heading--light h2 {
  color: #fff;
}

.centered-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.section-label--gold {
  color: var(--gold-bright);
}

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

.comparison-card {
  padding: 42px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-card--muted {
  background: var(--soft);
  border: 1px solid var(--line);
}

.comparison-card--navy {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.comparison-card__tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  color: var(--gold-dark);
  background: rgba(192, 171, 45, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.comparison-card--navy .comparison-card__tag {
  color: var(--navy-deep);
  background: var(--gold-bright);
}

.comparison-card h3 {
  max-width: 480px;
  margin-bottom: 25px;
  font-size: 1.85rem;
  line-height: 1.12;
}

.comparison-card--navy h3 {
  color: #fff;
}

.icon-list {
  display: grid;
  gap: 13px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.48;
}

.icon-list li > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.icon-list--x li > span {
  background: var(--danger);
}

.roadmap {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  counter-reset: roadmap;
}

.roadmap li {
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.roadmap li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.roadmap li > span {
  margin-bottom: 38px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.roadmap h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.32rem;
}

.roadmap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
  line-height: 1.55;
}

.offer-section__intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
  margin-bottom: 48px;
}

.offer-section__intro > * {
  min-width: 0;
}

.offer-section__intro img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.inclusion-card {
  position: relative;
  min-height: 290px;
  padding: 36px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(9, 23, 32, 0.08);
}

.inclusion-card::after {
  position: absolute;
  right: -45px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(192, 171, 45, 0.09);
  border-radius: 50%;
}

.inclusion-card__number {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.inclusion-card h3 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: 1.65rem;
  line-height: 1.15;
}

.inclusion-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.inclusion-card__value {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.tool-library {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  padding: 42px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 18px;
}

.tool-library h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.12;
}

.tool-library__items {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 9px;
}

.tool-library__items span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-cta {
  margin-top: 42px;
  text-align: center;
}

.section-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(9, 23, 32, 0.1);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy-deep);
}

.video-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.video-card strong {
  color: var(--navy-deep);
}

.video-card span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.founder {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 54px;
}

.founder__image-wrap {
  position: relative;
}

.founder__image-wrap > img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 32%;
  border: 10px solid #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.founder__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(16, 34, 47, 0.9);
  border-radius: 9px;
  backdrop-filter: blur(10px);
}

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

.founder__caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.founder__copy > p:not(.section-label) {
  color: var(--muted);
}

.founder__stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder__stats > div {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}

.founder__stats > div:last-child {
  border-right: 0;
}

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

.founder__stats strong {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 1.55rem;
}

.founder__stats span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.pricing-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(192, 171, 45, 0.12), transparent 28%),
    linear-gradient(150deg, var(--navy), var(--navy-deep));
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
  align-items: center;
  gap: 70px;
}

.pricing-copy h2 {
  color: #fff;
}

.pricing-copy > p:not(.section-label) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.7);
}

.price-contrast {
  max-width: 610px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.price-contrast > div {
  display: grid;
  gap: 7px;
  padding: 22px;
}

.price-contrast > div + div {
  color: var(--navy-deep);
  background: var(--gold-bright);
}

.price-contrast span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-contrast s,
.price-contrast strong {
  font-size: 1.75rem;
}

.pricing-copy__list {
  gap: 11px;
}

.checkout-card {
  position: relative;
  padding: 0 32px 30px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--gold-bright);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.33);
  text-align: center;
}

.checkout-card__urgency {
  margin: 0 -32px 20px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  color: #fff;
  background: #c94d3f;
  border-radius: 15px 15px 0 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-card > img {
  width: calc(100% + 20px);
  margin: -5px -10px 4px;
  border-radius: 9px;
}

.checkout-card__overline {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.checkout-card h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.checkout-card__price {
  color: var(--navy-deep);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.checkout-card__payment,
.checkout-card__plan,
.checkout-card__financing,
.checkout-card__secure {
  margin: 0;
}

.checkout-card__payment {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-card__or {
  margin: 18px 0 13px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: #9aa4aa;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-card__or span {
  height: 1px;
  background: var(--line);
}

.checkout-card__plan {
  color: var(--navy-deep);
  font-size: 1rem;
}

.checkout-card__financing {
  margin: 7px 0 20px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.checkout-card__secure {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
}

.checkout-card__guarantee {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: #fbf8e9;
  border: 1px solid #ede3ad;
  border-radius: 9px;
  text-align: left;
}

.guarantee-badge--checkout {
  width: 72px;
}

.checkout-card__guarantee p {
  margin: 0;
  line-height: 1.35;
}

.checkout-card__guarantee strong,
.checkout-card__guarantee span {
  display: block;
}

.checkout-card__guarantee strong {
  font-size: 0.82rem;
}

.checkout-card__guarantee span {
  color: var(--muted);
  font-size: 0.72rem;
}

.launch-note {
  margin: 16px 0 0;
  padding: 11px;
  color: #7d620f;
  background: #fff7d0;
  border: 1px solid #eadb91;
  border-radius: 7px;
  font-size: 0.76rem;
  line-height: 1.4;
}

.guarantee-section {
  padding: 75px 0;
  background: #fbf8e9;
  border-top: 1px solid #ede3ad;
  border-bottom: 1px solid #ede3ad;
}

.guarantee-section__inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 45px;
}

.guarantee-badge--feature {
  width: 190px;
}

.guarantee-section h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.guarantee-section p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #625b3c;
}

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

.fit-card {
  padding: 38px;
  border-radius: 16px;
}

.fit-card--yes {
  background: #eff9f5;
  border: 1px solid #cce9dd;
}

.fit-card--no {
  background: #fcf2f1;
  border: 1px solid #efd7d4;
}

.fit-card h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 70px;
}

.faq-layout__heading {
  position: sticky;
  top: 40px;
}

.faq-layout__heading > p:last-child {
  color: var(--muted);
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -3px 22px 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 171, 45, 0.2), transparent 42%),
    var(--navy-deep);
}

.final-cta::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--gold);
}

.final-cta__inner {
  max-width: 900px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.section-label) {
  max-width: 740px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta__micro {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.site-footer {
  padding: 48px 0 90px;
  color: #5d6971;
  background: #fff;
  text-align: center;
}

.site-footer img {
  width: 150px;
  margin: 0 auto 24px;
}

.site-footer p {
  max-width: 920px;
  margin: 0 auto 22px;
  font-size: 0.72rem;
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer small {
  font-size: 0.72rem;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(16, 34, 47, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-buy-bar.is-hidden,
.mobile-buy-bar.is-checkout-visible {
  pointer-events: none;
  opacity: 0;
  transform: translateY(105%);
}

.promo-ribbon[data-state="closed"] {
  background: var(--navy);
}

.promo-ribbon[data-state="closed"] .live-dot {
  animation: none;
  opacity: 0.45;
}

.mobile-buy-bar > div {
  color: #fff;
}

.mobile-buy-bar strong,
.mobile-buy-bar span {
  display: block;
}

.mobile-buy-bar strong {
  font-size: 1.2rem;
}

.mobile-buy-bar span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
}

.mobile-buy-bar .button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

[hidden] {
  display: none !important;
}

.hero__visual {
  align-content: start;
  gap: 14px;
}

.hero__copy,
.hero__visual {
  display: contents;
}

.hero__intro {
  grid-area: intro;
}

.hero__conversion {
  grid-area: conversion;
}

.sales-vsl {
  grid-area: vsl;
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--gold-bright);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.video-embed,
.video-embed iframe,
.video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-embed {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 20, 29, 0.92), rgba(30, 65, 90, 0.72)),
    url("/assets/acquisition-method-blueprint-edition-stack.jpg") center / cover;
}

.video-embed iframe,
.video-embed video {
  display: block;
  border: 0;
  object-fit: cover;
}

.sales-vsl__placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  color: #fff;
  text-align: center;
}

.sales-vsl__play {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  padding-left: 4px;
  color: var(--navy-deep);
  background: var(--gold-bright);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  font-size: 1.45rem;
}

.sales-vsl__placeholder strong {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  line-height: 1.15;
}

.sales-vsl__placeholder small {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.sales-vsl__caption {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  color: var(--navy-deep);
}

.sales-vsl__caption span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.sales-vsl__caption strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.closed-offer {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 52px);
  overflow: hidden;
  padding: 82px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(192, 171, 45, 0.2), transparent 38%),
    linear-gradient(145deg, var(--navy), var(--navy-deep) 58%, var(--navy-darkest));
}

.closed-offer::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.closed-offer__glow {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: 50%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(140px);
  opacity: 0.12;
  transform: translateX(-50%);
}

.closed-offer__inner {
  max-width: 780px;
  text-align: center;
}

.closed-offer__logo {
  width: 190px;
  margin: 0 auto 38px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 9px;
}

.closed-offer h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
}

.closed-offer__lead {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.waitlist-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--gold-bright);
  border-radius: 18px;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
  text-align: left;
}

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

.waitlist-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8dd;
  border-radius: 7px;
  font: inherit;
}

.waitlist-form input:focus {
  outline: 3px solid rgba(192, 171, 45, 0.24);
  border-color: var(--gold-dark);
}

.waitlist-form__consent {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
}

.waitlist-form__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.waitlist-form__consent > span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.7rem !important;
  line-height: 1.45;
  font-weight: 500 !important;
}

.waitlist-form__status {
  min-height: 20px;
  margin: 13px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.waitlist-form__status[data-state="success"] {
  color: #137153;
}

.waitlist-form__status[data-state="error"] {
  color: #9c3029;
}

.offer-is-closed .site-header,
.offer-is-closed .mobile-buy-bar {
  display: none !important;
}

.upgrade-page {
  background: var(--soft);
}

.upgrade-header > span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.upgrade-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0 82px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 171, 45, 0.18), transparent 40%),
    linear-gradient(145deg, var(--navy), var(--navy-deep) 62%, var(--navy-darkest));
}

.upgrade-hero__glow {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: 50%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(150px);
  opacity: 0.1;
  transform: translateX(-50%);
}

.upgrade-hero__inner {
  max-width: 900px;
  text-align: center;
}

.purchase-confirmed {
  width: fit-content;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: #d9ffef;
  background: rgba(56, 185, 137, 0.15);
  border: 1px solid rgba(56, 185, 137, 0.45);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.purchase-confirmed span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: #68d9ad;
  border-radius: 50%;
}

.upgrade-hero h1 {
  max-width: 880px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
}

.upgrade-hero__inner > p:not(.section-label) {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.upgrade-vsl {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  background: #07141d;
  border: 3px solid var(--gold-bright);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.upgrade-vsl__fallback {
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(rgba(9, 23, 32, 0.78), rgba(9, 23, 32, 0.9)),
    url("/assets/acquisition-method-blueprint-edition-stack.jpg") center / cover;
}

.upgrade-vsl__play {
  width: 72px;
  height: 72px;
  margin: 0 auto 5px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  color: var(--navy-deep);
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.upgrade-vsl__fallback strong {
  font-size: 1.3rem;
}

.upgrade-vsl__fallback small {
  color: rgba(255, 255, 255, 0.62);
}

.upgrade-credit {
  max-width: 760px;
  margin: 24px auto 0;
  display: grid;
  gap: 5px;
  padding: 18px 22px;
  color: var(--navy-deep);
  background: var(--gold-bright);
  border-radius: 10px;
}

.upgrade-credit span {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.upgrade-credit strong {
  font-size: 1rem;
  line-height: 1.4;
}

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

.upgrade-card {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.upgrade-card--featured {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  border-color: var(--gold-bright);
}

.upgrade-card__eyebrow {
  display: block;
  margin-bottom: 19px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.upgrade-card--featured .upgrade-card__eyebrow {
  color: var(--gold-bright);
}

.upgrade-card h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 1.12;
}

.upgrade-card--featured h3 {
  color: #fff;
}

.upgrade-card > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.upgrade-card--featured > p {
  color: rgba(255, 255, 255, 0.68);
}

.booking-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 171, 45, 0.14), transparent 40%),
    var(--navy-deep);
}

.booking-section__inner {
  max-width: 1020px;
}

.booking-section .centered-heading h2 {
  color: #fff;
}

.booking-section .centered-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.calendar-shell {
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--gold-bright);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.calendar-shell iframe {
  width: 100%;
  min-height: 930px;
  display: block;
  border: 0;
}

.calendar-shell > p {
  margin: 0;
  padding: 44px;
  color: var(--navy-deep);
  text-align: center;
}

.booking-disclaimer {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.62;
    transform: scale(0.86);
  }
}

@media (max-width: 1040px) {
  .header-trust {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

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

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .pricing-layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .promo-ribbon__deadline {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header .button {
    display: none;
  }

  .as-seen__logos {
    flex-wrap: wrap;
    gap: 22px 36px;
    padding-inline: 16px;
  }

  .as-seen__logos img {
    max-width: 105px;
    max-height: 30px;
  }

  .header-actions {
    gap: 0;
  }

  .brand-logo {
    width: 165px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__grid,
  .offer-section__intro,
  .founder,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-areas:
      "intro"
      "vsl";
    gap: 32px;
  }

  .hero__copy,
  .hero__visual {
    display: contents;
  }

  .hero__intro,
  .hero__conversion {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero__lead,
  .microcopy {
    margin-inline: auto;
  }

  .hero__benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero__guarantee {
    justify-content: center;
    text-align: left;
  }

  .sales-vsl {
    grid-area: vsl;
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero-details__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-details .offer-visual {
    width: min(100%, 610px);
    justify-self: center;
  }

  .comparison,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .offer-section__intro {
    text-align: center;
  }

  .offer-section__intro img {
    max-width: 650px;
    margin-inline: auto;
  }

  .tool-library {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .founder {
    max-width: 720px;
    margin-inline: auto;
    gap: 38px;
  }

  .founder__image-wrap {
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-copy {
    text-align: center;
  }

  .pricing-copy > p:not(.section-label),
  .price-contrast,
  .pricing-copy__list {
    margin-inline: auto;
  }

  .pricing-copy__list {
    width: fit-content;
    text-align: left;
  }

  .checkout-card {
    max-width: 500px;
    margin-inline: auto;
  }

  .pricing-layout {
    gap: 54px;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-layout__heading {
    position: static;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .promo-ribbon__inner {
    min-height: 48px;
    gap: 8px;
  }

  .promo-ribbon__inner > strong {
    display: none;
  }

  .countdown span {
    min-width: 38px;
  }

  .site-header__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .header-contact {
    gap: 7px;
  }

  .header-contact svg {
    width: 20px;
    height: 20px;
  }

  .header-contact strong {
    font-size: 0.7rem;
  }

  .header-contact small {
    font-size: 0.67rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .hero__lead {
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .hero__benefits {
    gap: 10px;
  }

  .hero__benefits li {
    font-size: 0.9rem;
  }

  .button--large {
    width: 100%;
    min-height: 68px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .offer-visual {
    padding-inline: 8px;
  }

  .offer-visual__price {
    width: calc(100% - 26px);
    padding: 14px;
  }

  .offer-visual__price strong {
    font-size: 1.75rem;
  }

  .proof-strip {
    margin-top: 52px;
  }

  .proof-strip > div {
    min-height: 110px;
    padding: 15px 10px;
  }

  .proof-strip span {
    font-size: 0.65rem;
  }

  .as-seen {
    padding: 64px 0 28px;
  }

  .as-seen__inc-badge {
    width: 96px;
    height: 96px;
    margin-top: -96px;
    margin-bottom: 22px;
  }

  .as-seen__logos {
    flex-wrap: wrap;
    gap: 22px 28px;
  }

  .as-seen__logos img {
    max-width: 90px;
    max-height: 28px;
  }

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .question-stack > div {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 17px;
  }

  .pull-quote {
    padding: 54px 23px 26px;
  }

  .pull-quote__mark {
    left: 22px;
  }

  .pull-quote p {
    font-size: 1.12rem;
  }

  .comparison-card,
  .inclusion-card,
  .fit-card {
    padding: 28px 24px;
  }

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

  .roadmap li {
    min-height: auto;
  }

  .roadmap li > span {
    margin-bottom: 22px;
  }

  .inclusion-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .tool-library {
    padding: 30px 22px;
  }

  .tool-library__items span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .video-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .founder__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

  .founder__stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .founder__stats > div:last-child {
    border-bottom: 0;
  }

  .price-contrast {
    grid-template-columns: 1fr;
  }

  .price-contrast > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .checkout-card {
    padding-inline: 20px;
  }

  .checkout-card__urgency {
    margin-inline: -20px;
  }

  .checkout-card__price {
    font-size: 3.35rem;
  }

  .guarantee-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .guarantee-badge--feature {
    width: 155px;
    margin-inline: auto;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 16px 17px;
  }

  .faq-list details p {
    margin-inline: 17px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .site-footer {
    padding-bottom: 105px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .mobile-buy-bar {
    display: flex;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 148px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .header-contact {
    gap: 6px;
  }

  .header-contact small {
    display: none;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.69rem;
  }

  .eyebrow__line {
    width: 28px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.7vw, 3rem);
  }

  .hero__guarantee {
    flex-direction: column;
    text-align: center;
  }

  .offer-visual__price {
    column-gap: 8px;
  }

  .offer-visual__price strong {
    font-size: 1.55rem;
  }

  .final-cta__micro {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 820px) {
  .waitlist-form__fields,
  .upgrade-grid {
    grid-template-columns: 1fr;
  }

  .upgrade-header {
    justify-content: center;
  }

  .upgrade-header > span {
    display: none;
  }
}

@media (max-width: 640px) {
  .closed-offer {
    min-height: calc(100vh - 48px);
    padding: 58px 0 72px;
  }

  .closed-offer__logo {
    width: 165px;
    margin-bottom: 30px;
  }

  .closed-offer h1,
  .upgrade-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .closed-offer__lead,
  .upgrade-hero__inner > p:not(.section-label) {
    font-size: 1rem;
  }

  .waitlist-form {
    padding: 22px 18px;
  }

  .waitlist-form .button--large {
    min-height: 62px;
  }

  .upgrade-hero {
    padding: 58px 0 66px;
  }

  .upgrade-vsl__play {
    width: 58px;
    height: 58px;
  }

  .upgrade-vsl__fallback {
    padding: 20px;
  }

  .upgrade-vsl__fallback strong {
    font-size: 1rem;
  }

  .upgrade-credit {
    padding: 16px;
  }

  .upgrade-card {
    padding: 30px 24px;
  }

  .calendar-shell iframe {
    min-height: 980px;
  }
}

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