/* ═══════════════════════════════════════════════════════════════
   LWServers V2 — vs.css
   Head-to-Head warzone compare page.  Requires base.css + nav.css.
═══════════════════════════════════════════════════════════════ */

:root {
  --vs-side-a:    #4ea832;          /* green */
  --vs-side-a-bg: rgba(78, 168, 50, 0.18);
  --vs-side-b:    #3d92b8;          /* cyan */
  --vs-side-b-bg: rgba(61, 146, 184, 0.18);
}

/* ──────────────────────────────────────────────────────────
   HEADER
────────────────────────────────────────────────────────── */
.vs-header {
  padding: 22px var(--page-px) 16px;
  border-bottom: 1px solid var(--border-1);
}
.vs-eyebrow {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.vs-title {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-1);
  margin: 0 0 6px;
}
.vs-sub {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
  max-width: 720px;
}

/* ──────────────────────────────────────────────────────────
   PICKER STRIP
────────────────────────────────────────────────────────── */
.vs-picker {
  margin: 16px var(--page-px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.vs-picker-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: var(--glass-bg);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: all var(--t-fast);
  min-width: 0;
}
.vs-picker-side:hover {
  border-color: var(--border-3);
  transform: translateY(-1px);
}
.vs-side-a { border-color: rgba(78, 168, 50, 0.32); }
.vs-side-b { border-color: rgba(61, 146, 184, 0.32); }
.vs-side-a:hover { border-color: var(--vs-side-a); }
.vs-side-b:hover { border-color: var(--vs-side-b); }

.vs-picker-tag {
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
}
.vs-side-a .vs-picker-tag { color: var(--vs-side-a); }
.vs-side-b .vs-picker-tag { color: var(--vs-side-b); }

.vs-picker-wz {
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-1);
  line-height: 1.1;
}
.vs-picker-meta {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--text-3);
}

.vs-swap-btn {
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow-2);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.vs-swap-btn:hover { background: var(--accent-glow); border-color: var(--accent); transform: rotate(180deg); }

/* ──────────────────────────────────────────────────────────
   EMPTY + LOADING
────────────────────────────────────────────────────────── */
.vs-empty {
  margin: 28px var(--page-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
  border: 1px dashed var(--border-2);
  border-radius: var(--r-lg);
  background: var(--glass-bg-3);
}
.vs-empty.hidden { display: none; }
.vs-empty-text {
  font-size: 13px;
  color: var(--text-2);
  max-width: 360px;
  line-height: 1.5;
}

.vs-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 20px;
  font-size: 13px;
  color: var(--text-2);
}
.vs-loading.hidden { display: none; }

/* ──────────────────────────────────────────────────────────
   SECTION SCAFFOLD
────────────────────────────────────────────────────────── */
.vs-comparison { padding: 0 var(--page-px) 24px; }
.vs-comparison.hidden { display: none; }

.vs-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 12px;
}
.vs-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-glow-2);
  border: 1px solid var(--accent-border);
}
.vs-section-head > span:not(.vs-num) {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-1);
}

