:root {
  --bg: #0a0e14;
  --bg-alt: #111820;
  --bg-card: #141c26;
  --fg: #f0f4f8;
  --fg-muted: #7b8a93;
  --accent: #00e5c3;
  --accent-dim: #00b39e;
  --red: #ff6b6b;
  --yellow: #ffd93d;
  --green: #4ade80;
  --border: #1e2d3d;
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'IBM Plex Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  color: var(--accent);
  font-size: 20px;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

/* CODE WINDOW */
.code-window {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.code-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.code-filename {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
}
.code-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-muted);
  overflow-x: auto;
}
.code-keyword { color: var(--accent); }
.code-key { color: var(--fg); }
.code-string { color: var(--yellow); }

/* REVIEW CARD */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
}
.rc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.rc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-label { font-size: 12px; color: var(--fg-muted); flex: 1; }
.rc-time { font-size: 11px; color: var(--fg-muted); }

.rc-severity {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.sev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.rc-critical .sev-dot { background: var(--red); }
.rc-warning .sev-dot { background: var(--yellow); }
.rc-good .sev-dot { background: var(--green); }
.sev-body {}
.sev-title { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.sev-file { font-size: 11px; color: var(--fg-muted); margin-bottom: 4px; }
.sev-fix { font-size: 12px; color: var(--fg-muted); }

.rc-summary {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-alt);
}
.summary-count { color: var(--accent); font-weight: 600; }

/* STATS */
.stats {
  padding: 50px 40px;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 180px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* SECTION SHARED */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--fg);
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hiw-step {}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* FEATURES */
.features {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feat-icon {
  font-size: 24px;
  margin-bottom: 16px;
}
.feat-title {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.feat-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.feat-link { margin-top: 12px; }
.feat-link a { font-size: 12px; color: #4ade80; text-decoration: none; border-bottom: 1px dashed #4ade80; padding-bottom: 1px; }
.feat-link a:hover { color: #86efac; border-bottom-color: #86efac; }

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}
.manifesto-rule:last-child { margin-bottom: 0; margin-top: 48px; }
.manifesto-quote {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 28px;
  border: none;
}
.manifesto-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.footer-logo span:first-child { color: var(--accent); }
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  display: block;
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* INSTALL BUTTON */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.btn-install {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-install:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.btn-install-large {
  font-size: 16px;
  padding: 16px 32px;
  margin-top: 32px;
}
.btn-icon { flex-shrink: 0; }
.btn-reviews {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.btn-reviews:hover { color: var(--fg); }

/* CLOSING CTA update */
.closing .btn-install { display: inline-flex; }

/* PRICING STRIP */
.pricing {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-amount {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pricing-divider {
  font-size: 20px;
  color: var(--fg-muted);
}
.pricing-future {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 320px;
  text-align: right;
}

/* WELCOME PAGE */
.welcome-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
}
.welcome-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.welcome-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,229,195,0.12);
  color: var(--accent);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 2px solid rgba(0,229,195,0.3);
}
.welcome-headline {
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}
.welcome-account { color: var(--accent); }
.welcome-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.welcome-sub a { color: var(--accent); text-decoration: none; }
.welcome-sub a:hover { text-decoration: underline; }
.welcome-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 140px;
  text-align: left;
}
.flow-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.flow-text { display: flex; flex-direction: column; gap: 3px; }
.flow-text strong { font-size: 13px; color: var(--fg); font-weight: 600; }
.flow-text span { font-size: 11px; color: var(--fg-muted); line-height: 1.4; }
.flow-arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--fg-muted);
  align-self: center;
  padding-top: 0;
}
.welcome-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-dim); }
.btn-secondary {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--fg); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .navbar { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .pricing-strip { flex-direction: column; }
  .pricing-note { text-align: left; }
  .welcome-flow { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); }
  .flow-step { max-width: 100%; width: 100%; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .waitlist-input { width: 100%; }
  .hero-cta-secondary { flex-direction: column; align-items: flex-start; gap: 10px; }
  .closing-cta-row { flex-direction: column; align-items: center; gap: 12px; }
}

