:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #1a1a1e;
  --fg: #e8e6e3;
  --fg-muted: #8a8889;
  --gold: #d4a843;
  --gold-glow: rgba(212, 168, 67, 0.15);
  --gold-bright: #f0c95c;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gold {
  color: var(--gold);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-label,
.features-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-card.faded {
  opacity: 0.55;
}

.tool-card span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.problem-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 700px;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 40px;
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.feature-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.feature-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-block p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========== NUMBERS ========== */
.numbers {
  padding: 80px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .problem,
  .features,
  .numbers,
  .closing {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .feature-blocks {
    grid-template-columns: 1fr;
  }

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-glow {
    width: 350px;
    height: 350px;
    top: -10%;
    right: -20%;
  }
}

@media (max-width: 480px) {
  .tool-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tool-card {
    padding: 14px;
  }

  .closing {
    padding: 80px 20px;
  }
}

/* ========== NAV ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ========== PAGE-SPECIFIC SECTIONS ========== */

/* Features page */
.features-page {
  padding: 140px 40px 100px;
}

.features-page .page-header {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}

.features-page .page-header .page-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.features-page .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.features-page .page-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-row-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.feature-row h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.feature-row p {
  color: var(--fg-muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

.feature-row ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-row ul li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.feature-row ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Pricing page */
.pricing-page {
  padding: 140px 40px 100px;
}

.pricing-page .page-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-page .page-header .page-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-page .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.pricing-page .page-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), inset 0 0 40px var(--gold-glow);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.87rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price .currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-top: 4px;
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a843' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-cta {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: var(--bg-card);
  color: var(--fg);
  border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
}

.pricing-card.featured .pricing-cta {
  background: var(--gold);
  color: #0a0a0b;
  border-color: var(--gold);
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--gold-bright);
}

.pricing-cta:hover {
  background: var(--bg-elevated);
}

/* About page */
.about-page {
  padding: 140px 40px 100px;
}

.about-page .page-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-page .page-header .page-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-page .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-page .page-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.about-section {
  max-width: 760px;
  margin: 0 auto 64px;
}

.about-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-section p {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 72px;
}

.about-value {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-value p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.about-divider {
  max-width: 760px;
  margin: 0 auto 64px;
  border: none;
  border-top: 1px solid var(--border);
}

.about-cta {
  max-width: 760px;
  margin: 0 auto 0;
  text-align: center;
  padding: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-cta p {
  color: var(--fg-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Shared section label */
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ========== WAITLIST CTA ========== */
.waitlist-section {
  padding: 80px 40px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  text-align: center;
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.waitlist-inner p {
  color: var(--fg-muted);
  font-size: 0.97rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.waitlist-form input {
  flex: 1;
  max-width: 320px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}

.waitlist-form input:focus {
  border-color: var(--gold);
}

.waitlist-form button {
  padding: 12px 24px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.waitlist-form button:hover {
  background: var(--gold-bright);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .features-page,
  .pricing-page,
  .about-page {
    padding: 100px 24px 60px;
  }

  .waitlist-section {
    padding: 60px 24px;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: center;
  }

  .waitlist-form input {
    max-width: 100%;
    width: 100%;
  }

  .waitlist-form button {
    width: 100%;
  }
}

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

/* Hero */
.vs-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.vs-hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.vs-hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.vs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.vs-hero-sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.vs-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.vs-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.vs-cta-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.vs-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.vs-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--fg);
}

.vs-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.vs-proof-check {
  color: var(--gold);
  font-weight: 700;
}

.vs-hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Sections */
.vs-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.vs-section-alt {
  background: var(--bg-elevated);
}

.vs-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.vs-section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.vs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.vs-section-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 48px;
}

/* Comparison table */
.vs-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vs-table thead {
  background: var(--bg-elevated);
}

.vs-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.vs-th-soloist {
  background: rgba(212, 168, 67, 0.05);
  color: var(--gold);
}

.vs-th-competitor {
  color: var(--fg-muted);
}

.vs-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.vs-table tbody tr:last-child {
  border-bottom: none;
}

.vs-table td {
  padding: 16px 20px;
  vertical-align: top;
}

.vs-tr-highlight {
  background: rgba(212, 168, 67, 0.04);
}

.vs-tr-difference {
  background: rgba(16, 163, 74, 0.04);
}

.vs-td-label {
  font-weight: 500;
  color: var(--fg);
  min-width: 180px;
}

.vs-td-soloist {
  background: rgba(212, 168, 67, 0.03);
}

.vs-td-competitor {
  color: var(--fg-muted);
}

.vs-check {
  color: #10b981;
  font-weight: 700;
  margin-right: 6px;
}

.vs-x {
  color: #ef4444;
  font-weight: 700;
  margin-right: 6px;
}

.vs-price-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
}

.vs-price-main.strike {
  text-decoration: line-through;
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.vs-price-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}

.vs-price-warn {
  color: #f59e0b !important;
}

.vs-highlight-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.vs-table-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* Comparison cards */
.vs-comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vs-comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}

.vs-cc-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.vs-cc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.vs-cc-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Features grid */
.vs-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.vs-feature-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.vs-feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.vs-feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.vs-feature-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Steps */
.vs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.vs-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vs-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.vs-step-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.vs-step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.vs-migrate-cta {
  text-align: center;
  padding-top: 16px;
}

/* Testimonials placeholder */
.vs-testimonials {
  text-align: center;
}

.vs-testimonial-placeholder {
  max-width: 480px;
  margin: 48px auto 0;
  padding: 56px 40px;
  background: var(--bg-elevated);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vs-testimonial-placeholder-icon {
  font-size: 40px;
  opacity: 0.5;
}

.vs-testimonial-placeholder p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Bottom CTA */
.vs-cta-section {
  padding: 100px 40px;
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.vs-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.vs-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.vs-cta-inner p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vs-cta-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Inline promo on features page */
.vs-inline-promo {
  padding: 32px 40px;
  background: rgba(212, 168, 67, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.vs-inline-promo-inner p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.vs-inline-promo-inner a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.vs-inline-promo-inner a:hover {
  text-decoration: underline;
}

/* Inline link on pricing page */
.vs-inline-link {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.vs-inline-link a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.vs-inline-link a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .vs-comparison-cards {
    grid-template-columns: 1fr;
  }

  .vs-features-grid {
    grid-template-columns: 1fr;
  }

  .vs-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vs-hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .vs-section {
    padding: 60px 24px;
  }

  .vs-cta-section {
    padding: 60px 24px;
  }

  .vs-inline-promo {
    padding: 24px;
  }

  .vs-table-wrap {
    font-size: 0.82rem;
  }

  .vs-table td,
  .vs-table th {
    padding: 12px 14px;
  }

  .vs-testimonial-placeholder {
    padding: 40px 24px;
  }

  .vs-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .vs-cta-primary,
  .vs-cta-secondary {
    text-align: center;
  }
}