/* ── Shared VS Detail Page Styles ── */
.vsd-hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 50px; overflow: hidden;
}
.vsd-hero__content { position: relative; z-index: 1; max-width: 800px; }
.vsd-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); background: rgba(20, 20, 32, 0.5);
  font-size: 13px; color: var(--text-secondary); margin-bottom: 24px;
}
.vsd-hero__title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--text-primary); margin-bottom: 16px; line-height: 1.2;
}
.vsd-hero__title .gradient {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vsd-hero__sub {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; max-width: 650px; margin: 0 auto;
}

/* ── TLDR ── */
.vsd-tldr { max-width: 900px; margin: 0 auto; padding: 0 24px 40px; }
.vsd-tldr__box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(196, 248, 42, 0.04));
  border: 1px solid rgba(124, 58, 237, 0.2); border-radius: var(--radius-md);
  padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.vsd-tldr__col h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.vsd-tldr__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vsd-tldr__col li {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.vsd-tldr__col li::before { content: '→'; position: absolute; left: 0; color: var(--text-muted); }

/* ── About Section ── */
.vsd-about { max-width: 900px; margin: 0 auto; padding: 40px 24px 60px; }
.vsd-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vsd-about__card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px; transition: all 0.3s;
}
.vsd-about__card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.vsd-about__card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.vsd-about__card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Feature Table ── */
.vsd-features { max-width: 900px; margin: 0 auto; padding: 40px 24px 60px; }
.vsd-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vsd-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.vsd-table thead th {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  text-align: center; padding: 16px 14px; background: var(--bg-card);
  border-bottom: 2px solid var(--border-subtle); color: var(--text-primary);
  position: sticky; top: 0; white-space: nowrap;
}
.vsd-table thead th:first-child { text-align: left; min-width: 200px; }
.vsd-table thead th.hl { color: var(--accent-lime); background: rgba(196, 248, 42, 0.05); border-bottom-color: var(--accent-lime); }
.vsd-table thead th.competitor { color: #f472b6; background: rgba(244, 114, 182, 0.05); border-bottom-color: #f472b6; }
.vsd-table tbody td {
  padding: 12px 14px; border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem; color: var(--text-secondary); text-align: center;
}
.vsd-table tbody td:first-child { font-weight: 600; color: var(--text-primary); text-align: left; }
.vsd-table tbody td.hl { background: rgba(196, 248, 42, 0.03); }
.vsd-table tbody td.competitor { background: rgba(244, 114, 182, 0.03); }
.vsd-table tbody tr { transition: background 0.2s; }
.vsd-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.vsd-check { color: var(--accent-lime); font-weight: 700; }
.vsd-cross { color: var(--text-muted); }
.vsd-partial { color: var(--cta-orange); font-size: 0.8rem; }
.vsd-best { color: var(--accent-lime); font-weight: 700; font-size: 0.8rem; }
.vsd-comp-best { color: #f472b6; font-weight: 700; font-size: 0.8rem; }

/* ── Pricing Section ── */
.vsd-pricing { max-width: 900px; margin: 0 auto; padding: 40px 24px 60px; }
.vsd-pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vsd-price-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px; position: relative; overflow: hidden;
}
.vsd-price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.vsd-price-card--cm::before { background: linear-gradient(90deg, var(--accent-lime), var(--accent-green)); }
.vsd-price-card--comp::before { background: linear-gradient(90deg, #f472b6, #c084fc); }
.vsd-price-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.vsd-price-card .price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 16px;
}
.vsd-price-card--cm .price { color: var(--accent-lime); }
.vsd-price-card--comp .price { color: #f472b6; }
.vsd-price-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vsd-price-card li {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.vsd-price-card li::before { content: '•'; position: absolute; left: 6px; color: var(--text-muted); }

/* ── Honest Take ── */
.vsd-honest { max-width: 900px; margin: 0 auto; padding: 0 24px 60px; }
.vsd-honest__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vsd-honest__card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 24px;
}
.vsd-honest__card h3 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.vsd-honest__card--pro h3 { color: var(--accent-lime); }
.vsd-honest__card--con h3 { color: var(--cta-orange); }
.vsd-honest__card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.vsd-honest__card li { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; padding-left: 16px; position: relative; }
.vsd-honest__card--pro li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-lime); font-weight: 700; }
.vsd-honest__card--con li::before { content: '✗'; position: absolute; left: 0; color: var(--cta-orange); font-weight: 700; }

/* ── Decision Section ── */
.vsd-decision { max-width: 900px; margin: 0 auto; padding: 40px 24px 60px; }
.vsd-decision__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vsd-dec-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 24px; transition: all 0.3s;
}
.vsd-dec-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.vsd-dec-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.vsd-dec-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vsd-dec-card li {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.vsd-dec-card li::before { content: '→'; position: absolute; left: 0; color: var(--text-muted); }

/* ── Disclaimer ── */
.vsd-disclaimer {
  max-width: 700px; margin: 0 auto; padding: 24px;
  background: rgba(124, 58, 237, 0.06); border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-md); text-align: center;
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.vsd-disclaimer a { color: var(--accent-lime); text-decoration: underline; text-underline-offset: 3px; }
.vsd-disclaimer a:hover { color: var(--text-primary); }

/* ── CTA ── */
.vsd-cta {
  text-align: center; padding: 60px 24px 80px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.vsd-cta__title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--text-primary); margin-bottom: 8px;
}
.vsd-cta__sub { color: var(--text-secondary); margin-bottom: 16px; font-size: 1.05rem; }
.vsd-cta__link { color: var(--text-muted); font-size: 0.9rem; }
.vsd-cta__link:hover { color: var(--text-primary); }

/* ── Pro Tip ── */
.vsd-protip {
  text-align: center; margin-top: 24px; padding: 20px;
  background: rgba(6, 182, 212, 0.06); border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-md); font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
}

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .vsd-tldr__box { grid-template-columns: 1fr; }
  .vsd-about__grid { grid-template-columns: 1fr; }
  .vsd-pricing__grid { grid-template-columns: 1fr; }
  .vsd-decision__grid { grid-template-columns: 1fr; }
  .vsd-honest__grid { grid-template-columns: 1fr; }
  .vsd-table { font-size: 0.75rem; }
}
