body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ═══════════════════ HERO ═══════════════════ */
.vs-hero {
  padding: 9rem 2rem 3.5rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.vs-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.vs-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.vs-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 1.1rem;
}

.vs-brand-name,
.vs-brand-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  line-height: 1;
}

.vs-brand-name {
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.26);
  color: var(--text-bright);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vs-brand-tag {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.18), rgba(var(--primary-rgb), 0.08));
  border: 1px solid rgba(var(--primary-rgb), 0.22);
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vs-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin: 0 0 1.25rem;
}

.vs-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.vs-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════ SECTION ═══════════════════ */
.vs-section {
  padding: 4rem 2rem;
}

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

.vs-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin: 0 0 1.5rem;
  text-align: center;
}

/* ═══════════════════ TABLE ═══════════════════ */
.comparison-matrix-wrap {
  overflow-x: auto;
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.08), transparent 52%),
    rgba(var(--bg-rgb), 0.45);
  box-shadow:
    0 18px 45px rgba(var(--bg-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.comparison-matrix {
  min-width: 760px;
}

.comparison-matrix-row {
  display: grid;
  grid-template-columns: 34% 36% 30%;
  border-bottom: 1px solid var(--border);
}

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

.comparison-matrix-cell {
  min-width: 0;
  padding: 1rem 1.25rem;
  line-height: 1.45;
  font-size: 0.95rem;
}

.comparison-matrix-head .comparison-matrix-cell {
  background: rgba(var(--bg-rgb), 0.72);
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.comparison-matrix-carstat {
  background:
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.075), rgba(var(--primary-rgb), 0.035));
  box-shadow:
    inset 1px 0 0 rgba(var(--primary-rgb), 0.24),
    inset -1px 0 0 rgba(var(--primary-rgb), 0.24);
}

.comparison-matrix-head .comparison-matrix-carstat {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.2), transparent 70%),
    rgba(var(--primary-rgb), 0.09);
}

.comparison-matrix-row:not(.comparison-matrix-head):hover .comparison-matrix-cell {
  background: rgba(var(--primary-rgb), 0.025);
}

.comparison-matrix-row:not(.comparison-matrix-head):hover .comparison-matrix-carstat {
  background: rgba(var(--primary-rgb), 0.08);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(var(--primary-rgb), 0.16);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.08), transparent 52%),
    rgba(var(--bg-rgb), 0.45);
  box-shadow:
    0 18px 45px rgba(var(--bg-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--surface);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
  line-height: 1.45;
}

.compare-table thead th {
  color: var(--text-bright);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.col-feature {
  width: 34%;
}

.col-carstat {
  width: 36%;
  background:
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.075), rgba(var(--primary-rgb), 0.035));
  box-shadow:
    inset 1px 0 0 rgba(var(--primary-rgb), 0.24),
    inset -1px 0 0 rgba(var(--primary-rgb), 0.24);
}

.col-other {
  width: 30%;
}

.compare-table thead .col-carstat {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.2), transparent 70%),
    rgba(var(--primary-rgb), 0.09);
}

.compare-table tbody tr:hover td {
  background: rgba(var(--primary-rgb), 0.025);
}

.compare-table tbody tr:hover .col-carstat {
  background: rgba(var(--primary-rgb), 0.08);
}

.carstat-header {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.carstat-logo-text {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: none;
}

.carstat-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.26rem 0.48rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  font-size: 0.7rem;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.feature-name span:first-child {
  color: var(--text);
  font-weight: 600;
}

.feature-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

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

.matrix-affirmative {
  color: var(--success);
  font-weight: 700;
  font-size: 0.92rem;
}

.matrix-strong {
  color: var(--text-bright);
  font-weight: 700;
  font-size: 0.92rem;
}

.matrix-qualified {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.matrix-muted {
  color: var(--text-subtle);
  font-weight: 600;
}

/* ═══════════════════ DISCLAIMER + LINKS ═══════════════════ */
.vs-disclaimer {
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-align: center;
  margin-top: 1.25rem;
}

.vs-date {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}

.vs-links {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.vs-links a {
  color: var(--primary);
  text-decoration: none;
}

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

/* ═══════════════════ CTA ═══════════════════ */
.vs-cta {
  padding: 5rem 2rem;
  text-align: center;
}

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

.vs-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-bright);
  margin: 0 0 0.75rem;
}

.vs-cta p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* ═══════════════════ MOBILE ═══════════════════ */
@media (max-width: 640px) {
  .vs-hero {
    padding: 7rem 1.25rem 3rem;
  }

  .vs-section {
    padding: 3rem 1.25rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.85rem 0.9rem;
    font-size: 0.875rem;
  }

  .comparison-matrix-cell {
    padding: 0.85rem 0.9rem;
    font-size: 0.875rem;
  }

  .vs-brand-lockup {
    gap: 0.5rem;
  }

  .vs-brand-name,
  .vs-brand-tag {
    padding: 0.5rem 0.8rem;
  }
}