/* ──────────────────────────────────────────────────────────
   01 · HERO STATS
────────────────────────────────────────────────────────── */
.vs-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
  padding: 8px;
}
.vs-hero-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: var(--glass-bg-3);
}
.vs-hero-val {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
}
.vs-hero-val.leads { color: var(--text-1); font-size: 16px; font-weight: 800; }
.vs-hero-val-a { text-align: right; }
.vs-hero-val-b { text-align: left; }
.vs-hero-val-a.leads { color: var(--vs-side-a); }
.vs-hero-val-b.leads { color: var(--vs-side-b); }
.vs-hero-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}
.vs-hero-lbl {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────
   02 · POWER BALANCE
────────────────────────────────────────────────────────── */
.vs-balance-card {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-balance-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.vs-balance-side {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.vs-balance-side-a { color: var(--vs-side-a); }
.vs-balance-side-b { color: var(--vs-side-b); }

.vs-balance-bar {
  height: 16px;
  border-radius: 8px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-1);
  display: flex;
  overflow: hidden;
}
.vs-balance-fill-a {
  background: linear-gradient(90deg, var(--vs-side-a), rgba(78, 168, 50, 0.5));
  transition: width var(--t-slow) var(--ease);
}
.vs-balance-fill-b {
  background: linear-gradient(270deg, var(--vs-side-b), rgba(61, 146, 184, 0.5));
  transition: width var(--t-slow) var(--ease);
  margin-left: auto;
}

.vs-balance-delta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--amber);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────
   03 · WIN PROBABILITY
────────────────────────────────────────────────────────── */
.vs-winprob-card {
  padding: 16px 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background:
    radial-gradient(ellipse at top, var(--accent-glow-2), transparent 70%),
    var(--glass-bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-winprob-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.vs-winprob-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vs-winprob-a { text-align: right; }
.vs-winprob-b { text-align: left; }

.vs-winprob-pct {
  font-family: var(--font-data);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}
.vs-winprob-a .vs-winprob-pct { color: var(--vs-side-a); }
.vs-winprob-b .vs-winprob-pct { color: var(--vs-side-b); }

.vs-winprob-lbl {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
}

.vs-winprob-vs {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--amber);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--amber-border);
  background: var(--amber-glow);
}

.vs-winprob-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-1);
  display: flex;
  overflow: hidden;
}
.vs-winprob-bar-a {
  background: var(--vs-side-a);
  transition: width var(--t-slow) var(--ease);
}
.vs-winprob-bar-b {
  background: var(--vs-side-b);
  transition: width var(--t-slow) var(--ease);
  margin-left: auto;
}

.vs-winprob-explain {
  margin: 0;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.vs-winprob-explain code {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-1);
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-2);
}

/* First-squad type mix — display only, under the win probability */
.vs-typemix { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border-1); }
.vs-typemix.hidden { display: none; }
.vs-tm-title { font-family: var(--font-data); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-2); margin-bottom: 10px; }
.vs-tm-note { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--text-3); }
.vs-tm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs-tm-col { display: flex; flex-direction: column; gap: 7px; }
.vs-tm-row { display: grid; grid-template-columns: 68px 1fr 22px; align-items: center; gap: 8px; }
.vs-tm-lbl { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-data); font-size: 11px; font-weight: 700; color: var(--text-1); }
.vs-tm-sw { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.vs-tm-track { height: 7px; border-radius: 999px; background: var(--glass-bg-3); overflow: hidden; }
.vs-tm-fill { height: 100%; border-radius: 999px; }
.vs-tm-val { font-family: var(--font-data); font-size: 11px; font-weight: 700; color: var(--text-1); text-align: right; }
.vs-tm-known { font-family: var(--font-data); font-size: 9.5px; color: var(--text-3); letter-spacing: 0.5px; margin-top: 2px; }
.vs-tm-empty { font-size: 11px; color: var(--text-3); padding: 8px 0; }

/* ──────────────────────────────────────────────────────────
   04 · TIER DISTRIBUTION
────────────────────────────────────────────────────────── */
.vs-tier-card {
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-tier-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
}
.vs-tier-row-lbl {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.vs-tier-row-a .vs-tier-row-lbl { color: var(--vs-side-a); }
.vs-tier-row-b .vs-tier-row-lbl { color: var(--vs-side-b); }

.vs-tier-bar {
  height: 26px;
  border-radius: 13px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-1);
  display: flex;
  overflow: hidden;
}
.vs-tier-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  transition: width var(--t-slow) var(--ease);
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.vs-tier-seg.tier-mega    { background: var(--tier-mega); }
.vs-tier-seg.tier-whale   { background: var(--tier-whale); }
.vs-tier-seg.tier-shark   { background: var(--tier-shark); }
.vs-tier-seg.tier-piranha { background: var(--tier-piranha); }
.vs-tier-seg.tier-shrimp  { background: var(--tier-shrimp); }

.vs-tier-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-3);
}
.vs-tier-leg-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vs-tier-leg-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────────────────────
   05 · DEPTH CURVE
