/* =================================================================
   Scouq - Comparison pages shared styles
   ================================================================= */

html {
  scroll-padding-top: 80px;
}

.vs-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background */
.vs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Page layout */
.vs-wrap {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

/* Page header */
.vs-page-header {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

.vs-page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #ffffff;
}

.vs-tldr {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 48px;
  max-width: 700px;
}

/* Breadcrumb */
.vs-breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.vs-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.vs-breadcrumb a:hover {
  color: rgba(255,255,255,0.8);
}

/* Section headings */
.vs-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: #ffffff;
}

/* Feature table */
.vs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

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

.vs-table thead tr {
  background: rgba(255,255,255,0.05);
}

.vs-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vs-table thead th:first-child {
  width: 50%;
}

.vs-table thead th:not(:first-child) {
  text-align: center;
  width: 25%;
}

.vs-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.12s;
}

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

.vs-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.vs-table tbody td {
  padding: 13px 18px;
  color: rgba(255,255,255,0.75);
  vertical-align: middle;
}

.vs-table tbody td:not(:first-child) {
  text-align: center;
}

.vs-table tbody td.feature-name {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

/* Check / dash indicators */
.vs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vs-check svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
}

.vs-dash {
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  line-height: 1;
}

.vs-varies {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Pros/cons blocks */
.vs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .vs-split {
    grid-template-columns: 1fr;
  }
}

.vs-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 22px;
}

.vs-block-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.vs-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-block ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.vs-block ul li:last-child {
  border-bottom: none;
}

/* CTA */
.vs-cta-wrap {
  margin-top: 56px;
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  text-align: center;
}

.vs-cta-wrap h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.vs-cta-wrap p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 24px;
}

.vs-cta-btn {
  display: inline-block;
  padding: 13px 32px;
  background: #ffffff;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.vs-cta-btn:hover {
  opacity: 0.88;
}

/* Hub index page */
.vs-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.vs-hub-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, background 0.15s;
}

.vs-hub-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

.vs-hub-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.vs-hub-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Disclosure */
.vs-disclosure {
  margin-top: 40px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
