:root {
  --ink: oklch(25% 0.055 157);
  --ink-soft: oklch(42% 0.045 157);
  --muted: oklch(50% 0.035 157);
  --paper: oklch(97.5% 0.012 135);
  --surface: oklch(100% 0 0);
  --surface-soft: oklch(94.8% 0.018 143);
  --line: oklch(85% 0.025 150);
  --pine: oklch(37% 0.105 158);
  --pine-deep: oklch(24% 0.07 158);
  --leaf: oklch(52% 0.13 152);
  --lime: oklch(90% 0.17 118);
  --gold: oklch(79% 0.14 79);
  --gold-deep: oklch(58% 0.13 70);
  --danger: oklch(53% 0.18 25);
  --focus: oklch(63% 0.19 253);
  --display: "Bricolage Grotesque", "Trebuchet MS", ui-sans-serif, sans-serif;
  --body: "Atkinson Hyperlegible", ui-sans-serif, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --page: min(76rem, calc(100% - 2.5rem));
  --wide: min(90rem, 100%);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.62 var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

button, input, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button:active,
.primary-action:active,
.secondary-action:active,
.header-cta:active,
.text-action:active { transform: scale(.97); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection { color: var(--pine-deep); background: var(--lime); }

h1, h2, h3, p, ul, ol, dl { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--display);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p, li, dd, dt { overflow-wrap: anywhere; }

h1 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.04em;
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
}

h3 {
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
}

p { margin-bottom: var(--space-5); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-4);
  left: var(--space-4);
  padding: .7rem 1rem;
  color: white;
  background: var(--pine-deep);
  border-radius: .5rem;
  transform: translateY(-200%);
  transition: transform 150ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 0 clamp(1.25rem, 5vw, 4.75rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklch, var(--paper) 94%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font: 800 1.2rem/1 var(--display);
  letter-spacing: -.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--pine);
  border-radius: 52% 48% 42% 58%;
  transform: rotate(-8deg);
}

.brand-mark svg { width: 1rem; transform: rotate(8deg); }

.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2rem); }

