:root {
  color-scheme: dark;
  --bg: #05080d;
  --bg-soft: #09111b;
  --ink: #f7f8fb;
  --text: #d9dfeb;
  --muted: #8c98aa;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --gold: #e7bd68;
  --gold-soft: #ffd98b;
  --blue: #36a7ff;
  --blue-soft: #8cd2ff;
  --green: #54e0a3;
  --cta: #f3c15f;
  --cta-dark: #9a641b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 167, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(231, 189, 104, 0.14), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(330px, auto) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 40px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.86);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 0;
}

.brand-logo {
  width: 118px;
  height: auto;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small,
.site-footer strong,
.site-footer span {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(247, 248, 251, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a,
.header-action {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: #ffffff;
}

.nav-links a::after,
.header-action::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.header-action:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  color: var(--gold-soft);
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
}

.menu-button span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.site-header.is-open .menu-button span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 102px 0 0;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -25%;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(54, 167, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 72% 42%, rgba(231, 189, 104, 0.16), transparent 30rem),
    conic-gradient(from 140deg at 50% 46%, transparent 0deg, rgba(231, 189, 104, 0.07) 68deg, transparent 135deg, rgba(54, 167, 255, 0.07) 220deg, transparent 315deg);
  content: "";
  filter: blur(24px);
  opacity: 0.7;
  animation: heroLightShift 12s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.7), rgba(5, 8, 13, 0.98)),
    linear-gradient(90deg, rgba(5, 8, 13, 0.94), rgba(5, 8, 13, 0.68), rgba(5, 8, 13, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.021) 0 1px, transparent 1px 54px);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-one {
  top: 14%;
  left: -8%;
  background: rgba(54, 167, 255, 0.82);
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.hero-glow-two {
  right: -12%;
  bottom: 4%;
  background: rgba(231, 189, 104, 0.86);
  animation: floatGlow 11s ease-in-out infinite alternate-reverse;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.authority-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  color: rgba(247, 248, 251, 0.86);
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.authority-badge {
  border-color: rgba(231, 189, 104, 0.45);
  color: var(--gold-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: 4.28rem;
  line-height: 0.98;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.46);
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(115deg, #ffffff 0%, #fff2c8 42%, var(--gold-soft) 74%, #8fd4ff 100%);
  background-clip: text;
  color: transparent;
  font-weight: 650;
  text-shadow: none;
}

.hero-copy {
  max-width: 690px;
  margin: 16px 0 24px;
  color: var(--text);
  font-size: 1.18rem;
}

.vsl-card {
  position: relative;
  display: grid;
  width: min(1260px, 100%);
  aspect-ratio: 16 / 7.5;
  min-height: 560px;
  overflow: hidden;
  align-items: end;
  border: 1px solid rgba(231, 189, 104, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 50% 42%, rgba(231, 189, 104, 0.14), transparent 15rem),
    radial-gradient(circle at 50% 45%, rgba(54, 167, 255, 0.22), transparent 20rem),
    rgba(8, 14, 22, 0.9);
  box-shadow:
    0 0 0 1px rgba(231, 189, 104, 0.12),
    0 0 76px rgba(231, 189, 104, 0.12),
    0 44px 130px rgba(0, 0, 0, 0.62);
  animation: vslFloat 5.5s ease-in-out infinite;
  transition: transform 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vsl-card:hover {
  transform: translateY(-6px) scale(1.006);
  border-color: rgba(231, 189, 104, 0.62);
  box-shadow:
    0 0 0 1px rgba(231, 189, 104, 0.22),
    0 0 94px rgba(231, 189, 104, 0.18),
    0 46px 140px rgba(0, 0, 0, 0.6);
}

.vsl-card::before {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent, rgba(231, 189, 104, 0.86), rgba(54, 167, 255, 0.52), transparent) border-box;
  content: "";
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.55;
  animation: borderGlow 4.2s linear infinite;
}

.vsl-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.11) 36%, transparent 47%),
    linear-gradient(180deg, transparent 0%, rgba(5, 8, 13, 0.46) 70%, rgba(5, 8, 13, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
  content: "";
}

.vsl-topline,
.vsl-copy,
.play-button {
  position: relative;
  z-index: 1;
}

.vsl-topline {
  position: absolute;
  top: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 248, 251, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(231, 189, 104, 0.7);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 217, 139, 0.96), rgba(231, 189, 104, 0.78)),
    var(--gold);
  box-shadow:
    0 0 0 16px rgba(231, 189, 104, 0.08),
    0 0 60px rgba(231, 189, 104, 0.44);
  transform: translate(-50%, -50%);
  animation: playPulse 2.4s ease-in-out infinite;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 31px solid #1b1204;
}

