:root {
  --bg: #000;
  --bg-soft: #080808;
  --panel: #171717;
  --panel-2: #242424;
  --text: #eff5ff;
  --muted: rgba(239, 245, 255, 0.76);
  --muted-2: rgba(239, 245, 255, 0.56);
  --gold: #ff8a00;
  --gold-2: #dca247;
  --green: #11e66d;
  --green-2: #03b954;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 138, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 20% 45%, rgba(17, 230, 109, 0.08), transparent 28rem),
    #000;
}

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

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

h1,
h2,
h3,
.eyebrow,
.button,
.step-number {
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4.25vw, 4.05rem);
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: #001b0c;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.container--narrow {
  width: min(900px, calc(100% - 32px));
}

.hero,
.offer-hero {
  position: relative;
  padding: 28px 0 72px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.3) 100%),
    url("assets/bg-sandro-desktop.webp") center top / cover no-repeat;
}

.hero {
  min-height: 760px;
}

.hero--vsl-first {
  min-height: 760px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.94) 100%),
    url("assets/bg-site-ss-optimized.webp") center / cover no-repeat;
}

.offer-hero {
  min-height: 780px;
  padding-top: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, #000 96%);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 180px;
  height: auto;
}

.nav__cta {
  padding: 0.75rem 1rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.68fr);
  gap: 2rem;
  align-items: end;
}

.vsl-first {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 42px;
}

.vsl-first .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vsl-first h1 {
  max-width: 880px;
  margin-top: 0.65rem;
  font-size: clamp(2.25rem, 4.3vw, 3.75rem);
  line-height: 1.02;
  text-align: center;
}

.offer-hero__content {
  padding-top: 72px;
}

.hero__copy {
  display: grid;
  gap: 1.2rem;
}

.hero__copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.25vw, 4.05rem);
  line-height: 1;
  text-align: left;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero__lead,
.section-lead,
.final-cta p,
.about__copy p,
.faq p,
.risk {
  color: var(--muted);
}

.hero__lead {
  max-width: 680px;
  font-size: 1rem;
}

.button {
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  color: #041009;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 14px 44px rgba(17, 230, 109, 0.25);
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(17, 230, 109, 0.36);
}

.button--center {
  margin: 2rem auto 0;
}

.trust-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.trust-list li {
  position: relative;
  padding-left: 1.7rem;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.authority {
  align-self: end;
  display: grid;
  gap: 0.9rem;
}

.authority div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
}

.authority strong {
  display: block;
  color: var(--gold);
  font: 800 2.4rem/1 "Arial Black", "Segoe UI", Arial, sans-serif;
}

.authority span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.86rem;
}

.logo-strip {
  padding: 26px 0 64px;
  background: #000;
}

.logo-strip .eyebrow {
  text-align: center;
}

.logos {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1.4rem;
}

.logos img {
  max-height: 56px;
  width: auto;
  margin: 0 auto;
  opacity: 0.86;
  filter: grayscale(0.1);
}

.logos img.logo-openfx {
  width: 190px;
  max-height: none;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--benefits,
.section--faq {
  background: radial-gradient(circle at 50% 0%, rgba(255, 138, 0, 0.12), transparent 32rem);
}

.section .eyebrow,
.section-lead {
  text-align: center;
}

.section-lead {
  max-width: 760px;
  margin: 1rem auto 0;
}

.vsl-card {
  width: min(640px, 100%);
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(34, 34, 34, 0.92), rgba(10, 10, 10, 0.95));
  box-shadow: var(--shadow);
}

.vsl-player {
  min-height: 290px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.84)),
    url("assets/bg-site-ss-optimized.webp") center / cover no-repeat;
}

.vsl-card--video {
  position: relative;
  background: #050505;
}

.vsl-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.vsl-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 0 0 0 0.35rem;
  border: 0;
  border-radius: 50%;
  color: #041009;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow:
    0 0 0 14px rgba(17, 230, 109, 0.2),
    0 18px 56px rgba(17, 230, 109, 0.42);
  cursor: pointer;
  font-size: 2.3rem;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 2;
}

