:root {
  --ink: #111318;
  --muted: #5f6673;
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #1067d8;
  --blue-dark: #083a87;
  --silver: #d8dde5;
  --steel: #8a94a6;
  --danger: #d8292f;
  --amber: #f2a51a;
  --green: #16975b;
  --shadow: 0 20px 50px rgba(13, 24, 46, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand {
  color: #2e83ff;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0;
}

.topbar nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 8, 13, 0.98), rgba(13, 18, 28, 0.92) 45%, rgba(245, 247, 252, 0.18)),
    radial-gradient(circle at 88% 12%, rgba(16, 103, 216, 0.38), transparent 34%),
    #07090d;
}

.hero-inner,
.section-inner,
.gate-panel,
.thanks-panel {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: 52px 0 68px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .kicker,
.prelanding .kicker,
.thanks-page .kicker {
  color: #6fa7ff;
}

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

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.section .lead,
.section p {
  color: var(--muted);
}

.hero-actions,
.deal-strip,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.cta,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--danger);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 14px 28px rgba(216, 41, 47, 0.26);
  cursor: pointer;
}

.cta-large {
  min-height: 62px;
  padding: 18px 28px;
  font-size: 18px;
}

.ghost-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.trust-row {
  margin-top: 24px;
}

.trust-row span,
.deal-strip span {
  padding: 8px 11px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  align-self: end;
}

.hero-media img {
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.36));
}

.price-badge {
  position: absolute;
  right: 0;
  bottom: 7%;
  display: grid;
  gap: 4px;
  width: min(230px, 46%);
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.price-badge span {
  color: var(--danger);
  font-size: 12px;
  font-weight: 900;
}

.price-badge strong {
  font-size: clamp(21px, 3vw, 31px);
  line-height: 1;
}

.price-badge em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.warning-band {
  color: var(--white);
  background: var(--danger);
}

.warning-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
}

.warning-grid strong {
  font-size: clamp(21px, 2.2vw, 28px);
}

.warning-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.video-band {
  padding: clamp(28px, 5vw, 48px) 0;
  background: var(--white);
}

.gif-video {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 8px;
  background: #050609;
  box-shadow: var(--shadow);
}

.how-video {
  margin: 0 0 24px;
  max-height: 540px;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--paper);
}

.section-contrast {
  color: var(--white);
  background: #111318;
}

.section-contrast p {
  color: rgba(255, 255, 255, 0.72);
}

.section-contrast .steps article {
  color: var(--ink);
}

.section-contrast .steps article p {
  color: var(--muted);
}

.split,
.offer-grid,
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split > div:first-child p {
  font-size: 18px;
}

.benefit-list,
.steps,
.reviews,
.thanks-steps {
  display: grid;
  gap: 16px;
}

.benefit-list article,
.steps article,
.review,
.thanks-steps article,
.offer-card,
.form-shell {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(17, 19, 24, 0.08);
  box-shadow: 0 12px 30px rgba(13, 24, 46, 0.07);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 24px;
}

.benefit-list span,
.steps span,
.thanks-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.benefit-list p {
  grid-column: 2;
  margin: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 14px 0 0;
  font-size: 18px;
}

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

.steps article {
  padding: 26px;
}

.steps h3 {
  margin-top: 22px;
}

.steps p {
  margin: 0;
}

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

.review {
  overflow: hidden;
}

.review > div:last-child {
  padding: 22px;
}

.review p {
  margin: 0;
}

.review-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  background: #050609;
}

.private-photo {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 19, 24, 0.82), rgba(16, 103, 216, 0.62)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 8px, rgba(255, 255, 255, 0.04) 8px 16px);
}

.private-photo span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.private-photo strong {
  font-size: 28px;
  line-height: 1;
}

.centered {
  text-align: center;
}

.offer-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 10, 16, 0.96), rgba(17, 19, 24, 0.91)),
    linear-gradient(90deg, var(--blue-dark), #111318);
}

.offer-section p {
  color: rgba(255, 255, 255, 0.75);
}

.offer-card {
  justify-self: end;
  width: min(390px, 100%);
  display: grid;
  gap: 12px;
  padding: 28px;
  color: var(--ink);
}

.old-price {
  width: max-content;
  color: var(--muted);
  font-size: 28px;
  font-weight: 900;
  text-decoration: line-through;
}

.offer-card strong {
  font-size: clamp(64px, 9vw, 96px);
  line-height: 0.9;
}

.offer-card em {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.countdown-box {
  width: max-content;
  min-width: 205px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  margin-top: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--amber);
}

.countdown-box.compact {
  margin: 8px 0;
  border-color: var(--danger);
}

.countdown-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-box strong {
  color: var(--danger);
  font-size: 34px;
  line-height: 1;
}

.order-section {
  background: var(--white);
}

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

.checklist li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.form-shell {
  overflow: hidden;
  padding: 10px;
}

.form-shell iframe {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: var(--paper);
}

.ghost-button {
  width: 100%;
  margin-top: 12px;
  background: var(--ink);
  box-shadow: none;
}

.legal-section {
  padding: 34px 0;
  background: #eef1f6;
}

.legal-section p {
  margin: 0;
  color: #4d5360;
  font-size: 13px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.8);
  background: #090b10;
}

.footer span {
  color: #2e83ff;
  font-weight: 900;
}

.footer a {
  font-weight: 900;
}

.prelanding {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 10, 16, 0.96), rgba(7, 10, 16, 0.82)),
    linear-gradient(90deg, #111318, #0b49a1);
}

.gate,
.thanks {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 38px 0;
}

.gate-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.gate-offer-only {
  max-width: 620px;
  grid-template-columns: 1fr;
  text-align: center;
}

.gate-offer-only .countdown-box {
  margin: 24px auto 0;
}

.gate-offer-only .cta {
  margin-top: 24px;
}

.gate-price {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(86px, 18vw, 152px);
  font-weight: 900;
  line-height: 0.88;
}

.gate-copy .lead {
  color: rgba(255, 255, 255, 0.78);
}

.deal-strip {
  margin-top: 26px;
}

.gate-product img {
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.42));
}

.fineprint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.section .fineprint {
  margin-top: 26px;
  color: var(--muted);
}

.thanks-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 10, 16, 0.97), rgba(8, 58, 135, 0.76)),
    #111318;
}

.thanks-panel {
  max-width: 920px;
}

.thanks-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0;
}

.thanks-steps article {
  padding: 22px;
  color: var(--ink);
}

.thanks-steps strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
}

.thanks-steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .topbar {
    position: static;
  }

  .topbar nav {
    display: none;
  }

  .hero-inner,
  .split,
  .offer-grid,
  .order-grid,
  .gate-panel,
  .warning-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .price-badge {
    right: 8px;
    bottom: 2%;
  }

  .steps,
  .reviews,
  .thanks-steps {
    grid-template-columns: 1fr;
  }

  .offer-card {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .section-inner,
  .gate-panel,
  .thanks-panel {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .cta,
  .cta-large {
    width: 100%;
  }

  .price-badge {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

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

  .benefit-list p {
    grid-column: auto;
  }

  .countdown-box {
    width: 100%;
  }
}