.vsl-copy {
  display: grid;
  gap: 6px;
  padding: 0 34px 32px;
  text-align: left;
}

.vsl-copy strong {
  font-size: 1.35rem;
}

.vsl-copy span {
  color: rgba(217, 223, 235, 0.78);
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  position: relative;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 17px 30px;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: buttonShine 3.2s ease-in-out infinite;
}

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

.button-primary {
  background:
    linear-gradient(135deg, var(--gold-soft), var(--cta) 48%, #f49b32),
    var(--cta);
  color: #140d03;
  box-shadow:
    0 0 0 1px rgba(255, 217, 139, 0.18),
    0 16px 44px rgba(243, 193, 95, 0.32),
    0 0 64px rgba(231, 189, 104, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 217, 139, 0.28),
    0 20px 56px rgba(243, 193, 95, 0.42),
    0 0 82px rgba(231, 189, 104, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.trust-note {
  margin: 12px 0 0;
  color: rgba(247, 248, 251, 0.72);
  font-size: 0.9rem;
}

.proof-bar {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-card,
.problem-card,
.step-card,
.testimonial-card,
.comparison-panel,
.scarcity-panel,
.application-form,
.application-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--glass-strong), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.proof-card {
  min-height: 116px;
  padding: 22px;
}

.proof-card strong,
.proof-card span {
  display: block;
}

.proof-card strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1.28rem;
}

.proof-card span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-dark {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.centered {
  display: block;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  font-size: 3.35rem;
  line-height: 1.04;
}

.section-heading p,
.story-copy p,
.final-copy p,
.application-copy p,
.scarcity-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 106px max(20px, calc((100vw - 1180px) / 2)) 108px;
  isolation: isolate;
}

.problem::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 8%, rgba(54, 167, 255, 0.07), transparent 27rem),
    radial-gradient(circle at 86% 42%, rgba(231, 189, 104, 0.07), transparent 30rem),
    linear-gradient(180deg, rgba(7, 14, 22, 0.42), rgba(5, 8, 13, 0.88));
  content: "";
}

.problem::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 74%);
  opacity: 0.42;
}

.problem .section-heading.centered {
  max-width: 850px;
  margin-bottom: 48px;
}

.problem .section-heading h2 {
  max-width: 780px;
  margin: 0 auto;
}

.problem .section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(217, 223, 235, 0.76);
}

.problem-placeholder .section-heading.centered {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.025);
  padding: 34px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.problem-placeholder .section-heading.centered::before {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(231, 189, 104, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 217, 139, 0.78);
  content: "Client copy needed";
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-placeholder .section-heading h2 {
  color: rgba(247, 248, 251, 0.88);
}

.problem-placeholder .section-heading > p:not(.eyebrow) {
  color: rgba(217, 223, 235, 0.66);
}

.problem-placeholder .placeholder-lines {
  max-width: 540px;
  margin: 24px auto 0;
}

.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: start;
}

.problem-grid::before {
  position: absolute;
  top: 82px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 167, 255, 0.16), rgba(231, 189, 104, 0.24), transparent);
  content: "";
  opacity: 0.58;
}

