:root {
  --blue: #2f63ee;
  --blue-dark: #194cc5;
  --ink: #090b10;
  --muted: #5f6673;
  --line: #e4e8f1;
  --surface: #ffffff;
  --soft-blue: #f2f6ff;
  --soft-red: #ffe1e1;
  --red: #c43333;
  --green: #17a95a;
  --gold: #d8a84f;
  --shadow: 0 24px 70px rgba(34, 52, 90, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(47, 99, 238, 0.08), transparent 32%),
    linear-gradient(180deg, #f5f8ff 0, #fff 420px);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(228, 232, 241, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  display: block;
  background: #050505;
}

.brand-mark::before {
  left: 3px;
  bottom: 4px;
  width: 10px;
  height: 28px;
  transform: skewX(-13deg);
}

.brand-mark::after {
  left: 5px;
  bottom: 2px;
  width: 25px;
  height: 8px;
  transform: skewX(-13deg);
}

.brand-mark span {
  right: 2px;
  bottom: 4px;
  width: 8px;
  height: 15px;
  opacity: 0.18;
  transform: skewX(-13deg);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #323946;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 32px rgba(47, 99, 238, 0.24);
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 22px 40px rgba(47, 99, 238, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-inline: 24px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.text-link::after {
  content: "->";
  margin-left: 8px;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 83px);
  padding: 32px 0 56px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.alert-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--soft-red);
  color: var(--red);
  font-size: 15px;
  font-weight: 650;
}

.alert-pill::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: 64px;
  font-weight: 900;
}

.hero h1 {
  color: var(--ink);
}

.hero h1 span {
  color: var(--blue);
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  color: #f7bd13;
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 8px 16px rgba(247, 189, 19, 0.22);
}

.bad-review-face {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff5b4f, #cc2f2f);
  box-shadow: 0 8px 16px rgba(196, 51, 51, 0.2);
}

.bad-review-face::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5b1111;
  box-shadow: 13px 0 0 #5b1111;
}

.bad-review-face::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 8px;
  width: 16px;
  height: 9px;
  border-top: 4px solid #5b1111;
  border-radius: 50% 50% 0 0;
}

.hero-lede {
  max-width: 1040px;
  margin: 24px auto 0;
  color: #202633;
  font-size: 20px;
  line-height: 1.35;
}

.hero-subheadline {
  max-width: 760px;
  margin-top: 16px;
  font-size: 24px;
  font-weight: 850;
}

.hero-subheadline span {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-row span,
.offer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #252b36;
  font-weight: 700;
}

.trust-row span::before,
.offer-badges span::before,
.clean-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 169, 90, 0.12);
}

.hero-panel {
  display: grid;
  gap: 20px;
  width: min(1040px, 100%);
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(228, 232, 241, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  text-align: left;
}

.video-frame {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #e9efff;
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(5, 11, 25, 0.06), rgba(5, 11, 25, 0.58));
  color: #fff;
  text-align: center;
}

.video-overlay p {
  max-width: 420px;
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(10, 20, 45, 0.26);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--blue);
}

.vsl-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vsl-points p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f7f9ff;
  color: #39404d;
  font-weight: 650;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 38px 16px;
  background: #fff;
  text-align: center;
}

.stat strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.stat span {
  color: #202633;
  font-weight: 650;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
  padding: 96px 0;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.revenue-section {
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 84px 0;
}

.revenue-section .section-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.revenue-section .section-copy p {
  max-width: 760px;
  margin-inline: auto;
}

.section-copy h2,
.section-heading h2,
.offer-copy h2,
.proof-copy h2,
.risk-intro h2,
.final-cta h2,
.thank-you-block h1 {
  font-size: 42px;
  font-weight: 900;
}

.section-copy p,
.section-heading p,
.offer-copy p,
.proof-copy p,
.risk-intro p {
  color: var(--muted);
  font-size: 18px;
}

.section-copy p:last-child,
.proof-copy p:last-child {
  margin-bottom: 0;
}

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

.revenue-section .insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(780px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.insight-grid article,
.process-card,
.score-card,
.faq-grid details,
.thank-you-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(34, 52, 90, 0.08);
}

.insight-grid article {
  padding: 24px;
}

.revenue-section .insight-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 0;
  padding: 28px 34px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.revenue-section .insight-grid article:last-child {
  border-right: 0;
}

.insight-grid span,
.process-card span,
.thank-you-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ecf2ff;
  color: var(--blue);
  font-weight: 900;
}