────────────────────────────────────────────────────────── */
.vs-depth-card {
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
  color: var(--text-2);
}

.vs-depth-svg {
  width: 100%;
  height: 220px;
  display: block;
}

.vs-depth-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-2);
}
.vs-depth-lbl-a, .vs-depth-lbl-b { display: inline-flex; align-items: center; gap: 6px; }
.vs-depth-swatch {
  width: 12px;
  height: 3px;
  border-radius: 1px;
}
.swatch-a { background: var(--vs-side-a); }
.swatch-b { background: var(--vs-side-b); }

.vs-depth-explain {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────
   06 · POWER CONCENTRATION DONUTS
────────────────────────────────────────────────────────── */
.vs-donut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 700px) { .vs-donut-grid { grid-template-columns: 1fr 1fr; } }

.vs-donut-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
}
.vs-donut-svg {
  width: 110px;
  height: 110px;
}

.vs-donut-body { min-width: 0; }
.vs-donut-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 4px;
}
.vs-donut-sub {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--text-2);
  margin-bottom: 6px;
}
.vs-donut-tag {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────
   07 · TOP 5 ALLIANCES (side-by-side)
────────────────────────────────────────────────────────── */
.vs-alliance-grid,
.vs-player-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 700px) {
  .vs-alliance-grid,
  .vs-player-grid { grid-template-columns: 1fr 1fr; }
}

.vs-alliance-side,
.vs-player-side {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
  overflow: hidden;
}

.vs-alliance-head,
.vs-player-head {
  padding: 10px 14px;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-1);
}
.vs-alliance-head-a, .vs-player-head-a {
  color: var(--vs-side-a);
  background: rgba(78, 168, 50, 0.06);
}
.vs-alliance-head-b, .vs-player-head-b {
  color: var(--vs-side-b);
  background: rgba(61, 146, 184, 0.06);
}

.vs-alliance-empty {
  padding: 18px 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
}

.vs-alliance-row {
  display: grid;
  grid-template-columns: 24px minmax(60px, 1fr) minmax(60px, 1.4fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-1);
}
.vs-alliance-row:last-child { border-bottom: none; }

.vs-alliance-rank {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-align: right;
}

.vs-alliance-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vs-alliance-bar {
  height: 5px;
  border-radius: 3px;
  background: var(--glass-bg-3);
  overflow: hidden;
}
.vs-alliance-fill {
  height: 100%;
  border-radius: 3px;
  transition: width var(--t-slow) var(--ease);
}
.vs-alliance-fill-a { background: var(--vs-side-a); }
.vs-alliance-fill-b { background: var(--vs-side-b); }

.vs-alliance-power {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-1);
  text-align: right;
  white-space: nowrap;
}

.vs-alliance-count {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--text-3);
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────
   08 · TOP 20 PLAYERS (side-by-side)
────────────────────────────────────────────────────────── */
.vs-player-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-1);
}
.vs-player-row:last-child { border-bottom: none; }

.vs-player-rank {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-align: right;
}
.vs-player-rank.r1 { color: var(--amber);   font-size: 13px; }
.vs-player-rank.r2 { color: #cbd5e1; }
.vs-player-rank.r3 { color: #c8956a; }

.vs-player-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.vs-player-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-player-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.4px;
}
.vs-player-tag {
  color: var(--text-2);
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-2);
}
.vs-player-tag.muted { color: var(--text-3); }
.vs-player-tier {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.vs-player-tier.tier-mega    { color: var(--tier-mega); }
.vs-player-tier.tier-whale   { color: var(--tier-whale); }
.vs-player-tier.tier-shark   { color: var(--tier-shark); }
.vs-player-tier.tier-piranha { color: var(--tier-piranha); }
.vs-player-tier.tier-shrimp  { color: var(--tier-shrimp); }

.vs-player-fsp {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--text-2);
  white-space: nowrap;
}
.vs-player-pwr {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-1);
  text-align: right;
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────────────
   09 · FSP HISTOGRAM
