/* ── vs-hub.css  ·  Steel-slate design system for comparison pages ── */

/* ── 0  Variables ──────────────────────────────────────── */
.vs-hub{
  --vs-bg:        #131619;
  --vs-surface:   #1a1d23;
  --vs-accent:    #6b8aab;
  --vs-accent-dim:rgba(107,138,171,0.5);
  --vs-accent-lo: rgba(107,138,171,0.08);
  --vs-text:      #d5d8de;
  --vs-text-dim:  #8e939e;
  --vs-text-faint:#555b66;
  --vs-border:    rgba(107,138,171,0.10);
  --vs-border-hi: rgba(107,138,171,0.25);
  --vs-serif:     'Instrument Serif', Georgia, serif;
  --vs-accent-serif:'Cormorant Garamond', Georgia, serif;
  --vs-mono:      'IBM Plex Mono','Courier New', monospace;
  --vs-sans:      'DM Sans', system-ui, sans-serif;
}

/* ── 1  Page base ──────────────────────────────────────── */
.vs-hub{
  background: var(--vs-bg);
  color:      var(--vs-text);
  font-family:var(--vs-sans);
  min-height: 100vh;
}

/* grain overlay */
.vs-hub .vs-grain{
  position:fixed;inset:0;pointer-events:none;z-index:9999;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:180px;
}

/* atmospheric glow */
.vs-hub .vs-atmo{
  position:fixed;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 30%,
      rgba(107,138,171,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 60%,
      rgba(107,138,171,0.02) 0%, transparent 60%);
}

/* ── 2  Hero ───────────────────────────────────────────── */
.vs-hero{
  position:relative;z-index:1;
  max-width:740px;margin:0 auto;
  padding:100px 32px 56px;
  text-align:center;
}
.vs-hero .vs-label{
  font-family:var(--vs-mono);
  font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--vs-accent);
  margin-bottom:18px;
}
.vs-hero h1{
  font-family:var(--vs-serif);
  font-size:clamp(28px,4.5vw,46px);
  font-weight:400;font-style:italic;
  line-height:1.2;
  color:var(--vs-text);
  margin:0 0 22px;
}
.vs-hero h1 em{
  font-style:normal;
  color:var(--vs-accent);
}
.vs-hero .vs-lead{
  font-size:16px;line-height:1.7;
  color:var(--vs-text-dim);
  max-width:620px;margin:0 auto 32px;
}
.vs-hero .vs-cta-row{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}

/* ── 3  Buttons ────────────────────────────────────────── */
.vs-hub .vs-btn{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--vs-mono);font-size:12px;letter-spacing:.06em;
  text-decoration:none;
  padding:10px 22px;border-radius:2px;
  transition:all .35s;
}
.vs-hub .vs-btn-primary{
  background:var(--vs-accent);color:#131619;
  border:1px solid var(--vs-accent);
}
.vs-hub .vs-btn-primary:hover{
  background:transparent;color:var(--vs-accent);
}
.vs-hub .vs-btn-secondary{
  background:transparent;color:var(--vs-accent);
  border:1px solid var(--vs-border-hi);
}
.vs-hub .vs-btn-secondary:hover{
  border-color:var(--vs-accent);
  background:var(--vs-accent-lo);
}

/* ── 4  Article body ───────────────────────────────────── */
.vs-article{
  position:relative;z-index:1;
  max-width:740px;margin:0 auto;
  padding:0 32px 80px;
}
.vs-article h2{
  font-family:var(--vs-serif);
  font-size:clamp(20px,3vw,28px);
  font-weight:400;font-style:italic;
  color:var(--vs-text);
  margin:56px 0 18px;
  padding-top:40px;
  border-top:1px solid var(--vs-border);
}
.vs-article h2:first-child{
  border-top:none;padding-top:0;margin-top:0;
}
.vs-article p{
  font-size:15px;line-height:1.75;
  color:var(--vs-text-dim);
  margin:0 0 16px;
}
.vs-article a{
  color:var(--vs-accent);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-color:var(--vs-accent-dim);
  transition:text-decoration-color .3s;
}
.vs-article a:hover{
  text-decoration-color:var(--vs-accent);
}
.vs-article ul,
.vs-article ol{
  padding-left:20px;margin:0 0 20px;
}
.vs-article li{
  font-size:15px;line-height:1.75;
  color:var(--vs-text-dim);
  margin-bottom:12px;
}
.vs-article li strong{
  color:var(--vs-text);
  font-weight:600;
}
.vs-article em{
  font-style:italic;
  color:var(--vs-text);
}

/* ── 5  Comparison table ───────────────────────────────── */
.vs-table-wrap{
  margin:48px 0;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.vs-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--vs-border);
  border-radius:3px;
  overflow:hidden;
}
.vs-table thead{
  background:rgba(107,138,171,0.06);
}
.vs-table th{
  font-family:var(--vs-mono);
  font-size:11px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--vs-accent);
  text-align:left;
  padding:14px 18px;
  border-bottom:1px solid var(--vs-border-hi);
}
.vs-table th:first-child{
  width:130px;
}
.vs-table td{
  font-size:14px;line-height:1.65;
  color:var(--vs-text-dim);
  padding:14px 18px;
  border-bottom:1px solid var(--vs-border);
  vertical-align:top;
}
.vs-table tr:last-child td{
  border-bottom:none;
}
.vs-table tbody tr{
  transition:background .3s;
}
.vs-table tbody tr:hover{
  background:rgba(107,138,171,0.03);
}
/* Highlight WROITER column */
.vs-table td:last-child{
  color:var(--vs-text);
}
/* Dimension label in first column */
.vs-table td:first-child{
  font-family:var(--vs-mono);
  font-size:12px;letter-spacing:.04em;
  color:var(--vs-text-faint);
  text-transform:uppercase;
}

/* ── 6  Verdict callout ────────────────────────────────── */
.vs-callout{
  margin:40px 0;
  padding:24px 28px;
  border-left:3px solid var(--vs-accent);
  background:rgba(107,138,171,0.04);
  border-radius:0 2px 2px 0;
}
.vs-callout-label{
  font-family:var(--vs-mono);
  font-size:11px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--vs-accent);
  margin-bottom:10px;
}
.vs-callout p{
  font-size:15px;line-height:1.7;
  color:var(--vs-text-dim);
  margin:0;
}

/* ── 7  Bottom CTA ─────────────────────────────────────── */
.vs-bottom-cta{
  text-align:center;
  padding:48px 32px 0;
  border-top:1px solid var(--vs-border);
  margin-top:56px;
}
.vs-bottom-cta h2{
  border-top:none;padding-top:0;margin-top:0;
}
.vs-bottom-cta p{
  max-width:520px;margin:0 auto 28px;
}
.vs-bottom-cta .vs-cta-row{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}

/* ── 8  Footer override ────────────────────────────────── */
.vs-hub .site-footer{
  background:var(--vs-bg);
  border-top:1px solid var(--vs-border);
}

/* ── 9  Responsive ─────────────────────────────────────── */
@media(max-width:768px){
  .vs-hero{padding:80px 20px 40px}
  .vs-article{padding:0 20px 60px}
  .vs-table th,
  .vs-table td{padding:10px 12px;font-size:13px}
  .vs-table th:first-child{width:100px}
  .vs-table td:first-child{font-size:11px}
  .vs-callout{padding:18px 20px}
}