.desktop-nav a {
  position: relative;
  padding: 1.45rem 0;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.header-actions { display: flex; align-items: center; gap: .5rem; }

.icon-button {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, transform 140ms var(--ease-out);
}

.icon-button svg { width: 1.25rem; }

.menu-button { display: none; }

.header-cta,
.primary-action,
.secondary-action {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}

.header-cta,
.primary-action { color: white; background: var(--pine); }

.secondary-action { color: var(--pine-deep); border: 1px solid var(--line); background: transparent; }

.secondary-action.light { color: white; border-color: color-mix(in oklch, white 35%, transparent); }

.primary-action svg,
.text-action svg,
.article-link > svg,
.related a > svg,
.finder-result a svg { width: 1.05rem; }

.mobile-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 1rem;
  width: min(21rem, calc(100vw - 2rem));
  padding: .5rem;
  background: var(--surface);
  border-radius: .85rem;
  box-shadow: 0 1rem 3rem rgba(14, 45, 34, .18);
  transform-origin: top right;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.mobile-menu[hidden] { display: none; }

.mobile-menu a {
  display: block;
  padding: .85rem 1rem;
  border-radius: .55rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu[data-entering] { opacity: 0; transform: scale(.97) translateY(-.25rem); }

.noscript-menu { display: none; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: var(--space-6);
  color: var(--muted);
  font-size: .875rem;
}

.breadcrumbs a { text-underline-offset: .2rem; }

.page-wrap { width: var(--page); margin-inline: auto; }

.home-hero {
  width: var(--page);
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(21rem, .65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.home-copy h1 { max-width: 10ch; }

.home-copy > p {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.48;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--space-8); }

.mower-finder {
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  color: white;
  background: var(--pine-deep);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3.5rem rgba(14, 45, 34, .2);
}

.mower-finder h2 { color: var(--lime); font-size: 1.65rem; }

.finder-intro { margin-bottom: 1rem; color: color-mix(in oklch, white 72%, var(--pine-deep)); font-size: .92rem; }

.mower-finder label { display: grid; gap: .5rem; margin-top: 1.15rem; color: color-mix(in oklch, white 78%, var(--pine-deep)); font-size: .85rem; font-weight: 700; }

.mower-finder select {
  width: 100%;
  min-height: 3rem;
  padding: 0 2.5rem 0 .8rem;
  color: white;
  background: color-mix(in oklch, var(--pine-deep) 80%, black);
  border: 1px solid color-mix(in oklch, white 24%, transparent);
  border-radius: .55rem;
}

.finder-result { margin-top: 1.6rem; padding-top: 1.35rem; border-top: 1px solid color-mix(in oklch, white 20%, transparent); }

.finder-result span { display: block; color: color-mix(in oklch, white 66%, var(--pine-deep)); font-size: .78rem; font-weight: 700; }

.finder-result strong { display: block; margin: .25rem 0 .55rem; font: 700 1.45rem/1.1 var(--display); }

.finder-result p { margin-bottom: .75rem; color: color-mix(in oklch, white 76%, var(--pine-deep)); font-size: .86rem; line-height: 1.45; }

.finder-result a { display: inline-flex; align-items: center; gap: .4rem; color: var(--lime); font-weight: 700; text-underline-offset: .2rem; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.proof-strip p { margin: 0; padding: 1rem; border-right: 1px solid var(--line); color: var(--ink-soft); font-weight: 700; text-align: center; }

.proof-strip p:last-child { border-right: 0; }

.featured-compare,
.latest-section { width: var(--page); margin: var(--space-24) auto; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, .6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: var(--space-12);
}

.section-heading h2 { max-width: 15ch; margin-bottom: 0; font-size: clamp(2.4rem, 5vw, 4.6rem); }

.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

.mini-duel {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, .9fr) 1fr;
  border-block: 1px solid var(--line);
}

.mini-duel > div { min-height: 23rem; padding: clamp(1.5rem, 4vw, 3.25rem); }

.mini-duel > div:first-child { color: var(--ink); background: color-mix(in oklch, var(--leaf) 9%, white); }

.mini-duel > div:last-child { color: var(--ink); background: color-mix(in oklch, var(--gold) 16%, white); text-align: right; }

.mini-duel > div:not(.mini-chart) { display: flex; flex-direction: column; justify-content: flex-end; }

.mini-duel > div > span { color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.mini-duel > div > strong { margin: auto 0 var(--space-6); font: 800 clamp(4rem, 7vw, 7rem)/.8 var(--display); letter-spacing: -.04em; }

.mini-duel .mini-chart { display: grid; place-items: center; border-inline: 1px solid var(--line); background: var(--surface-soft); }

.featured-compare > .text-action { margin-top: var(--space-6); }

.text-action {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--pine);
  font-weight: 700;
  text-underline-offset: .22rem;
  transition: color 150ms ease, transform 140ms var(--ease-out);
}

.latest-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.article-link { position: relative; text-decoration: none; }

.article-link > span { display: block; margin-bottom: .65rem; color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .035em; }

.article-link > strong { display: block; font: 700 1.3rem/1.12 var(--display); letter-spacing: -.02em; text-wrap: balance; }

.article-link > p { color: var(--muted); }

.lead-story {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--pine-deep);
  color: white;
  border-radius: 1rem;
  box-shadow: 0 1.2rem 3rem rgba(12, 52, 37, .15);
}

.lead-story > span,
.lead-story > p { color: color-mix(in oklch, white 67%, var(--pine-deep)); }

.lead-story > strong { font-size: clamp(2rem, 4vw, 3.4rem); }

.lead-story > svg { width: 1.4rem; margin-top: var(--space-6); color: var(--lime); }

.latest-list,
.index-list,
.search-results { border-top: 1px solid var(--line); }

.story-row {
  min-height: 9.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  align-content: center;
  padding: 1.4rem .25rem;
  border-bottom: 1px solid var(--line);
}

.story-row > span,
.story-row > strong,
.story-row > p { grid-column: 1; }

.story-row > p { max-width: 52rem; margin: .5rem 0 0; }

.story-row > svg { grid-column: 2; grid-row: 1 / span 3; align-self: center; transition: transform 180ms var(--ease-out); }

.method-band {
  min-height: 22rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: var(--space-12);
  align-items: end;
  padding: clamp(3rem, 8vw, 7rem) max(1.25rem, calc((100% - 76rem) / 2));
  color: white;
  background: var(--pine-deep);
}

.method-band > div { max-width: 47rem; }

.method-band h2 { color: var(--lime); }

.method-band p { margin-bottom: 0; color: color-mix(in oklch, white 75%, var(--pine-deep)); font-size: 1.12rem; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1.2fr) .55fr .55fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(3rem, 7vw, 6rem) max(1.25rem, calc((100% - 76rem) / 2)) 2rem;
  color: white;
  background: oklch(18% 0.045 157);
}

.brand-inverse { color: white; }

.footer-brand p { max-width: 24rem; margin: 1rem 0 0; color: color-mix(in oklch, white 62%, var(--pine-deep)); }

.site-footer h2 { margin-bottom: 1rem; color: var(--lime); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }

.site-footer > div:not(.footer-brand) a { display: block; margin-top: .55rem; color: color-mix(in oklch, white 76%, var(--pine-deep)); text-underline-offset: .2rem; }

.footer-disclosure,
.footer-meta { grid-column: 1 / -1; margin: 0; padding-top: 1.25rem; border-top: 1px solid color-mix(in oklch, white 15%, transparent); color: color-mix(in oklch, white 62%, var(--pine-deep)); font-size: .82rem; }

.footer-meta { padding-top: 0; border: 0; }

.article-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, .45fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(3rem, 8vw, 6.5rem) 0 var(--space-10);
}