.problem-card {
  --card-accent: var(--blue-soft);
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: start;
  overflow: hidden;
  padding: 26px 24px 24px;
  border-color: rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 18% 0%, rgba(54, 167, 255, 0.095), transparent 13rem),
    rgba(7, 13, 22, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.065) inset,
    0 22px 70px rgba(0, 0, 0, 0.34);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.problem-placeholder .problem-card {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.022)),
    radial-gradient(circle at 18% 0%, rgba(54, 167, 255, 0.065), transparent 13rem),
    rgba(7, 13, 22, 0.78);
}

.problem-placeholder .problem-card-featured {
  border-color: rgba(231, 189, 104, 0.28);
  background:
    linear-gradient(150deg, rgba(231, 189, 104, 0.095), rgba(54, 167, 255, 0.035) 58%, rgba(255, 255, 255, 0.024)),
    rgba(9, 14, 22, 0.88);
}

.problem-card:nth-child(1) {
  grid-column: 1 / span 3;
  margin-top: 28px;
}

.problem-card:nth-child(2) {
  --card-accent: #c8dcff;
  grid-column: 4 / span 3;
  margin-top: 56px;
}

.problem-card:nth-child(3) {
  --card-accent: var(--gold);
  grid-column: 7 / span 3;
  margin-top: 18px;
}

.problem-card-featured {
  --card-accent: var(--gold-soft);
  grid-column: 10 / span 3;
  min-height: 292px;
  border-color: rgba(231, 189, 104, 0.32);
  background:
    linear-gradient(150deg, rgba(231, 189, 104, 0.13), rgba(54, 167, 255, 0.045) 58%, rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 50% 0%, rgba(255, 217, 139, 0.13), transparent 15rem),
    rgba(9, 14, 22, 0.92);
  box-shadow:
    0 0 0 1px rgba(231, 189, 104, 0.07),
    0 26px 84px rgba(0, 0, 0, 0.42);
}

.problem-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), transparent 36%),
    linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.38));
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.problem-placeholder .problem-card::before {
  opacity: 0.34;
}

.problem-card::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: var(--card-accent);
  content: "";
  filter: blur(54px);
  opacity: 0.12;
  pointer-events: none;
}

.problem-card > * {
  position: relative;
  z-index: 1;
}

.problem-card:hover,
.problem-card.reveal.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 189, 104, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.075) inset,
    0 28px 84px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(231, 189, 104, 0.045);
}

.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 189, 104, 0.38);
}

.problem-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  color: var(--card-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--card-accent) 12%, transparent);
}