.revenue-section .insight-grid span {
  width: auto;
  height: auto;
  justify-content: start;
  margin-bottom: 14px;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0;
}

.insight-grid h3,
.process-card h3,
.next-steps h3,
.site-footer h3 {
  font-size: 20px;
}

.revenue-section .insight-grid h3 {
  max-width: 320px;
  font-size: 21px;
  line-height: 1.15;
}

.insight-grid p,
.process-card p,
.score-card p,
.faq-grid p,
.thank-you-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.revenue-section .insight-grid p {
  max-width: 340px;
  margin-top: 14px;
}

.blue-band {
  background: linear-gradient(135deg, #f0f5ff, #fff);
  border-block: 1px solid var(--line);
}

.mechanism-visual {
  position: relative;
  min-height: 390px;
}

.rating-card {
  position: absolute;
  width: min(360px, 80%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(34, 52, 90, 0.18);
}

.rating-card span {
  color: var(--muted);
  font-weight: 800;
}

.rating-card strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 58px;
  line-height: 1;
}

.rating-card.before {
  top: 20px;
  left: 0;
  transform: rotate(-3deg);
}

.rating-card.after {
  right: 0;
  bottom: 20px;
  transform: rotate(3deg);
}

.review-bars {
  display: grid;
  gap: 11px;
}

.review-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
}

.review-bars.danger i {
  background: #ff5a5a;
}

.review-bars.success i {
  background: #1bb96b;
}

.review-bars i:nth-child(1) {
  width: 92%;
}

.review-bars i:nth-child(2) {
  width: 78%;
}

.review-bars i:nth-child(3) {
  width: 62%;
}

.review-bars i:nth-child(4) {
  width: 42%;
}

.story-section,
.proof-section .section-shell,
.offer-section,
.faq-section {
  padding: 96px 0;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(47, 99, 238, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 90px),
    #070a11;
  color: #fff;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, transparent, rgba(47, 99, 238, 0.16), transparent);
}

.process-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0;
  transform: skewX(-12deg);
}

.process-section.is-active::after {
  animation: processSweep 1.45s ease-out 0.35s both;
}

.process-shell {
  position: relative;
  z-index: 1;
}

.process-header {
  display: block;
  margin-bottom: 52px;
}

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

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

.process-section .section-heading.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.97);
}

.process-section.is-active .section-heading {
  animation: processHeadingIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-section .eyebrow {
  color: #8fb0ff;
}

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

.process-section .section-heading p {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(216, 168, 79, 0.24), rgba(47, 99, 238, 0.72), rgba(216, 168, 79, 0.24));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 220ms ease 360ms, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) 360ms;
}

.process-section.is-active .process-grid::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-card {
  position: relative;
  min-height: 292px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.process-card.reveal {
  opacity: 0;
  transform: translateY(54px) scale(0.94);
}

.process-section.is-active .process-card {
  animation: processCardPop 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-section.is-active .process-card:nth-child(1) {
  animation-delay: 220ms;
}

.process-section.is-active .process-card:nth-child(2) {
  animation-delay: 360ms;
}

.process-section.is-active .process-card:nth-child(3) {
  animation-delay: 500ms;
}

.process-section.is-active .process-card:nth-child(4) {
  animation-delay: 640ms;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 620ms ease 760ms;
}

.process-section.is-active .process-card::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.105);
}