.article-intro h1 { max-width: 18ch; margin-bottom: var(--space-5); font-size: clamp(2.7rem, 6vw, 5.6rem); }

.article-dek { max-width: 48rem; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1.1rem, 2vw, 1.32rem); }

.article-meta { display: grid; gap: .8rem; margin: 0; padding-left: 1.5rem; border-left: 1px solid var(--line); }

.article-meta div { display: grid; grid-template-columns: 6rem 1fr; gap: .5rem; }

.article-meta dt { color: var(--muted); font-size: .8rem; font-weight: 700; }

.article-meta dd { margin: 0; font-size: .88rem; font-weight: 700; }

.score-number { font: 800 clamp(4.8rem, 9vw, 8rem)/.8 var(--display); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }

.score-denom { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }

.status-label {
  display: inline-flex;
  width: max-content;
  padding: .3rem .6rem;
  color: var(--ink-soft);
  background: color-mix(in oklch, var(--line) 58%, white);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}

.review-rail,
.duel {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, .72fr) 1fr;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.review-rail > *,
.duel > *,
.scenario-heading > *,
.article-intro > *,
.section-heading > *,
.pros-cons > *,
.verdict-strip > *,
.score-section > *,
.spec-section > * { min-width: 0; }

.review-product,
.review-verdict,
.duel-side {
  position: relative;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.75rem, 4vw, 3.75rem);
  overflow: hidden;
}

.review-product,
.duel-a { background: color-mix(in oklch, var(--leaf) 10%, white); }

.review-product .score-number,
.duel-side .score-number { margin: auto 0 var(--space-6); }

.review-product h2,
.duel-side h2 { margin-bottom: .35rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }

.review-product p,
.duel-side p { margin-bottom: 0; color: var(--muted); }

.review-chart,
.duel-chart {
  position: relative;
  min-height: 31rem;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  border-inline: 1px solid var(--line);
  background: var(--surface-soft);
}

.review-chart > p { max-width: 18rem; margin: -2.6rem 0 1rem; color: var(--muted); font-size: .8rem; text-align: center; }

.review-verdict { background: var(--pine-deep); color: white; }

.review-verdict h2 { color: var(--lime); font-size: 1.45rem; }

.review-verdict > p { color: color-mix(in oklch, white 84%, var(--pine-deep)); font-size: 1.1rem; }