.vsl-play-button:hover,
.vsl-play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.vsl-card--video.is-playing .vsl-play-button {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.play-button {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 0.35rem;
  border-radius: 50%;
  color: #041009;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(17, 230, 109, 0.18);
  font-size: 2rem;
}

.vsl-player strong {
  display: block;
  font: 800 1.4rem/1.2 "Arial Black", "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.vsl-player span {
  color: var(--muted);
}

.vsl-first .button {
  margin-top: 0.6rem;
}

.steps,
.benefit-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

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

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

.step-card,
.benefit-card {
  min-height: 260px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(220deg, var(--panel-2), #111);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.step-number {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 800;
}

.step-card h3,
.benefit-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p,
.benefit-card p,
.proof-card figcaption {
  color: var(--muted);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #ff6a00);
  font: 800 1.6rem/1 "Arial Black", "Segoe UI", Arial, sans-serif;
}

.section--proof {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.88) 100%),
    url("assets/bg-site-ss-optimized.webp") center / cover no-repeat;
}

.proof-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.proof-card img {
  width: 100%;
  aspect-ratio: 400 / 835;
  object-fit: contain;
  object-position: top;
  background: #050505;
}

.proof-card figcaption {
  padding: 0.9rem;
  font-size: 0.86rem;
}

.proof-card strong {
  color: var(--text);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__image {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: url("assets/bio-sandro.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about__copy {
  display: grid;
  gap: 1rem;
}

.about__copy .eyebrow,
.about__copy h2 {
  text-align: left;
  margin-left: 0;
}

.faq {
  margin-top: 2.3rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  color: var(--text);
  font: 700 1rem/1.3 "Arial Black", "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.faq p {
  padding: 0 1.2rem 1.2rem;
}

.section--final {
  padding-top: 64px;
}

.final-cta {
  padding: 3rem;
  border: 1px solid rgba(17, 230, 109, 0.22);
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(17, 230, 109, 0.15), transparent 28rem),
    linear-gradient(145deg, #171717, #050505);
  box-shadow: var(--shadow);
}

.final-cta p {
  margin: 1rem auto 0;
  max-width: 640px;
}

.final-cta .button {
  margin: 1.8rem auto 0;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer .container {
  display: grid;
  gap: 1rem;
}

.footer img {
  width: 150px;
  height: auto;
}

.footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.risk {
  max-width: 980px;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero,
  .offer-hero {
    min-height: auto;
    padding-bottom: 54px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.94) 58%, #000 100%),
      url("assets/bg-sandro-mobile.webp") center top / cover no-repeat;
  }

  .hero--vsl-first {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.96) 100%),
      url("assets/bg-site-ss-optimized.webp") center top / cover no-repeat;
  }

  .nav {
    align-items: flex-start;
  }

  .nav__cta {
    display: none;
  }

  .hero__content {
    padding-top: 330px;
    grid-template-columns: 1fr;
  }

  .offer-hero__content {
    padding-top: 330px;
  }

  .vsl-first {
    padding-top: 34px;
  }

  .vsl-first h1 {
    font-size: 2.3rem;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy h2 {
    margin: 0 auto;
    text-align: center;
  }

  .hero__lead {
    margin: 0 auto;
  }

  .hero .button {
    margin: 0 auto;
  }

  .trust-list {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }

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

  .authority div {
    padding: 0.85rem;
    text-align: center;
  }

  .authority strong {
    font-size: 1.8rem;
  }

  .authority span {
    font-size: 0.76rem;
  }

  .logos,
  .steps,
  .benefit-grid,
  .proof-grid,
  .about {
    grid-template-columns: 1fr;
  }

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

  .logos img {
    max-height: 48px;
  }

  .logos img.logo-openfx {
    width: 170px;
  }

  .section {
    padding: 72px 0;
  }

  .vsl-player {
    min-height: 260px;
  }

  .step-card,
  .benefit-card {
    min-height: auto;
  }

  .proof-grid {
    width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .about__image {
    min-height: 460px;
  }

  .about__copy .eyebrow,
  .about__copy h2 {
    text-align: center;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .hero {
    background-position: center top;
  }

  .hero__content {
    padding-top: 280px;
  }

  .offer-hero__content {
    padding-top: 280px;
  }

  .vsl-first {
    padding-top: 26px;
  }

  h1 {
    font-size: 1.52rem;
    line-height: 1.07;
  }

  .vsl-first h1 {
    font-size: 1.95rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__copy h2 {
    font-size: 1.52rem;
    line-height: 1.07;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    text-align: center;
  }

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

  .logos {
    gap: 1.1rem;
  }

  .logos img.logo-openfx {
    width: 150px;
  }

  .vsl-play-button {
    width: 74px;
    height: 74px;
    font-size: 1.9rem;
    box-shadow:
      0 0 0 10px rgba(17, 230, 109, 0.2),
      0 14px 42px rgba(17, 230, 109, 0.38);
  }

  .final-cta {
    padding: 2rem 1rem;
  }
}