/* WAITLIST FORMS */
.waitlist-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.waitlist-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-input:focus {
  border-color: var(--accent);
}
.waitlist-input::placeholder {
  color: var(--fg-muted);
}
.btn-waitlist {
  padding: 12px 22px;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-waitlist:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.waitlist-success {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-cta-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-reserve {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.btn-reserve:hover { color: var(--accent-dim); }
.btn-reserve-large {
  font-size: 15px;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 12px;
  padding: 14px 28px;
  border: none;
  background: var(--bg-alt);
  color: var(--accent);
  border-radius: 6px;
  border: 1px solid var(--accent);
}
.btn-reserve-large:hover {
  background: var(--accent);
  color: #0a0e14;
}
.btn-analyze-demo {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 6px;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}
.btn-analyze-demo:hover { border-color: var(--accent); color: var(--accent); }
.btn-install-small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.btn-install-small:hover { color: var(--fg); }
.hero-case-link {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-family: var(--font-mono);
}
.hero-case-link a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.hero-case-link a:hover { color: var(--fg); }
.closing-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.waitlist-form-closing {
  justify-content: center;
  margin-top: 32px;
}
.waitlist-form-closing .waitlist-input {
  max-width: 300px;
}

/* ============================================================
   VS / COMPARISON PAGE
   ============================================================ */

/* Hero */
.vs-hero {
  padding: 72px 40px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.vs-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vs-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.vs-headline {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--fg);
}
.vs-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.vs-sub strong { color: var(--fg); }
.vs-competitor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vs-comp-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 4px;
}
.vs-comp-sep { color: var(--border); }

/* Section shared */
.vs-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}
.vs-section-headline {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--fg);
  line-height: 1.2;
}

/* Matrix section */
.vs-matrix-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.vs-matrix-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vs-matrix-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 780px;
  line-height: 1.7;
}
.vs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  min-width: 900px;
}
.vs-table thead tr {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
}
.vs-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--fg);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.vs-table th.col-pl {
  color: var(--accent);
  background: rgba(0, 229, 195, 0.06);
}
.vs-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.6;
}
.vs-table tr:last-child td { border-bottom: none; }
.vs-table tr:hover td { background: rgba(255,255,255,0.02); }
.feature-label {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  font-size: 12px;
}
.pl-cell.highlight-cell {
  background: rgba(0, 229, 195, 0.05);
  border-left: 2px solid var(--accent);
  color: var(--fg);
  font-weight: 500;
}
.cell-detail {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 3px;
  font-weight: 400;
}
.cell-strong { color: var(--fg); font-weight: 600; }
.cell-strong.accent { color: var(--accent); font-size: 14px; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.badge-green { background: rgba(74,222,128,0.12); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.badge-red { background: rgba(255,107,107,0.1); color: var(--red); border: 1px solid rgba(255,107,107,0.2); }
.badge-yellow { background: rgba(255,217,61,0.1); color: var(--yellow); border: 1px solid rgba(255,217,61,0.2); }
.unclear {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.vs-sources {
  margin-top: 20px;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.vs-sources a { color: var(--fg-muted); text-decoration: underline; }
.vs-sources a:hover { color: var(--accent); }

/* Narrative sections */
.vs-narrative {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.vs-narrative-alt {
  background: var(--bg-alt);
}
.vs-narrative-inner {
  max-width: 800px;
  margin: 0 auto;
}
.vs-narrative-headline {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 28px;
}
.vs-narrative-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.vs-narrative-body p:last-child { margin-bottom: 0; }
.vs-narrative-body strong { color: var(--fg); }
.vs-callout {
  margin-top: 32px;
  padding: 18px 20px;
  background: rgba(255,107,107,0.06);
  border: 1px solid rgba(255,107,107,0.2);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.vs-callout-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.vs-callout-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.vs-callout-text strong { color: var(--fg); }

/* Price comparison */
.vs-price-compare {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.vs-price-item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vs-price-item-pl {
  border-color: var(--accent);
  background: rgba(0,229,195,0.05);
}
.vs-price-tool {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}
.vs-price-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.vs-price-val.red { color: var(--red); }
.vs-price-val.green { color: var(--accent); }
.vs-price-note {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Demo section */
.vs-demo-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
}
.vs-demo-inner { max-width: 640px; margin: 0 auto; }
.vs-demo-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.vs-demo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-demo-large {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0e14;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-demo-large:hover { background: var(--accent-dim); }
.btn-casestudy {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 1px;
}
.btn-casestudy:hover { color: var(--accent-dim); }

/* CTA section */
.vs-cta-section {
  padding: 100px 40px;
  text-align: center;
}
.vs-cta-inner { max-width: 600px; margin: 0 auto; }
.vs-cta-headline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 16px;
}
.vs-cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.waitlist-form-centered {
  justify-content: center;
  margin-bottom: 16px;
}
.vs-cta-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

/* VS mobile */
@media (max-width: 768px) {
  .vs-hero { padding: 48px 20px 40px; }
  .vs-matrix-section { padding: 48px 20px; }
  .vs-narrative { padding: 48px 20px; }
  .vs-demo-section { padding: 48px 20px; }
  .vs-cta-section { padding: 60px 20px; }
  .vs-price-compare { grid-template-columns: 1fr 1fr; }
  .vs-competitor-logos { gap: 6px; }
  .vs-comp-name { font-size: 11px; padding: 4px 10px; }
  .vs-demo-cta { flex-direction: column; align-items: center; }
}