.review-verdict .text-action { margin-top: 1.5rem; color: var(--lime); }

.best-for { display: grid; gap: .35rem; margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid color-mix(in oklch, white 22%, transparent); }

.best-for strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }

.best-for span { color: color-mix(in oklch, white 72%, var(--pine-deep)); }

.duel-a { background: color-mix(in oklch, var(--leaf) 9%, white); }

.duel-b { background: color-mix(in oklch, var(--gold) 17%, white); text-align: right; }

.duel-side .text-action { margin-top: 1.3rem; }

.duel-b .text-action { align-self: flex-end; }

.duel-letter {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  color: color-mix(in oklch, var(--ink) 6%, transparent);
  font: 800 16rem/1 var(--display);
  pointer-events: none;
}

.duel-b .duel-letter { right: auto; left: -1rem; }

.vs-badge {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 50%;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font: 800 .75rem/1 var(--display);
  transform: translateX(-50%);
}

.duel-decision {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr minmax(18rem, .7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4.75rem);
  color: white;
  background: var(--pine-deep);
}

.duel-decision h2 { margin: 0 0 .5rem; color: var(--lime); font-size: 1.35rem; }
.duel-decision p { max-width: 48rem; margin: 0; font: 700 clamp(1.3rem, 2.5vw, 2.1rem)/1.2 var(--display); }
.duel-decision > div:last-child { display: grid; gap: .5rem; }
.duel-decision strong { font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }
.duel-decision span { color: color-mix(in oklch, white 76%, var(--pine-deep)); }

.radar { width: min(100%, 22.5rem); height: auto; overflow: visible; }

.radar-grid { fill: none; stroke: color-mix(in oklch, var(--line) 94%, transparent); stroke-width: 1; }
.radar-axis { stroke: color-mix(in oklch, var(--line) 70%, transparent); stroke-width: 1; transition: stroke 180ms ease; }
.radar-a { fill: color-mix(in oklch, var(--leaf) 24%, transparent); stroke: var(--leaf); stroke-width: 2.3; }
.radar-b { fill: color-mix(in oklch, var(--gold) 26%, transparent); stroke: var(--gold-deep); stroke-width: 2.3; }
.radar-dot-a { fill: var(--leaf); }
.radar-dot-b { fill: var(--gold-deep); }
.radar text { fill: var(--muted); font: 700 .68rem/1 var(--body); transition: fill 180ms ease; }
.radar [data-emphasized].radar-axis { stroke: var(--pine); }
.radar text[data-emphasized] { fill: var(--pine-deep); }

.scenario-lab {
  margin-top: var(--space-12);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: white;
  background: var(--pine-deep);
  border-radius: 1rem;
}

