:root {
  --bg: #090909;
  --bg-2: #0a0a0a;
  --surface: rgba(9, 9, 9, 0.88);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-light: #f6f1eb;
  --surface-light-2: #ffffff;
  --text: #ffffff;
  --text-dark: #0f1728;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: #5c667a;
  --border: rgba(255, 255, 255, 0.14);
  --border-dark: rgba(15, 23, 40, 0.12);
  --brand-blue: #0039ff;
  --brand-blue-2: #188bf6;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 45px rgba(2, 10, 25, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 57, 255, 0.32), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(24, 139, 246, 0.1), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(0, 57, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #090909 0%, #090909 40%, #0a0a0a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
  z-index: -1;
}

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

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

.page-shell {
  width: min(var(--container), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 0 0 72px;
}

.top-bar {
  padding: 12px 16px;
  background: #0039ff;
  color: #fff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section {
  position: relative;
  margin-top: 22px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.section-light {
  background: linear-gradient(180deg, rgba(250, 246, 240, 0.98), rgba(243, 236, 228, 0.98));
  color: var(--text-dark);
  border-color: var(--border-dark);
}

.hero-funnel {
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 57, 255, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(24, 139, 246, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.hero-single-column,
.form-conversion-grid {
  display: grid;
  gap: 30px;
}

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

.hero-copy,
.hero-media,
.form-sticky-copy {
  position: relative;
  z-index: 1;
}

.hero-copy-centered,
.hero-media-centered {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.hero-media-centered .video-frame-shell {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dark {
  background: rgba(0, 57, 255, 0.1);
  border-color: rgba(0, 57, 255, 0.16);
  color: var(--brand-blue);
}

h1,
h2,
h3,
.button {
  font-family: "Barlow", sans-serif;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.3rem, 5.8vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.lead {
  max-width: 64ch;
  font-size: clamp(0.95rem, 1.55vw, 1.05rem);
  color: var(--muted);
}

.lead-dark,
.text-muted {
  color: var(--muted-dark);
}

.hero-lead {
  max-width: 68ch;
  margin-bottom: 6px;
}

.hero-lead-centered {
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  margin-top: 22px;
}

.hero-bullets-centered {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.bullet-list li {
  position: relative;
  padding-left: 24px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #188bf6;
  box-shadow: 0 0 0 5px rgba(0, 57, 255, 0.14);
}

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

.button-row-left {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: #0039ff;
  box-shadow: 0 20px 40px rgba(0, 57, 255, 0.28);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-centered {
  justify-content: center;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.video-frame-shell {
  padding: 16px;
  border-radius: 28px;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}

.video-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 57, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.replay-frame {
  width: min(100%, 1020px);
  padding: 18px;
  border-radius: 18px;
  background: #090909;
  margin-top: 6px;
}

.replay-badge {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 10px 16px;
  border-radius: 12px 12px 0 0;
  background: #0039ff;
  text-align: center;
  font-size: 0.95rem;
}

.video-shell {
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.replay-video-shell {
  padding: 10px 0 0;
  border-radius: 0 0 14px 14px;
  background: transparent;
}

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

.video-placeholder,
.embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
}

.video-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top, rgba(0, 57, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.02));
}

.video-placeholder__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 57, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.embed-placeholder.light {
  min-height: 240px;
  border: 1px dashed rgba(15, 23, 40, 0.16);
  background: #fff;
  color: var(--text-dark);
}

.proof-band {
  margin-top: 18px;
  padding: 14px;
}

.proof-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.proof-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.proof-number {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #188bf6;
}

.proof-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.proof-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-header {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-header .eyebrow {
  padding: 14px 28px;
  font-size: 0.98rem;
}

.section-header h2 {
  font-size: clamp(1.3rem, 2.8vw, 2.35rem);
  line-height: 0.98;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 57, 255, 0.18), transparent 70%);
}

.feature-card p,
.fit-card li {
  font-size: 0.95rem;
}

.fit-grid {
  margin-top: 22px;
  row-gap: 80px;
  column-gap: 56px;
}

.fit-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 40, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 40, 0.08);
}

.fit-card + .fit-card {
  margin-top: 48px;
}

.fit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 34px;
  color: #263247;
}

.fit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: #0039ff;
}

.form-conversion-section {
  background:
    radial-gradient(circle at top right, rgba(0, 57, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.form-conversion-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.form-sticky-copy {
  align-self: start;
  max-width: 760px;
  padding: 8px 6px 8px 0;
  margin: 0 auto;
  text-align: center;
}

.form-sticky-copy .bullet-list {
  text-align: left;
}

.small {
  font-size: 0.92rem;
}

.final-cta-section {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0, 57, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

@media (max-width: 980px) {
  .form-conversion-grid,
  .proof-band-inner,
  .feature-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    row-gap: 96px;
    column-gap: 18px;
  }

  .page-shell {
    width: min(var(--container), calc(100% - 0.8rem));
  }

  .section {
    padding: 24px;
  }

  .hero-funnel {
    padding: 20px;
  }

  .replay-frame {
    padding: 14px;
  }

  .button-row,
  .button-row-left {
    justify-content: stretch;
  }

  .button {
    width: 100%;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .section-header .eyebrow {
    padding: 12px 24px;
    font-size: 0.92rem;
  }

  .section-header h2 {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }
}

@media (max-width: 640px) {
  .fit-grid {
    row-gap: 104px;
  }

  .fit-card + .fit-card {
    margin-top: 64px;
  }
}
