:root {
  --bg: #0f0f1a;
  --surface: #161625;
  --surface2: #1e1e32;
  --fg: #faf6f0;
  --fg-muted: #a0a0b8;
  --accent: #ff5757;
  --accent-dim: rgba(255, 87, 87, 0.12);
  --green: #4ade80;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Shared ─────────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.check { color: var(--green); margin-right: 8px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 26, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-nav-cta:hover { opacity: 0.88; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px;
  background: var(--bg);
  background-image: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,87,87,0.07) 0%, transparent 60%);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta { font-size: 16px; padding: 16px 32px; margin-bottom: 32px; }
.hero-social-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: var(--surface2);
}
.trust-avatar:first-child { margin-left: 0; }
.ta1 { background: linear-gradient(135deg,#ff5757,#ff8a57); }
.ta2 { background: linear-gradient(135deg,#57a0ff,#57d6ff); }
.ta3 { background: linear-gradient(135deg,#a057ff,#d657ff); }
.trust-text { font-size: 13px; color: var(--fg-muted); }

.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-image-wrap { position: relative; width: 100%; max-width: 520px; }
.hero-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,87,87,0.4);
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.badge-label { font-size: 11px; font-weight: 500; opacity: 0.9; }

/* ─── Before/After ────────────────────────────────────── */
.before-after {
  background: var(--surface);
  padding: 100px 48px;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-card {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
}
.ba-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ba-type { font-size: 14px; font-weight: 600; color: var(--fg); }
.ba-sample-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 20px;
}
.ba-panels {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-panel { flex: 1; }
.ba-panel-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.ba-arrow {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  padding: 0 4px;
}

/* Mock screens */
.ba-mock-screen {
  background: var(--bg);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}
.mock-timeline { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }
.mock-track { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; width: 100%; }
.mock-track.mt { width: 70%; }
.mock-track.short { width: 45%; }
.mock-waveform-raw {
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 36px;
}
.wave-raw {
  width: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
  flex-shrink: 0;
}
.mock-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mock-duration { font-size: 9px; color: var(--fg-muted); font-weight: 600; }
.mock-format { font-size: 9px; color: var(--accent); font-weight: 700; letter-spacing: 0.05em; }
.mock-thumbnail-raw {
  background: var(--surface);
  border-radius: 6px;
  height: 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
}
.yt-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  height: 2px;
  background: var(--accent);
}
.yt-time {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 9px;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 1px 4px;
  border-radius: 3px;
}
.stream-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 6px; }
.stream-cam { height: 40px; background: var(--surface); border-radius: 4px; }
.stream-game { height: 40px; background: linear-gradient(135deg, #1a1a2e, #2a1a3e); border-radius: 4px; }

/* After phone */
.ba-mock-phone {
  background: #0a0a14;
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 130px;
  position: relative;
}
.phone-notch {
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 6px;
}
.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.phone-caption-bar {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,87,87,0.15);
  border: 1px solid rgba(255,87,87,0.2);
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1.3;
}
.phone-waveform {
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 28px;
}
.wave-clean {
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 0.8;
}
.phone-effects {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.effect-tag {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.phone-duration {
  font-size: 9px;
  color: var(--fg-muted);
  font-weight: 600;
  text-align: right;
}

/* ─── Pricing ─────────────────────────────────────────── */
.pricing {
  background: var(--bg);
  padding: 100px 48px;
  background-image: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,87,87,0.05) 0%, transparent 60%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 32px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-featured {
  background: linear-gradient(160deg, #1e1222 0%, #1e1e32 100%);
  border-color: rgba(255,87,87,0.3);
  box-shadow: 0 0 0 1px rgba(255,87,87,0.15), 0 24px 60px rgba(255,87,87,0.1);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.price-dollar { font-size: 24px; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--fg-muted); }
.price-period { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.plan-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.4; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li { font-size: 14px; color: var(--fg); line-height: 1.4; }
.plan-cta { width: 100%; text-align: center; }
.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ─── Social Proof ────────────────────────────────────── */
.social-proof {
  background: var(--surface);
  padding: 100px 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 64px;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-quote {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg,#ff5757,#ff8a57); }
.av2 { background: linear-gradient(135deg,#57a0ff,#57d6ff); }
.av3 { background: linear-gradient(135deg,#57ff8a,#57ffda); }
.author-name { font-size: 14px; font-weight: 700; color: var(--fg); }
.author-handle { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

.logo-strip { text-align: center; max-width: 700px; margin: 0 auto; }
.logo-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.logo-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-placeholder {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

/* ─── Intake Form ─────────────────────────────────────── */
.intake {
  background: var(--bg);
  padding: 100px 48px;
  background-image: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255,87,87,0.06) 0%, transparent 60%);
}
.intake-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intake-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.intake-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.intake-promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intake-promise-list li { font-size: 14px; color: var(--fg); }

.intake-form {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-row input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.form-row input:focus,
.form-row select:focus { border-color: rgba(255,87,87,0.4); }
.form-row select option { background: var(--surface2); color: var(--fg); }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: 10px;
}
.form-footnote {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: -8px;
}

/* ─── Confirmation Page ───────────────────────────────── */
.confirmation-page {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background-image: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74,222,128,0.06) 0%, transparent 60%);
}
.confirmation-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.confirm-icon { margin-bottom: 24px; }
.confirm-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.confirm-sub {
  font-size: 18px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}
.confirm-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--surface);
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 520px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px; grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-right { order: -1; }
  .before-after, .pricing, .social-proof, .intake { padding: 64px 20px; }
  .footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .intake-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-badge { bottom: -12px; right: -8px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .nav-links .nav-link { display: none; }
  .ba-panels { flex-direction: column; gap: 12px; }
  .ba-arrow { transform: rotate(90deg); }
  .intake-form { padding: 24px 20px; }
  .confirmation-card { padding: 40px 24px; }
}