.scenario-heading { display: grid; grid-template-columns: 1fr minmax(18rem, .7fr); gap: 2rem; align-items: end; }
.scenario-heading h2 { margin: .35rem 0 0; color: var(--lime); font-size: clamp(1.75rem, 3vw, 2.7rem); }
.scenario-heading p { margin: 0; color: color-mix(in oklch, white 72%, var(--pine-deep)); }
.scenario-index { color: color-mix(in oklch, white 65%, var(--pine-deep)); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.scenario-controls { display: none; flex-wrap: wrap; gap: .5rem; margin-top: var(--space-8); }
.js .scenario-controls { display: flex; }
.scenario-controls button {
  min-height: 2.75rem;
  padding: .55rem 1rem;
  color: color-mix(in oklch, white 78%, var(--pine-deep));
  background: transparent;
  border: 1px solid color-mix(in oklch, white 24%, transparent);
  border-radius: 999px;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}
.scenario-controls button[aria-pressed="true"] { color: var(--pine-deep); background: var(--lime); border-color: var(--lime); font-weight: 700; }
.scenario-controls button:active { transform: scale(.97); }
.scenario-result { margin: var(--space-6) 0 0; padding-top: var(--space-5); border-top: 1px solid color-mix(in oklch, white 20%, transparent); color: color-mix(in oklch, white 80%, var(--pine-deep)); }
.scenario-result strong { color: white; }
.scenario-method { margin-top: var(--space-4); color: color-mix(in oklch, white 72%, var(--pine-deep)); font-size: .84rem; }
.scenario-method summary { width: max-content; color: white; cursor: pointer; font-weight: 700; }
.scenario-method p { max-width: 48rem; margin: .75rem 0 0; }

.fit-ledger {
  display: grid;
  grid-template-columns: minmax(16rem, .65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: var(--space-16);
  padding-block: var(--space-12);
  border-block: 1px solid var(--line);
}

.fit-ledger-heading span { color: var(--leaf); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.fit-ledger-heading h2 { margin-top: .5rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.fit-ledger-heading p { margin: 0; color: var(--muted); }
.fit-ledger-rows { border-top: 1px solid var(--line); }
.fit-ledger-row { display: grid; grid-template-columns: minmax(7rem, .55fr) 1fr 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.fit-ledger-row > strong { color: var(--muted); font-size: .78rem; }
.fit-ledger-row > div { font-weight: 700; line-height: 1.35; }
.fit-ledger-row > div::before { display: block; margin-bottom: .2rem; color: var(--muted); content: attr(data-product); font-size: .67rem; font-weight: 400; }

.article-body { padding-top: var(--space-12); padding-bottom: var(--space-24); }

.link-disclosure {
  margin-bottom: var(--space-20);
  padding: .85rem 1rem;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border-radius: .65rem;
  font-size: .86rem;
}

.pros-cons,
.verdict-strip,
.score-section,
.spec-section,
.yard-check,
.field-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: var(--space-20);
  padding-block: var(--space-16);
  border-block: 1px solid var(--line);
}

.pros-cons h2,
.verdict-strip h2,
.verdict-strip h3 { font-size: 1.7rem; }

.check-list,
.minus-list,
.yard-check ul,
.field-checklist ul { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }

.check-list li,
.minus-list li,
.yard-check li,
.field-checklist li { position: relative; padding-left: 1.75rem; }

.check-list li::before,
.field-checklist li::before {
  position: absolute;
  top: .1rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: inset 0 0 0 .35rem var(--paper);
}

.minus-list li::before,
.yard-check li::before {
  position: absolute;
  top: .72rem;
  left: 0;
  width: .75rem;
  height: 1px;
  content: "";
  background: var(--gold-deep);
}

.reading-section,
.article-sources,
.faq,
.related { max-width: 48rem; margin: var(--space-20) auto 0; }

.reading-section p,
.article-sources p,
.faq p { font-size: 1.06rem; }

.spec-section > div:first-child p,
.score-section > div:first-child p { max-width: 27rem; color: var(--muted); }

.table-scroll { overflow-x: auto; overscroll-behavior-inline: contain; }

.spec-table { width: 100%; min-width: 31rem; border-collapse: collapse; }

.spec-table th,
.spec-table td { padding: .9rem .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }

.spec-table th { width: 35%; color: var(--muted); font-size: .82rem; }

.comparison-table { min-width: 43rem; }

.comparison-table thead th { color: var(--ink); font: 700 .9rem/1.2 var(--display); }

.comparison-table td:nth-child(2),
.comparison-table thead th:nth-child(2) { background: color-mix(in oklch, var(--leaf) 6%, white); }

.comparison-table td:nth-child(3),
.comparison-table thead th:nth-child(3) { background: color-mix(in oklch, var(--gold) 9%, white); }

.verdict-strip > div:first-child p { font: 700 clamp(1.65rem, 3vw, 2.6rem)/1.12 var(--display); letter-spacing: -.025em; }

.verdict-strip > div:last-child { align-self: end; }

.metric-list { display: grid; gap: 1.1rem; }

.metric-key { display: flex; justify-content: flex-end; gap: 1rem; color: var(--muted); font-size: .78rem; }

.metric-key i { display: inline-block; width: .6rem; height: .6rem; margin-right: .35rem; border-radius: 50%; }

.key-a { background: var(--leaf); }
.key-b { background: var(--gold-deep); }

.metric-row { display: grid; grid-template-columns: minmax(7.5rem, .75fr) 1fr 2.6rem 2.6rem 1fr; gap: .75rem; align-items: center; }
.metric-row { padding: .3rem .5rem; border-radius: .45rem; transition: background-color 180ms ease; }
.metric-row[data-emphasized] { background: color-mix(in oklch, var(--lime) 16%, transparent); }

.metric-label { font-weight: 700; }

.metric-value { font-weight: 700; text-align: center; font-variant-numeric: tabular-nums; }

.bar { height: .55rem; overflow: hidden; background: color-mix(in oklch, var(--line) 70%, white); border-radius: 999px; }

.bar i { display: block; height: 100%; border-radius: inherit; transform-origin: left; }

.bars-ready .bar i { animation: grow-bar 620ms var(--ease-out) both; }

.bar-left i { margin-left: auto; background: var(--leaf); transform-origin: right; }
.bar-right i { background: var(--gold-deep); }

@keyframes grow-bar { from { opacity: .4; transform: scaleX(.18); } }

.article-sources { padding-top: var(--space-12); border-top: 1px solid var(--line); }

.article-sources h2,
.faq h2,
.related h2 { font-size: 1.8rem; }

.article-sources ul { padding-left: 1.2rem; }

.article-sources a { color: var(--pine); text-underline-offset: .22rem; }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  position: relative;
  padding: 1.15rem 2rem 1.15rem 0;
  font: 700 1.05rem/1.35 var(--display);
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after { position: absolute; top: 1rem; right: .2rem; content: "+"; color: var(--leaf); font: 700 1.4rem/1 var(--display); }

.faq details[open] summary::after { content: "−"; }

.faq details p { padding-right: 2rem; color: var(--ink-soft); }

.related { max-width: none; }

.related-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }

.related a {
  position: relative;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.related a:last-child { border-right: 0; }

.related a span { color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }

.related a strong { margin-top: .5rem; font: 700 1.1rem/1.2 var(--display); }

.related a svg { position: absolute; top: 1.5rem; right: 1.5rem; }

.answer-block { max-width: 58rem; margin: var(--space-4) 0 var(--space-16); padding: clamp(1.5rem, 4vw, 3rem); color: white; background: var(--pine-deep); border-radius: 1rem; }

.answer-block h2 { color: var(--lime); font-size: 1.3rem; }

.answer-block p { margin-bottom: 0; font: 700 clamp(1.4rem, 3vw, 2.2rem)/1.2 var(--display); }

.ranked-list { margin-top: var(--space-20); border-top: 1px solid var(--line); }

.ranked-pick { display: grid; grid-template-columns: 4rem minmax(0, 1fr) 6rem; gap: clamp(1.25rem, 4vw, 3rem); padding: var(--space-12) 0; border-bottom: 1px solid var(--line); }

.rank-number { color: var(--muted); font: 700 1rem/1 var(--display); }

.rank-copy h2 { margin-top: .65rem; font-size: clamp(1.8rem, 3vw, 2.7rem); }

.rank-copy > p { max-width: 47rem; }

.rank-score { align-self: start; text-align: right; }

.rank-score strong { display: block; font: 800 3rem/.9 var(--display); }

.rank-score span { color: var(--muted); font-size: .72rem; }

.mini-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }

.mini-specs div { padding-top: .7rem; border-top: 1px solid var(--line); }

.mini-specs dt { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }

.mini-specs dd { margin: .25rem 0 0; font-weight: 700; }

.yard-check,
.field-checklist { padding: clamp(1.75rem, 4vw, 3.5rem); color: white; background: var(--pine-deep); border: 0; border-radius: 1rem; }

.yard-check h2,
.field-checklist h2 { color: var(--lime); }

.yard-check p,
.field-checklist p,
.yard-check li,
.field-checklist li { color: color-mix(in oklch, white 78%, var(--pine-deep)); }

.guide-steps { margin: var(--space-20) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.guide-steps li { display: grid; grid-template-columns: 4rem 1fr; gap: clamp(1.5rem, 5vw, 5rem); padding: var(--space-10) 0; border-bottom: 1px solid var(--line); }

.guide-steps > li > span { color: var(--leaf); font: 700 1rem/1 var(--display); }

.guide-steps h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }

.guide-steps p { max-width: 47rem; margin-bottom: 0; color: var(--ink-soft); font-size: 1.05rem; }

.index-hero {
  width: var(--page);
  display: grid;
  grid-template-columns: 1fr minmax(18rem, .55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 8rem) 0 var(--space-12);
  border-bottom: 1px solid var(--line);
}

.index-hero h1 { margin-bottom: 0; }

.index-hero > p { color: var(--muted); font-size: 1.18rem; }

.index-feed { width: var(--page); display: grid; grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 6rem); margin: var(--space-16) auto var(--space-24); }

.index-feature .lead-story { position: sticky; top: 2rem; }

.search-page { width: var(--page); display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr); gap: clamp(2rem, 7vw, 7rem); margin: 0 auto; padding: clamp(3rem, 8vw, 7rem) 0 var(--space-24); }

.search-page h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); }

