:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #5d6e66;
  --paper: #f5f8f5;
  --surface: #fff;
  --soft: #eaf1ed;
  --line: #d5e0da;
  --green: #087f5b;
  --green-dark: #056347;
  --mint: #dff5eb;
  --coral: #c84b3d;
  --coral-soft: #fae8e4;
  --gold: #9a650f;
  --shadow: 0 18px 48px rgba(23, 35, 31, .12);
}
[data-theme="dark"] {
  color-scheme: dark;
  --ink: #edf5f1;
  --muted: #a9b9b1;
  --paper: #101714;
  --surface: #17201c;
  --soft: #202b26;
  --line: #34443c;
  --green: #61d6aa;
  --green-dark: #8ce5c3;
  --mint: #173c2f;
  --coral: #ff8b7c;
  --coral-soft: #45251f;
  --gold: #efbd67;
  --shadow: 0 18px 48px rgba(0, 0, 0, .32);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font: 16px/1.65 'DM Sans', sans-serif;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: blur(16px); }
.site-header nav { display: flex; min-height: 68px; gap: 26px; align-items: center; }
.brand { display: flex; gap: 10px; align-items: center; font: 800 1rem Manrope, sans-serif; text-decoration: none; }
.mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--green-dark); color: #fff; }
.mark svg, .theme svg, .button svg, .feature-icon svg { width: 19px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: .88rem; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.theme { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); cursor: pointer; }
.hero { overflow: hidden; padding: 78px 0 70px; }
.breadcrumb { margin-bottom: 28px; color: var(--muted); font-size: .8rem; }
.breadcrumb a { color: var(--green); font-weight: 700; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: 62px; align-items: center; }
.eyebrow { display: flex; gap: 9px; align-items: center; color: var(--green); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.eyebrow:before { width: 22px; height: 2px; background: var(--green); content: ''; }
h1, h2, h3 { margin-top: 0; font-family: Manrope, sans-serif; letter-spacing: 0; }
h1 { margin: 14px 0 20px; font-size: clamp(2.7rem, 5.4vw, 4.9rem); line-height: 1; }
h1 span { color: var(--green); }
.lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; min-height: 46px; padding: 11px 18px; gap: 8px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); font-weight: 700; text-decoration: none; }
.button:hover { border-color: var(--green); transform: translateY(-1px); }
.button.primary { border-color: var(--green-dark); background: var(--green-dark); color: #fff; }
.verdict { padding: 28px; border: 1px solid var(--line); border-top: 5px solid var(--green); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }
.verdict-label { color: var(--green); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.verdict h2 { margin: 9px 0 10px; font-size: 1.55rem; line-height: 1.2; }
.verdict p { margin: 0; color: var(--muted); font-size: .9rem; }
.verdict-list { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.verdict-list li { display: flex; gap: 9px; font-size: .86rem; }
.verdict-list li:before { color: var(--green); font-weight: 800; content: '✓'; }
.quick { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 75%, transparent); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-grid div { padding: 24px; }
.quick-grid div + div { border-left: 1px solid var(--line); }
.quick strong { display: block; color: var(--green); font: 800 1rem Manrope, sans-serif; }
.quick span { color: var(--muted); font-size: .78rem; }
section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; }
.section-head p { margin: 0; color: var(--muted); }
.table-section { background: color-mix(in srgb, var(--soft) 76%, transparent); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); box-shadow: var(--shadow); }
table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .87rem; }
th, td { padding: 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--soft); color: var(--muted); font-size: .72rem; text-transform: uppercase; }
th:first-child, td:first-child { width: 29%; font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }
td.winner { background: color-mix(in srgb, var(--mint) 72%, var(--surface)); }
.yes { color: var(--green); font-weight: 800; }
.tradeoff { color: var(--gold); font-weight: 700; }
.table-note { margin: 13px 0 0; color: var(--muted); font-size: .78rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 21px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
.feature-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 6px; background: var(--mint); color: var(--green); }
.feature h3 { margin: 0 0 5px; font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .86rem; }
.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honest { padding: 25px; border-left: 4px solid var(--green); background: var(--surface); }
.honest.other { border-left-color: var(--coral); }
.honest h3 { margin-bottom: 8px; font-size: 1.05rem; }
.honest p { margin: 0; color: var(--muted); font-size: .9rem; }
.faq { max-width: 800px; }
details { margin-bottom: 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
summary { padding: 18px 20px; font-weight: 700; cursor: pointer; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: .9rem; }
.sources { padding-top: 0; }
.source-box { padding: 26px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
.source-box h2 { margin-bottom: 7px; font-size: 1.25rem; }
.source-box p { margin: 0 0 13px; color: var(--muted); font-size: .84rem; }
.source-links { display: flex; flex-wrap: wrap; gap: 9px; }
.source-links a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font-size: .78rem; font-weight: 600; text-decoration: none; }
.cta { padding: 0 0 84px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 38px; border-radius: 8px; background: var(--green-dark); color: #fff; }
.cta h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.1; }
.cta p { max-width: 640px; margin: 0; color: rgba(255,255,255,.78); }
.cta .button { background: #fff; color: #123326; white-space: nowrap; }
footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer { display: flex; min-height: 108px; gap: 24px; align-items: center; justify-content: space-between; color: var(--muted); font-size: .82rem; }
.footer div { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid div + div { border-top: 1px solid var(--line); border-left: 0; }
}
@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-links { display: none; }
  .theme { margin-left: auto; }
  .hero { padding: 38px 0 42px; }
  h1 { font-size: 2.65rem; }
  section { padding: 62px 0; }
  .actions .button, .cta .button { width: 100%; white-space: normal; }
  .feature-grid, .honest-grid, .cta-panel { grid-template-columns: 1fr; }
  .cta-panel { padding: 29px 23px; }
  .footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}