:root {
  color-scheme: dark;
  --navy: #070b16;
  --navy-2: #0d1425;
  --panel: #111b2e;
  --panel-2: #17233a;
  --red: #ef2b1d;
  --red-dark: #ba1e16;
  --green: #0fb85c;
  --green-dark: #087a3f;
  --text: #f7f7f4;
  --muted: #b7c0cc;
  --line: rgba(255, 255, 255, 0.1);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 43, 29, 0.16), transparent 28rem),
    linear-gradient(180deg, #070b16 0%, #0a1020 45%, #070b16 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  min-height: 100svh;
  padding: 0 20px 64px;
}

.ribbon {
  margin: 0 -20px 48px;
  padding: 14px 18px;
  background: var(--red);
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px rgba(239, 43, 29, 0.3);
}

.hero-grid,
.section,
.proof-strip {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 42px;
}

.hero-copy,
.video-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff6b58;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 950;
}

mark {
  display: inline;
  padding: 0 0.08em;
  background: var(--red);
  color: #fff;
}

h1 > span,
h1 > mark {
  display: block;
}

.subhead {
  max-width: 680px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.hero-actions {
  max-width: 570px;
}

.cta {
  display: inline-flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #12c968, var(--green-dark));
  color: white;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(15, 184, 92, 0.3);
  transform: translateZ(0);
}

.cta > .cta-label {
  max-width: 100%;
  font-size: clamp(1rem, 2.7vw, 1.28rem);
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: normal;
}

.cta-label span {
  display: block;
}

.cta small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-compact {
  max-width: 430px;
}

.trust-line,
.video-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.video-card {
  border: 1px solid rgba(239, 43, 29, 0.45);
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 40px rgba(239, 43, 29, 0.2);
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.65;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #000;
  cursor: pointer;
}

.video-facade img,
.video-facade iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}

.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 180ms ease;
}

.video-facade:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 32px rgba(239, 43, 29, 0.75);
  transform: translate(-50%, -50%);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.proof-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.proof-strip strong {
  display: block;
  color: white;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 950;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 70px 20px;
}

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

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 950;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.18;
}

.testimonial-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #fff6e9;
  cursor: pointer;
  scroll-snap-align: center;
}

.testimonial-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.pain,
.workshop,
.offer,
.authority {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.workshop,
.authority {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.image-panel,
.copy-panel,
.price-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.image-panel {
  overflow: hidden;
}

.image-panel img,
.authority > img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.copy-panel,
.price-box {
  padding: clamp(24px, 4vw, 42px);
}

.copy-panel p,
.offer p,
.authority p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.steps-grid,
.visual-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.visual-card,
.bonus-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.step-card {
  min-height: 170px;
  padding: 24px;
}

.step-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 2rem;
  font-weight: 950;
}

.visual-card,
.bonus-card {
  overflow: hidden;
}

.visual-card img,
.bonus-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.visual-card h3,
.bonus-card h3 {
  padding: 18px;
}

.offer {
  align-items: stretch;
  padding-inline: clamp(20px, 5vw, 54px);
  border: 1px solid rgba(239, 43, 29, 0.25);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(239, 43, 29, 0.12), rgba(255, 255, 255, 0.04));
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.price-box img {
  width: 160px;
  margin-bottom: 16px;
}

.price-box strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-box span {
  color: var(--muted);
}

.authority {
  max-width: 980px;
}

.authority > img {
  border: 1px solid var(--line);
}

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

.faq details {
  padding: 20px 22px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  color: white;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(239, 43, 29, 0.25);
  border-radius: 24px;
  background: rgba(239, 43, 29, 0.09);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 82svh;
  width: auto;
  border-radius: 14px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .ribbon {
    margin-bottom: 30px;
  }

  .hero-grid,
  .pain,
  .workshop,
  .offer,
  .authority {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    margin-inline: auto;
  }

  .proof-strip,
  .steps-grid,
  .visual-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 14px;
  }

  .ribbon {
    margin-inline: -14px;
    font-size: 0.68rem;
  }

  .hero-grid,
  .hero-copy,
  .video-card {
    width: 100%;
    max-width: 362px;
    justify-self: start;
  }

  .hero-actions,
  .subhead {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 52px 14px;
  }

  h1 {
    width: 100%;
    font-size: clamp(1.75rem, 9.4vw, 2.35rem);
    line-height: 1.03;
  }

  h1 > mark {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .cta {
    min-height: 76px;
    padding-inline: 14px;
    border-radius: 22px;
  }

  .cta > .cta-label {
    font-size: 0.98rem;
    line-height: 1.14;
  }

  .testimonial-row {
    grid-auto-columns: 78%;
  }
}
