:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6b7a;
  --line: #d9e2ec;
  --paper: #fbfbf7;
  --leaf: #2f7d4a;
  --soil: #7a4e2d;
  --sun: #d99521;
  --bad: #a33b33;
  --neutral: #667085;
  --chip: #eef5ee;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: #236a3b; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
header {
  border-bottom: 1px solid var(--line);
  background: #fffef9;
}
.nav {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 800;
  color: #203b2a;
  text-decoration: none;
  font-size: 1.05rem;
}
.nav-links { display: flex; gap: 14px; flex-wrap: wrap; font-size: .94rem; }
.nav-links a { text-decoration: none; color: #425466; }
.hero {
  padding: 42px 0 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffef9 0%, #f2f7ed 100%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--soil);
  font-size: .78rem;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 8px 0 12px;
  color: #203b2a;
  letter-spacing: 0;
}
h2 { font-size: 1.45rem; margin: 30px 0 10px; color: #203b2a; }
h3 { font-size: 1.08rem; margin: 22px 0 8px; color: #203b2a; }
.lede { max-width: 720px; color: #425466; font-size: 1.08rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}
.pair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}
.pair-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
}
.pair-link span:last-child { color: var(--muted); white-space: nowrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
}
.badge.good { background: var(--leaf); }
.badge.bad { background: var(--bad); }
.badge.neutral { background: var(--neutral); }
.answer {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  padding: 26px 0;
}
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.aside { display: grid; gap: 12px; }
.ad-slot {
  min-height: 116px;
  display: grid;
  place-items: center;
  border: 1px dashed #b6c4b6;
  background: #f4f8f2;
  color: #657065;
  border-radius: 8px;
  font-size: .88rem;
  text-align: center;
  padding: 12px;
}
.product-list { margin: 0; padding-left: 18px; }
.source-list { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.stat-row span {
  border: 1px solid var(--line);
  background: var(--chip);
  border-radius: 8px;
  padding: 10px 12px;
}
.az { columns: 3 220px; column-gap: 28px; }
.az a { display: block; break-inside: avoid; padding: 3px 0; }
.footer {
  margin-top: 42px;
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.pack-callout {
  border: 1px solid #e5d2a0;
  background: #fff8dd;
  border-radius: 8px;
  padding: 16px;
}
.button {
  display: inline-block;
  border-radius: 8px;
  background: #203b2a;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  font-weight: 800;
}
.note { color: var(--muted); font-size: .92rem; }
@media (max-width: 820px) {
  .answer { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
}