.search-page > div:first-child { align-self: start; position: sticky; top: 2rem; }

.search-field { min-height: 3.5rem; display: grid; grid-template-columns: 1.5rem 1fr; gap: .6rem; align-items: center; margin-top: var(--space-8); padding: 0 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: .75rem; }

.search-field svg { width: 1.25rem; color: var(--muted); }

.search-field input { width: 100%; height: 3.4rem; color: var(--ink); background: transparent; border: 0; }
.search-field:focus-within { border-color: var(--focus); box-shadow: 0 0 0 2px color-mix(in oklch, var(--focus) 28%, transparent); }

.search-status { margin-top: .75rem; color: var(--muted); font-size: .85rem; }

.empty-result { padding: 2rem 0; color: var(--muted); }

.info-page { width: var(--page); margin: 0 auto; padding: clamp(3rem, 8vw, 7rem) 0 var(--space-24); }

.info-copy { max-width: 48rem; }

.info-copy h1 { max-width: 13ch; }

.info-copy h2 { margin-top: var(--space-16); font-size: 2rem; }

.info-copy p { font-size: 1.08rem; }

.not-found { min-height: 38rem; display: grid; place-content: center; justify-items: start; width: var(--page); margin: 0 auto; }

.not-found > span { color: var(--leaf); font: 800 1rem/1 var(--display); }