.problem-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.problem-step {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(247, 248, 251, 0.28);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.problem-placeholder .problem-step {
  color: rgba(255, 217, 139, 0.66);
  font-size: 0.62rem;
  white-space: nowrap;
}

.problem-card h3,
.testimonial-card strong {
  margin: 0;
}

.problem-card h3 {
  margin-bottom: 10px;
  color: #f8f9fb;
  font-size: 1.08rem;
  font-weight: 820;
  line-height: 1.15;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.problem-card p,
.step-card p,
.timeline-item p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

.problem-card p {
  color: rgba(217, 223, 235, 0.66);
  font-size: 0.92rem;
  line-height: 1.54;
}

.problem-insight {
  display: block;
  margin-top: 18px;
  border-left: 1px solid rgba(231, 189, 104, 0.42);
  padding-left: 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.42;
}

.story,
.benefits,
.scarcity,
.application {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 167, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 86% 32%, rgba(231, 189, 104, 0.1), transparent 30rem),
    linear-gradient(180deg, #07101a, #05080d);
}

.story {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: start;
}

.story-placeholder {
  background:
    radial-gradient(circle at 18% 18%, rgba(54, 167, 255, 0.09), transparent 30rem),
    radial-gradient(circle at 86% 38%, rgba(231, 189, 104, 0.075), transparent 28rem),
    linear-gradient(180deg, #07101a, #05080d);
}

.story-placeholder .story-copy,
.story-placeholder .timeline {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.025);
  padding: 34px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32);
}

.story-placeholder .story-copy::before,
.story-placeholder .timeline::before {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(231, 189, 104, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 217, 139, 0.78);
  content: "Client copy needed";
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-placeholder .story-copy h2 {
  color: rgba(247, 248, 251, 0.88);
}

.story-placeholder .story-copy p {
  color: rgba(217, 223, 235, 0.66);
}

.placeholder-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.placeholder-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
}

.placeholder-lines span:nth-child(2) {
  width: 82%;
}

.placeholder-lines span:nth-child(3) {
  width: 56%;
}

.story-copy p + p {
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  border-left: 1px solid rgba(231, 189, 104, 0.42);
  padding: 4px 0 26px 26px;
}

.story-placeholder .timeline-item {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.timeline-item::before {
  position: absolute;
  top: 5px;
  left: -7px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(231, 189, 104, 0.55);
  content: "";
}

.story-placeholder .timeline-item::before {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 24px rgba(231, 189, 104, 0.24);
}

.timeline-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.how-placeholder .section-heading {
  position: relative;
  align-items: start;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.025);
  padding: 34px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
}

.how-placeholder .section-heading::before {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(231, 189, 104, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 217, 139, 0.78);
  content: "Client workflow needed";
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.how-placeholder .section-heading h2 {
  color: rgba(247, 248, 251, 0.88);
}

.how-placeholder-copy p {
  color: rgba(217, 223, 235, 0.66);
}

.how-placeholder-copy .placeholder-lines {
  max-width: 420px;
  margin-top: 24px;
}

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

.step-card {
  min-height: 310px;
  padding: 30px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 58px;
  border: 1px solid rgba(231, 189, 104, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.how-placeholder .step-card {
  min-height: 270px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.022)),
    radial-gradient(circle at 20% 0%, rgba(54, 167, 255, 0.06), transparent 13rem),
    rgba(7, 13, 22, 0.74);
}

.how-placeholder .step-card span {
  border-color: rgba(231, 189, 104, 0.28);
  color: rgba(255, 217, 139, 0.78);
}

.how-placeholder .step-card h3 {
  color: rgba(247, 248, 251, 0.9);
}

.how-placeholder .step-card p {
  color: rgba(217, 223, 235, 0.66);
}

.benefits {
  display: grid;
}

.comparison {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.comparison-panel {
  padding: 30px;
}

.accent-panel {
  border-color: rgba(231, 189, 104, 0.34);
  background:
    linear-gradient(145deg, rgba(231, 189, 104, 0.16), rgba(54, 167, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.panel-label,
.result-pill {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.comparison li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.comparison li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 18px rgba(54, 167, 255, 0.45);
}

.accent-panel li::before {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(231, 189, 104, 0.45);
}

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

.testimonial-card {
  display: grid;
  min-height: 360px;
  align-content: start;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.avatar {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #253246, #121a28);
  color: #ffffff;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.avatar-blue {
  background: linear-gradient(145deg, #1b66a3, #101826);
}

.avatar-gold {
  background: linear-gradient(145deg, #c28a27, #20160a);
}

.testimonial-card p {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.testimonial-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.scarcity {
  display: grid;
  place-items: center;
}

.scarcity-panel {
  position: relative;
  width: min(940px, 100%);
  overflow: hidden;
  padding: 44px;
  text-align: center;
}

.scarcity-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(231, 189, 104, 0.08), transparent);
  content: "";
  animation: sweep 5s linear infinite;
}

.scarcity-panel > * {
  position: relative;
  z-index: 1;
}

.scarcity-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 26px 0 30px;
}

.scarcity-points span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
}

.final-copy {
  max-width: 850px;
}

.final-copy p {
  margin: 18px auto 28px;
  max-width: 650px;
}

.application {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.application-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
}

.application-note span {
  color: var(--muted);
}

.application-form {
  display: grid;
  gap: 17px;
  padding: 30px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}

.application-form input,
.application-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.application-form select {
  color: #111827;
  background: #ffffff;
}

.application-form select:invalid {
  color: #667085;
}

.application-form input:focus,
.application-form select:focus {
  border-color: rgba(231, 189, 104, 0.72);
  box-shadow: 0 0 0 4px rgba(231, 189, 104, 0.14);
}

.application-form button {
  margin-top: 4px;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), var(--cta), #f49b32);
  color: #130d03;
  font-weight: 950;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.footer-logo {
  width: 156px;
  border-radius: var(--radius);
}

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

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

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes heroLightShift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) rotate(6deg) scale(1.04);
  }
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -12px, 0) scale(1.08);
  }
}

@keyframes vslFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes borderGlow {
  0% {
    opacity: 0.34;
    filter: hue-rotate(0deg);
  }

  50% {
    opacity: 0.78;
  }

  100% {
    opacity: 0.34;
    filter: hue-rotate(28deg);
  }
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 14px rgba(231, 189, 104, 0.08),
      0 0 58px rgba(231, 189, 104, 0.42);
  }

  50% {
    box-shadow:
      0 0 0 22px rgba(231, 189, 104, 0.13),
      0 0 86px rgba(231, 189, 104, 0.58);
  }
}

