/* Styles for the pages added after the original three (mcp.html, vs-*.html).
   Kept out of style.css so the landing page, support and privacy render exactly as before. */

pre.code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  overflow-x: auto;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #dbe2ff;
  margin: 14px 0 22px;
}
pre.code code { background: none; border: 0; padding: 0; font-size: inherit; }
pre.code .c { color: var(--muted); }

.table-wrap { overflow-x: auto; margin: 18px 0 28px; }
table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 620px;
}
table.cmp th, table.cmp td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.cmp thead th {
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--brand);
}
table.cmp tbody th { color: var(--muted); font-weight: 600; }
table.cmp td { color: #d5dbf2; }
table.cmp .yes { color: var(--accent); font-weight: 600; }
table.cmp .no { color: var(--muted); }
table.cmp tbody tr:hover { background: rgba(108, 140, 255, 0.05); }

.tool-list { list-style: none; padding: 0; margin: 14px 0 0; }
.tool-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: #d5dbf2;
}
.tool-list li:last-child { border-bottom: 0; }
.tool-list code { font-weight: 600; }

.note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 22px 0;
  color: #d5dbf2;
}
.note strong { color: var(--text); }

.verdict {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 26px 0;
}
.verdict h3 { margin: 0 0 8px; font-size: 1.05rem; }
.verdict p { margin: 0 0 10px; color: #d5dbf2; }
.verdict p:last-child { margin-bottom: 0; }

.price-note { color: var(--muted); font-size: 0.88rem; margin-top: -10px; }
