/* Minimal chrome for /vs pages — inherits brand tokens via duplicate vars */
:root {
  --bg: #09090b;
  --text: #fafafa;
  --muted: #a1a1aa;
  --dim: #71717a;
  --accent: #2dd4bf;
  --border: rgba(255, 255, 255, 0.08);
  --card: #121216;
  --font: Inter, ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: #5eead4; }
.wrap { max-width: 880px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.brand { font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.035em;
  line-height: 1.15; margin-bottom: 1rem;
}
.lede { color: var(--muted); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 40rem; }
table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
}
th, td {
  text-align: left; padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
th { color: var(--dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
td.win { color: var(--accent); font-weight: 600; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; margin: 1.5rem 0;
}
.card h2 { font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: 0.65rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.cta {
  display: inline-flex; margin-top: 0.5rem; padding: 0.9rem 1.4rem;
  border-radius: 999px; background: var(--accent); color: #042f2e;
  font-weight: 600;
}
.cta:hover { background: #5eead4; color: #042f2e; }
.note { font-size: 0.85rem; color: var(--dim); margin-top: 2rem; }
