:root {
  --bg: #090a0f;
  --panel: rgba(12, 16, 24, 0.78);
  --panel-strong: rgba(10, 13, 19, 0.9);
  --line: rgba(255,255,255,0.14);
  --text: #f7f3ec;
  --muted: #d3d7df;
  --gold: #f1c96a;
  --pink: #ff5ab3;
  --cyan: #63e7ff;
  --violet: #8e72ff;
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 28px;
  --wrap: min(1180px, calc(100% - 36px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 520px at 5% -8%, rgba(255,90,179,.18), transparent 58%),
    radial-gradient(840px 560px at 100% 0%, rgba(99,231,255,.12), transparent 54%),
    radial-gradient(900px 700px at 55% 100%, rgba(142,114,255,.15), transparent 58%),
    linear-gradient(180deg, #090a0f 0%, #0b0f17 45%, #090a0f 100%);
}
.wrap { width: var(--wrap); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(9,10,15,.58);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.brand img { width: min(280px, 52vw); }
.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: .96rem;
}
.nav a:hover { color: var(--text); }
.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
  padding: 30px 0 16px;
}
.hero-copy,
.hero-art,
.quote-panel,
.proof-card,
.step,
.visual-copy,
.pricing,
.closing-copy,
.closing-art { overflow: hidden; }
.hero-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  margin-bottom: 14px;
}
h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.06em;
}
h1 span { display: block; }
.subhead, .proof-card p, .step p, .visual-copy p, .visual-copy li, .section-note, .price-card p, .closing-copy p {
  color: var(--muted);
  line-height: 1.7;
}
.subhead {
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  margin: 20px 0 0;
  max-width: 56ch;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn {
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.btn-primary {
  background: linear-gradient(135deg, rgba(255,90,179,.96), rgba(142,114,255,.96));
}
.btn-secondary {
  background: rgba(255,255,255,.06);
}
.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: .96rem;
}
.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.proof-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 10px 0 14px;
}
.quote-panel {
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,90,179,.16), rgba(99,231,255,.12));
}
.quote-panel p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.proof-card { padding: 24px; }
.proof-card.accent {
  background: linear-gradient(135deg, rgba(99,231,255,.14), rgba(142,114,255,.14), rgba(255,90,179,.14));
}
.section-head { margin-bottom: 18px; }
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  letter-spacing: -.04em;
}
.how { padding: 12px 0 14px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step { padding: 24px; }
.step.accent {
  background: linear-gradient(135deg, rgba(99,231,255,.14), rgba(255,90,179,.12));
}
.step-no {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .18em;
  font-weight: 700;
}
.step h3, .proof-card h2, .visual-copy h2, .closing-copy h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}
.visual-showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  padding: 12px 0 14px;
  align-items: center;
}
.visual-copy { padding: 28px; }
.visual-copy ul { padding-left: 18px; margin: 14px 0 0; }
.visual-stack {
  position: relative;
  min-height: 620px;
}
.card-img {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #050608;
}
.visual-stack .card-img:first-child {
  width: 78%;
  margin-left: auto;
}
.card-img.floating {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
}
.pricing {
  padding: 28px;
  margin-top: 8px;
}
.split {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(255,90,179,.18), rgba(142,114,255,.18));
  transform: translateY(-4px);
}
.plan {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  margin-bottom: 10px;
}
.price {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .96;
  font-weight: 800;
  margin-bottom: 10px;
}
.price span { font-size: .38em; color: var(--muted); }
.closing {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  padding: 18px 0 40px;
}
.closing-copy, .closing-art { padding: 24px; }
.closing-art img { border-radius: 18px; width: 100%; }
@media (max-width: 980px) {
  .hero,
  .proof-grid,
  .steps,
  .visual-showcase,
  .pricing-grid,
  .closing { grid-template-columns: 1fr; }
  .split, .topbar-inner { flex-direction: column; align-items: start; }
  .nav { flex-wrap: wrap; }
  .hero-copy, .hero-art img { min-height: unset; }
  .visual-stack { min-height: auto; display: grid; gap: 16px; }
  .visual-stack .card-img:first-child,
  .card-img.floating { position: static; width: 100%; margin: 0; }
}