.process-card span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(47, 99, 238, 0.16);
}

.process-card span::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(47, 99, 238, 0.65);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
}

.process-section.is-active .process-card span::after {
  animation: processPulse 1500ms ease-out 760ms both;
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes processHeadingIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes processCardPop {
  0% {
    opacity: 0;
    transform: translateY(54px) scale(0.94);
  }
  70% {
    opacity: 1;
    transform: translateY(-7px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes processPulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  35% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes processSweep {
  0% {
    opacity: 0;
    left: -30%;
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 105%;
  }
}

.risk-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--line);
}

.risk-section::before {
  content: "";
  position: absolute;
  top: 118px;
  left: 50%;
  width: min(880px, calc(100% - 64px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 99, 238, 0.28), transparent);
  transform: translateX(-50%);
}

.risk-intro {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.risk-intro h2 {
  max-width: 780px;
  margin: 0 auto;
}

.risk-intro p {
  max-width: 780px;
  margin: 18px auto 0;
  color: #202633;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  align-items: start;
}

.risk-item {
  display: grid;
  justify-items: center;
  text-align: center;
}

.risk-icon {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  border: 1px solid rgba(228, 232, 241, 0.95);
  border-radius: 50%;
  background:
    linear-gradient(180deg, #fff, #f7f9ff);
  box-shadow:
    0 22px 44px rgba(34, 52, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.risk-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-item:hover .risk-icon {
  transform: translateY(-6px);
  box-shadow:
    0 28px 58px rgba(34, 52, 90, 0.2),
    0 0 0 10px rgba(47, 99, 238, 0.06);
}

.risk-item h3 {
  max-width: 260px;
  font-size: 22px;
  line-height: 1.18;
}

.risk-item p {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--muted);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.quote-panel {
  padding: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 24px 70px rgba(9, 11, 16, 0.2);
}

.quote-panel p {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.25;
}

.proof-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.clean-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202633;
  font-weight: 700;
}

.clean-list li::before {
  flex: 0 0 8px;
}

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

.score-card {
  padding: 26px;
}

.score-card span {
  color: var(--muted);
  font-weight: 800;
}

.score-card strong {
  display: block;
  margin: 10px 0;
  color: var(--blue);
  font-size: 56px;
  line-height: 1;
}

.score-card.highlighted {
  border-color: rgba(47, 99, 238, 0.42);
  background: #f5f8ff;
}

.mini-report {
  grid-column: 1 / -1;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.mini-report p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 16px 18px;
  background: #fff;
}

.mini-report span {
  color: var(--blue);
  font-weight: 850;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 0.66fr);
  gap: 36px;
  align-items: stretch;
}

.offer-copy {
  display: grid;
  align-content: center;
  padding: 36px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 99, 238, 0.2), transparent 42%),
    #080b12;
  color: #fff;
  box-shadow: 0 24px 70px rgba(9, 11, 16, 0.18);
}

.offer-copy .eyebrow {
  color: #8fb0ff;
}

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

.offer-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.offer-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.offer-panel div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.offer-panel strong {
  color: #fff;
  font-size: 18px;
}

.offer-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.next-steps {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(34, 52, 90, 0.08);
}

.next-steps ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #202633;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-header {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.form-header h2 {
  font-size: 26px;
}

.form-header p,
.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.lead-form label:not(.checkbox-row) {
  display: grid;
  gap: 8px;
  color: #202633;
  font-size: 14px;
  font-weight: 800;
}

.lead-form label[for="reviews"],
.lead-form label[for="profile"],
.lead-form label[for="comments"],
.checkbox-row,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid #d8deeb;
  border-radius: 8px;
  background: #fbfcff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px 14px;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 99, 238, 0.12);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9ff;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

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

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f0f5ff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 750;
}

.faq-section {
  border-top: 1px solid var(--line);
}

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

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.faq-grid summary::marker {
  color: var(--blue);
}