@keyframes buttonShine {
  0%,
  28% {
    transform: translateX(0) skewX(-18deg);
  }

  58%,
  100% {
    transform: translateX(390%) skewX(-18deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 14, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 92px 0 0;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .vsl-card {
    aspect-ratio: 16 / 8.2;
    min-height: 420px;
  }

  .proof-bar,
  .steps,
  .testimonial-grid,
  .scarcity-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem {
    padding-top: 78px;
    padding-bottom: 80px;
  }

  .problem .section-heading.centered {
    margin-bottom: 34px;
  }

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

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

  .problem-card,
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card-featured {
    grid-column: auto;
    min-height: 242px;
    margin-top: 0;
  }

  .problem-card:nth-child(2),
  .problem-card-featured {
    margin-top: 18px;
  }

  .section-heading,
  .story,
  .comparison,
  .application {
    grid-template-columns: 1fr;
  }

  .section,
  .story,
  .benefits,
  .scarcity,
  .application {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section h2 {
    font-size: 2.55rem;
  }

  .story,
  .application {
    gap: 34px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 104px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    max-width: 180px;
    font-size: 0.62rem;
  }

  .hero-content,
  .section,
  .proof-bar,
  .site-footer {
    width: min(100% - 32px, 720px);
  }

  .hero h1 {
    font-size: 2.24rem;
    line-height: 0.98;
  }

  .hero-copy {
    margin: 12px 0 14px;
    font-size: 0.98rem;
  }

  .vsl-card {
    aspect-ratio: 16 / 10;
    min-height: 270px;
    margin-top: 2px;
    order: 6;
  }

  .hero-actions {
    order: 7;
  }

  .trust-note {
    order: 8;
  }

  .vsl-topline {
    top: 18px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    text-align: left;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .play-button span {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 21px;
  }

  .vsl-copy {
    padding: 0 20px 20px;
  }

  .vsl-copy strong {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 20px;
  }

  .proof-bar,
  .steps,
  .testimonial-grid,
  .scarcity-points {
    grid-template-columns: 1fr;
  }

  .problem {
    width: 100%;
    max-width: none;
    padding: 58px 16px 62px;
  }

  .problem::after {
    background-size: 64px 64px;
  }

  .problem .section-heading.centered {
    width: min(100%, 720px);
    margin-bottom: 26px;
    text-align: left;
  }

  .problem .section-heading h2,
  .problem .section-heading > p:not(.eyebrow) {
    margin-right: 0;
    margin-left: 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-card,
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card-featured {
    min-height: 0;
    margin-top: 0;
    padding: 22px 20px;
  }

  .problem-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
  }

  .problem-step {
    top: 20px;
    right: 20px;
  }

  .problem-card h3 {
    font-size: 1.03rem;
  }

  .problem-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section,
  .story,
  .benefits,
  .scarcity,
  .application {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section h2 {
    font-size: 2.18rem;
  }

  .step-card,
  .testimonial-card,
  .comparison-panel,
  .scarcity-panel,
  .application-form {
    padding: 22px;
  }

  .step-card {
    min-height: 250px;
  }

  .step-card span {
    margin-bottom: 40px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