.not-found h1 { margin-top: 1rem; }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .icon-button:hover { color: var(--pine); background: var(--surface-soft); }
  .header-cta:hover, .primary-action:hover { background: var(--pine-deep); }
  .secondary-action:hover { border-color: var(--pine); background: var(--surface); }
  .story-row:hover > svg, .related a:hover > svg { transform: translateX(.25rem); }
  .text-action:hover { color: var(--pine-deep); }
  .mobile-menu a:hover { background: var(--surface-soft); }
  .scenario-controls button:hover:not([aria-pressed="true"]) { color: white; border-color: color-mix(in oklch, white 55%, transparent); }
}

@media (max-width: 64rem) {
  .site-header { flex-wrap: wrap; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .mower-finder { max-width: 38rem; }
  .review-rail, .duel, .mini-duel { grid-template-columns: 1fr; }
  .duel-a, .review-product { order: 1; }
  .duel-b, .review-verdict { order: 2; }
  .duel-decision { order: 3; grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .duel-decision p { font-size: 1.25rem; }
  .duel-chart { order: 4; }
  .review-chart { order: 3; }
  .review-product, .review-verdict, .duel-side, .mini-duel > div { min-height: 20rem; }
  .review-chart, .duel-chart, .mini-duel .mini-chart { min-height: 23rem; border: 0; border-block: 1px solid var(--line); }
  .duel-b { text-align: left; }
  .duel-b .text-action { align-self: flex-start; }
  .duel-b .duel-letter { right: -1rem; left: auto; }
  .latest-layout, .index-feed { grid-template-columns: 1fr; }
  .index-feature .lead-story { position: static; }
  .search-page { grid-template-columns: 1fr; }
  .search-page > div:first-child { position: static; }
  .scenario-heading { grid-template-columns: 1fr; }
  .noscript-menu { display: flex; flex-wrap: wrap; gap: 1rem; width: 100%; padding: .85rem 0; border-top: 1px solid var(--line); }
  .noscript-menu a { font-weight: 700; }
}

@media (max-width: 48rem) {
  :root { --page: min(100% - 1.75rem, 76rem); }
  .site-header { padding-inline: .9rem; }
  .header-cta { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip p:nth-child(2) { border-right: 0; }
  .proof-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .article-intro, .index-hero, .method-band, .site-footer, .pros-cons, .verdict-strip, .score-section, .spec-section, .yard-check, .field-checklist, .fit-ledger { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: var(--space-8); }
  .article-meta { padding: 1.25rem 0 0; border: 0; border-top: 1px solid var(--line); }
  .method-band { padding-inline: 1.25rem; }
  .site-footer { padding-inline: 1.25rem; }
  .metric-row { grid-template-columns: 6.5rem 1fr 2rem 2rem 1fr; gap: .4rem; font-size: .82rem; }
  .related-list { grid-template-columns: 1fr; }
  .related a { border-right: 0; border-bottom: 1px solid var(--line); }
  .related a:last-child { border-bottom: 0; }
  .ranked-pick { grid-template-columns: 2.5rem 1fr; }
  .rank-score { grid-column: 2; text-align: left; }
  .mini-specs { grid-template-columns: 1fr; }
  .guide-steps li { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .article-intro h1 { font-size: clamp(2.5rem, 13vw, 4.5rem); }
  .js .scenario-controls { display: grid; grid-template-columns: 1fr 1fr; }
  .scenario-controls button:first-child { grid-column: 1 / -1; }
  .duel { grid-template-columns: 1fr 1fr; }
  .duel-side { min-height: 17rem; padding: 1rem; }
  .duel-side .score-number { margin-bottom: 1rem; font-size: clamp(3.2rem, 17vw, 4.6rem); }
  .duel-side h2 { font-size: clamp(1.15rem, 5.5vw, 1.55rem); }
  .duel-side p { font-size: .8rem; }
  .duel-side .text-action { font-size: .78rem; line-height: 1.25; }
  .duel-b { text-align: right; }
  .duel-b .text-action { align-self: flex-end; }
  .duel-letter { bottom: -1rem; font-size: 8rem; }
  .duel-chart { grid-column: 1 / -1; min-height: 21rem; }
  .comparison-table { min-width: 0; }
  .comparison-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr { display: block; width: 100%; }
  .comparison-table tr { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
  .comparison-table th[scope="row"] { grid-column: 1 / -1; width: auto; padding: 1rem .75rem .35rem; border: 0; color: var(--ink); font: 700 .9rem/1.2 var(--display); }
  .comparison-table td { padding: .45rem .75rem 1rem; border: 0; font-size: .88rem; }
  .comparison-table td::before { display: block; margin-bottom: .25rem; color: var(--muted); content: attr(data-product); font-size: .65rem; font-weight: 700; }
  .fit-ledger-row { grid-template-columns: 1fr 1fr; }
  .fit-ledger-row > strong { grid-column: 1 / -1; }
}

@media (max-width: 31rem) {
  .brand { font-size: 1.05rem; }
  .home-copy h1 { font-size: 3.1rem; }
  .metric-row { grid-template-columns: 5.5rem 1fr 1.7rem 1.7rem 1fr; gap: .3rem; font-size: .74rem; }
  .review-product, .review-verdict, .duel-side { padding: 1.4rem; }
  .score-number { font-size: 4.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .hero-actions, .header-actions, .text-action, .related { display: none !important; }
  body { background: white; }
  .article-intro, .article-body, .page-wrap { width: 100%; }
  .review-rail, .duel { break-inside: avoid; }
  a { text-decoration: none; }
}