.final-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--blue), #0b2e95);
  color: #fff;
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.final-cta .button {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 0.75fr 1fr;
  gap: 50px;
  padding: 54px 6vw;
  background: #05070b;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after,
.footer-brand .brand-mark span {
  background: #fff;
}

.thank-you-page {
  min-height: 100vh;
  background: #f5f8ff;
}

.thank-you-hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 83px);
  padding: 64px 0;
}

.thank-you-block {
  width: min(920px, 100%);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-block > p {
  max-width: 710px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0;
  text-align: left;
}

.thank-you-grid article {
  padding: 24px;
}

.thank-you-grid h2 {
  font-size: 20px;
}

.centered-actions {
  justify-content: center;
}

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

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .story-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .offer-copy {
    padding: 28px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  .section-copy h2,
  .section-heading h2,
  .offer-copy h2,
  .proof-copy h2,
  .risk-intro h2,
  .final-cta h2,
  .thank-you-block h1 {
    font-size: 36px;
  }

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

  .process-grid::before {
    display: none;
  }

  .insight-grid,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .revenue-section .section-copy {
    text-align: left;
  }

  .revenue-section .section-copy p {
    margin-inline: 0;
  }

  .revenue-section .insight-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .revenue-section .insight-grid article:last-child {
    border-bottom: 0;
  }

  .mechanism-visual {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    font-size: 20px;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    min-height: 0;
    padding: 48px 0 44px;
    gap: 36px;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    background: none;
    color: var(--ink);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-rating {
    font-size: 28px;
  }

  .bad-review-face {
    width: 28px;
    height: 28px;
  }

  .bad-review-face::before {
    top: 8px;
    left: 7px;
    width: 4px;
    height: 4px;
    box-shadow: 10px 0 0 #5b1111;
  }

  .bad-review-face::after {
    left: 8px;
    bottom: 7px;
    width: 13px;
    height: 7px;
    border-top-width: 3px;
  }

  .hero-subheadline {
    font-size: 20px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .text-link,
  .final-cta .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-panel,
  .lead-form,
  .thank-you-block {
    padding: 18px;
  }

  .offer-copy {
    padding: 28px 20px;
  }

  .video-frame,
  .video-frame img {
    min-height: 250px;
  }

  .vsl-points {
    grid-template-columns: 1fr;
  }

  .video-overlay p {
    font-size: 22px;
  }

  .stats-strip,
  .process-grid,
  .proof-board,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 72px 0;
  }

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

  .stat {
    padding: 30px 16px;
  }

  .split-section,
  .story-section,
  .proof-section .section-shell,
  .offer-section,
  .faq-section {
    padding: 68px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .offer-copy h2,
  .proof-copy h2,
  .risk-intro h2,
  .final-cta h2,
  .thank-you-block h1 {
    font-size: 31px;
  }

  .risk-section {
    padding: 72px 0;
  }

  .risk-section::before {
    display: none;
  }

  .risk-intro {
    margin-bottom: 42px;
    text-align: left;
  }

  .risk-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .risk-item {
    justify-items: start;
    grid-template-columns: 92px 1fr;
    column-gap: 18px;
    align-items: center;
    text-align: left;
  }

  .risk-icon {
    width: 92px;
    height: 92px;
    margin: 0;
  }

  .risk-icon svg {
    width: 40px;
    height: 40px;
  }

  .risk-item h3,
  .risk-item p {
    max-width: none;
  }

  .risk-item p {
    grid-column: 2;
    margin-top: -22px;
  }

  .mechanism-visual {
    min-height: 410px;
  }

  .rating-card {
    width: 86%;
  }

  .rating-card.before,
  .rating-card.after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .rating-card.before {
    top: 0;
  }

  .rating-card.after {
    bottom: 0;
  }

  .quote-panel p {
    font-size: 23px;
  }

  .mini-report p {
    display: grid;
  }

  .site-footer {
    padding: 44px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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