/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --surface: #161616;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --text: #f0ede8;
  --text-dim: #888;
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grid texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--text);
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.nav-cta:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 32px 72px;
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-weight: 500;
}

.label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}

.hero-headline-sub {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 4px;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 440px;
}

/* stat block */
.hero-col-stat { }

.hero-stat-block {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  display: inline-block;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.4;
}

.hero-sub-stats {
  display: flex;
  gap: 32px;
}

.sub-stat { }

.sub-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
}

.sub-desc {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 3px;
  line-height: 1.4;
}

/* ===== PROOF ===== */
.proof {
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-label {
  font-size: 15px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 52px;
  font-style: italic;
}

.proof-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.pillar:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.pillar-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== LOOP ===== */
.loop {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
}

.loop-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.loop-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text);
  margin-bottom: 56px;
  line-height: 1.2;
}

.loop-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  align-self: center;
  position: relative;
}

.step-connector::after {
  content: '>';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-display);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 3px;
}

.step-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== PRINCIPLES ===== */
.principles {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.principles-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.principles-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--text);
}

.principles-body {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.7;
}

.principle {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}

.principle:first-child { border-top: 1px solid var(--border); }

.principle strong { color: var(--text); }

/* ===== MANIFESTO ===== */
.manifesto {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
}

.manifesto-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-right: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-sep { color: var(--accent); }

.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.5;
  margin-top: 8px;
}

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

  .hero-col-stat {
    display: block;
  }

  .hero-stat-block {
    display: block;
  }

  .proof-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .loop-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .step-connector {
    width: auto;
    height: 20px;
    background: none;
  }

  .step-connector::after { display: none; }

  .principles-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 56px; }
  .proof { padding: 56px 20px; }
  .loop { padding: 56px 20px; }
  .principles { padding: 56px 20px; }
  .manifesto { padding: 56px 20px; }
  .footer { padding: 40px 20px; }

  .nav-inner { padding: 14px 20px; }

  .hero-headline { font-size: 48px; }

  .proof-pillars {
    grid-template-columns: 1fr;
  }

  .hero-sub-stats {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-logo { margin-right: 0; }

  /* ===== CTA BUTTONS ===== */
  .hero-cta-group {
    margin-top: 32px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
  }

  .btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-1px);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .btn-arrow {
    font-size: 18px;
    line-height: 1;
  }

  .hero-cta-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 10px;
    letter-spacing: 0.03em;
  }

  /* ===== SECTION LABEL ===== */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 500;
  }

  .label-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
  }

  /* ===== FEATURES ===== */
  .features {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
  }

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

  .features-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.2;
  }

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

  .feature-card {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
  }

  .feature-card-highlight {
    border-color: rgba(245, 158, 11, 0.25);
  }

  .feature-watermark {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 10px;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .feature-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 12px;
  }

  .feature-card > p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .feature-list li {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .feature-list li::before {
    content: '›';
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ===== PILOT OFFER ===== */
  .pilot-offer {
    position: relative;
    z-index: 1;
    padding: 96px 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .offer-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .offer-badge {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 28px;
  }

  .offer-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .offer-body {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .offer-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .price-tag {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    color: var(--accent);
  }

  .price-dollar {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    margin-top: 10px;
  }

  .price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 80px;
    line-height: 1;
  }

  .price-meta {
    text-align: left;
  }

  .price-one-time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
  }

  .price-reinv {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
    max-width: 200px;
    line-height: 1.4;
  }

  .offer-includes {
    text-align: left;
    margin-bottom: 40px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .includes-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .include-item {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
  }

  .include-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 14px;
  }

  .stripe-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    cursor: pointer;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
  }

  .stripe-checkout-btn:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(245, 158, 11, 0.4);
  }

  .stripe-checkout-btn:active {
    transform: translateY(0);
  }

  .offer-security-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .offer-security-note svg {
    flex-shrink: 0;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
  }

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonials-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.2;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .testimonial-card {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .testimonial-quote {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
  }

  .author-role {
    font-size: 12px;
    color: var(--text-dim);
  }

  .trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .trust-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--accent);
  }

  .trust-label {
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
  }

  .trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  /* ===== FAQ ===== */
  .faq {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
  }

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

  .faq-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.2;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:first-child {
    border-top: 1px solid var(--border);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.15s;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-toggle {
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .faq-q.open .faq-toggle { transform: rotate(45deg); }

  .faq-a {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.65;
    padding: 0 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-a.open { max-height: 200px; }

  /* ===== RESPONSIVE UPDATES ===== */
  .features { padding: 72px 32px; }
  .pilot-offer { padding: 80px 32px; }
  .testimonials { padding: 72px 32px; }
  .faq { padding: 72px 32px; }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .includes-grid {
    grid-template-columns: 1fr;
  }

  .trust-divider { display: none; }
  .trust-badges { gap: 20px; }

  .stripe-checkout-btn { max-width: 100%; font-size: 16px; }

  .offer-price-block { flex-direction: column; align-items: center; }
  .price-meta { text-align: center; }
  .price-reinv { max-width: none; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 56px; }
  .proof { padding: 56px 20px; }
  .features { padding: 56px 20px; }
  .loop { padding: 56px 20px; }
  .pilot-offer { padding: 56px 20px; }
  .testimonials { padding: 56px 20px; }
  .principles { padding: 56px 20px; }
  .manifesto { padding: 56px 20px; }
  .faq { padding: 56px 20px; }
  .footer { padding: 40px 20px; }
  .comparison { padding: 56px 20px; }

  .nav-inner { padding: 14px 20px; }

  .hero-headline { font-size: 42px; }
  .hero-headline-sub { font-size: 20px; }

  .proof-pillars {
    grid-template-columns: 1fr;
  }

  .hero-sub-stats {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-logo { margin-right: 0; }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-divider { display: none; }

  /* ===== COMPETITION TABLE ===== */
  .comparison {
    position: relative;
    z-index: 1;
    padding: 80px 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
  }

  .comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .comparison-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .comparison-sub {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 48px;
    line-height: 1.6;
  }

  .comp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
  }

  .comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
  }

  .comp-table th,
  .comp-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: top;
  }

  .comp-table thead th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-dim);
    background: var(--surface);
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .comp-ventis-header {
    background: var(--accent-dim) !important;
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
  }

  .comp-ventis-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-display);
    margin-bottom: 4px;
  }

  .comp-ventis-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-display);
  }

  .comp-onetime {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dim);
  }

  .comp-feature-col { width: 26%; }

  .comp-row-highlight td { background: rgba(255,255,255,0.02); }

  .comp-feature {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
  }

  .comp-yes {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .comp-check {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .comp-detail {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 400;
    margin-top: 3px;
  }

  .comp-no { color: var(--text-dim); }
  .comp-limited { color: var(--text-dim); font-style: italic; }
  .comp-extra { color: var(--text-dim); font-style: italic; }

  .comp-row-price td {
    background: var(--surface);
    border-top: 2px solid var(--accent);
  }

  .comp-ventis-price-row strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--accent);
  }

  .comp-onetime-row {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 3px;
  }

  .comp-price-cell strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
  }

  .comp-price-cell span {
    font-size: 13px;
    color: var(--text-dim);
  }

  .comp-cta-row {
    text-align: center;
  }

  .comp-cta-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 16px;
  }

  .comp-cta-row .stripe-checkout-btn {
    max-width: 360px;
    margin: 0 auto;
  }

  /* ===== FEATURE CARD HIGHLIGHT ===== */
  .feature-card-highlight {
    border-color: rgba(245, 158, 11, 0.3);
    position: relative;
  }

  .feature-watermark {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.6;
  }
}