:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --text: #1c1f1d;
  --muted: #5b625d;
  --border: #e2e4dd;
  --accent: #0b6b4f;
  --accent-text: #ffffff;
  --note: #f1f4ea;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131614;
    --surface: #1b1f1c;
    --text: #eceeea;
    --muted: #a3aaa5;
    --border: #2d332f;
    --accent: #3fbf95;
    --accent-text: #08110d;
    --note: #1f261f;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 16px; }
a { color: var(--accent); }
h1 { font-size: 2rem; line-height: 1.2; margin: 1.2rem 0 0.4rem; }
h2 { font-size: 1.4rem; margin: 2.2rem 0 0.8rem; }
h3 { margin: 0.2rem 0 0.4rem; font-size: 1.2rem; }
h4 { margin: 0.6rem 0 0.2rem; font-size: 0.95rem; }
.site-header { border-bottom: 1px solid var(--border); background: var(--surface); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; padding-bottom: 14px; }
.brand { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--text); }
nav a { margin-left: 18px; text-decoration: none; }
.disclosure-bar { margin: 0; background: var(--note); font-size: 0.85rem; color: var(--muted); padding: 6px 0; }
.lead { font-size: 1.1rem; color: var(--muted); }
.meta { color: var(--muted); font-size: 0.9rem; margin-top: 0; }
.note { background: var(--note); border-left: 4px solid var(--accent); padding: 10px 14px; border-radius: 4px; font-size: 0.95rem; }
.hero { padding: 1.5rem 0 0.5rem; }
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.tile { display: block; text-decoration: none; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.tile:hover { border-color: var(--accent); }
.tile p { color: var(--muted); font-size: 0.95rem; margin: 0.3rem 0 0.6rem; }
.tile span { font-size: 0.85rem; color: var(--accent); }
.table-wrap { overflow-x: auto; }
table.compare { border-collapse: collapse; width: 100%; font-size: 0.95rem; background: var(--surface); }
.compare th, .compare td { text-align: left; padding: 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
.card { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin: 0 0 16px; }
.rank { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: var(--accent-text); display: grid; place-items: center; font-weight: 700; }
.card-body { min-width: 0; flex: 1; }
.badge { margin: 0; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); }
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 6px 16px; margin: 0.8rem 0; font-size: 0.9rem; }
.specs div { margin: 0; }
.specs dt { color: var(--muted); font-size: 0.8rem; }
.specs dd { margin: 0; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proscons ul { margin: 0; padding-left: 1.1rem; font-size: 0.95rem; }
.btn { display: inline-block; background: var(--accent); color: var(--accent-text); padding: 10px 18px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn.small { padding: 6px 12px; font-size: 0.85rem; white-space: nowrap; }
.btn:hover { filter: brightness(1.08); }
details { border-bottom: 1px solid var(--border); padding: 10px 0; }
summary { cursor: pointer; font-weight: 600; }
.sources { font-size: 0.95rem; }
.site-footer { margin-top: 3rem; border-top: 1px solid var(--border); padding: 1.5rem 0 2.5rem; color: var(--muted); font-size: 0.9rem; }
@media (max-width: 560px) {
  .proscons { grid-template-columns: 1fr; }
  .card { flex-direction: column; }
  h1 { font-size: 1.6rem; }
}