────────────────────────────────────────────────────────── */
.vs-fsp-card {
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: var(--glass-bg);
}
.vs-fsp-explain {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.vs-fsp-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vs-fsp-row {
  display: grid;
  grid-template-columns: 70px 1fr 60px;
  gap: 10px;
  align-items: center;
  font-family: var(--font-data);
  font-size: 11px;
}
.vs-fsp-bin {
  color: var(--text-3);
  text-align: right;
  font-size: 10px;
}
.vs-fsp-track {
  height: 18px;
  border-radius: 9px;
  background: var(--glass-bg-3);
  border: 1px solid var(--border-1);
  position: relative;
  overflow: hidden;
}
.vs-fsp-bar {
  position: absolute;
  top: 1px;
  height: 7px;
  border-radius: 3px;
  transition: width var(--t-slow) var(--ease);
}
.vs-fsp-bar-a { background: var(--vs-side-a); left: 0; }
.vs-fsp-bar-b { background: var(--vs-side-b); bottom: 1px; top: auto; left: 0; }
.vs-fsp-counts {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.vs-fsp-count-a { color: var(--vs-side-a); font-weight: 700; }
.vs-fsp-count-b { color: var(--vs-side-b); font-weight: 700; }

/* ──────────────────────────────────────────────────────────
   PICKER MODAL (reuses .modal-overlay from intel.css).
   Force centered + above-everything stacking, same fix as the
   clans alliance modal — the platform default is a bottom sheet
   which feels disconnected from the picker buttons up top.
────────────────────────────────────────────────────────── */
#vsPickerModal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 16px;
  background: rgba(5, 8, 12, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#vsPickerModal .modal-sheet {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--r-xl);
  max-height: calc(100vh - 80px);
  padding: 18px 18px 22px;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-2);
  position: relative;
  z-index: 1;
}
#vsPickerModal .modal-handle { display: none; }

@media (max-width: 480px) {
  #vsPickerModal { padding: 12px; }
  #vsPickerModal .modal-sheet {
    border-radius: var(--r-lg);
    padding: 16px 14px 20px;
  }
}

.vs-picker-eyebrow {
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
  font-weight: 700;
}
.vs-picker-sub {
  font-size: 12px;
  color: var(--text-2);
  margin: 0 0 12px;
  line-height: 1.5;
}
.vs-picker-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 56vh;
  overflow-y: auto;
  padding-right: 4px;
}
.vs-pick-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
}
.vs-pick-row-label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-3);
  text-transform: uppercase;
  text-align: right;
}
.vs-pick-row-pills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 5px;
}
.vs-pick-pill {
  padding: 8px 4px;
  border-radius: var(--r-sm);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--glass-bg-2);
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.vs-pick-pill:hover {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-glow-2);
}
.vs-pick-pill.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  .vs-header      { padding: 28px var(--page-px-desk) 18px; }
  .vs-picker      { margin: 18px var(--page-px-desk); }
  .vs-comparison  { padding: 0 var(--page-px-desk) 30px; }
  .vs-empty       { margin: 28px var(--page-px-desk); }
}

@media (max-width: 480px) {
  .vs-picker { grid-template-columns: 1fr; gap: 8px; }
  .vs-swap-btn { width: 36px; height: 36px; margin: 0 auto; }
  .vs-picker-wz { font-size: 18px; }
  .vs-winprob-pct { font-size: 26px; }
  .vs-hero-val { font-size: 13px; }
  .vs-hero-val.leads { font-size: 14px; }
  .vs-tier-row { grid-template-columns: 60px 1fr; gap: 8px; }
}
