:root {
  --font-heading: 'Geist', Arial, sans-serif;
  --font-body: 'Geist', Arial, sans-serif;
  --font-mono: 'Geist Mono', monospace;
  --color-bg: #f7f6f1;
  --color-bg-alt: #eeece4;
  --color-surface: rgba(247, 246, 241, 0.9);
  --color-ink: #171a17;
  --color-muted: #676b62;
  --color-border: #d8d3c6;
  --color-strong: #272b26;
  --color-accent: #0f7a55;
  --color-accent-dark: #0b5e42;
  --color-accent-soft: #dfeee6;
  --radius-lg: 6px;
  --radius-md: 6px;
  --shadow: 10px 10px 0 var(--color-bg-alt);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(23, 26, 23, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(23, 26, 23, 0.03) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--color-bg);
  line-height: 1.6;
  letter-spacing: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(23, 26, 23, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(23, 26, 23, 0.05) 0 1px, transparent 1px);
  background-size: 13px 17px, 19px 23px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 40;
  transform: translateY(-160%);
  background: var(--color-ink);
  color: var(--color-bg);
  padding: 10px 12px;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container.wide {
  width: min(1240px, 94%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-bg);
  font-family: var(--font-mono);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-ink);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-ink);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.home-hero {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 430px;
  grid-template-rows: auto auto;
  gap: 30px 46px;
  align-items: center;
  min-height: calc(92dvh - 70px);
  padding: 58px 0 26px;
}

.hero-index,
.section-heading > span,
.article-aside > span,
.service-ledger span {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-index {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-height: 420px;
  border-right: 1px solid var(--color-strong);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-text h1,
.section-heading h1,
.section-heading h2,
.method-band h2,
.article-head h1 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-text h1 {
  max-width: 750px;
  font-size: clamp(46px, 6.1vw, 86px);
}

.hero-text p,
.section-heading p,
.article-summary,
.method-band p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-text p {
  max-width: 680px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.hero-search,
.product-search-panel {
  display: grid;
  gap: 12px;
}

.hero-search {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: 680px;
  margin-top: 24px;
}

.hero-search label,
.search-field {
  display: grid;
  gap: 7px;
}

.hero-search span,
.search-field span {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-search input,
.search-field input,
.search-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-ink);
  font: inherit;
  font-weight: 650;
  padding: 11px 13px;
}

.hero-search input:focus,
.search-field input:focus,
.search-field select:focus {
  outline: 2px solid rgba(15, 122, 85, 0.28);
  border-color: var(--color-accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn.primary {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-bg);
  box-shadow: 0 10px 22px rgba(11, 94, 66, 0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  background: var(--color-ink);
  border-color: var(--color-ink);
  box-shadow: 0 14px 28px rgba(23, 26, 23, 0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--color-ink);
}

.btn.ghost:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}

.btn-cta {
  position: relative;
  gap: 10px;
  padding-right: 20px;
}

.btn-cta::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.btn-cta:hover::after,
.btn-cta:focus-visible::after {
  transform: translate(3px, -1px);
}

.text-link {
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-accent-dark);
  text-decoration-color: var(--color-ink);
}

.editorial-frame {
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img,
.article-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media {
  aspect-ratio: 4 / 3;
}

.trust-strip {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0 0;
  border-top: 1px solid var(--color-strong);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip div {
  padding: 18px 20px 18px 0;
}

.trust-strip div + div {
  border-left: 1px solid var(--color-border);
  padding-left: 20px;
}

.trust-strip dt {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 850;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.82fr) minmax(260px, 0.54fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.compact {
  grid-template-columns: 120px 1fr 0.7fr;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.ranking-table {
  border-top: 2px solid var(--color-strong);
  border-bottom: 2px solid var(--color-strong);
  background: rgba(247, 246, 241, 0.54);
}

.product-search-panel {
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 260px) auto;
  align-items: end;
  margin: 28px 0 24px;
  border-top: 2px solid var(--color-strong);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.search-count {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.empty-state {
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  margin: 0;
  padding: 24px 0;
}

.table-row {
  display: grid;
  grid-template-columns: 1.12fr 1.55fr 0.72fr 1fr 0.42fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.table-row[hidden],
.table-row.is-filtered-out,
.empty-state[hidden] {
  display: none !important;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.tool-row.is-featured {
  background: linear-gradient(90deg, rgba(15, 122, 85, 0.08), transparent 48%);
}

.tool-row {
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, transform 180ms ease;
}

.tool-row::before {
  content: "";
  position: absolute;
  inset: -1px -12px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tool-row:hover,
.tool-row:focus-visible {
  transform: translateX(4px);
}

.tool-row:hover::before,
.tool-row:focus-visible::before {
  border-color: rgba(15, 122, 85, 0.34);
  background: rgba(223, 238, 230, 0.42);
  box-shadow: 7px 7px 0 rgba(216, 211, 198, 0.8);
}

.tool-row:focus-visible {
  outline: none;
}

.tool-name {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tool-name h3,
.tool-name p,
.topic-card h3,
.topic-card p,
.article-row h3,
.article-row p,
.product-card h3,
.product-card p {
  margin: 0;
}

.tool-name p,
.tool-row > span,
.topic-card p,
.article-row p,
.product-card p {
  color: var(--color-muted);
}

.tool-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
}

.row-action {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-bg);
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tool-row > .row-action {
  color: var(--color-bg);
}

.row-action::after {
  content: "->";
  font-family: var(--font-mono);
  font-size: 12px;
  transition: transform 180ms ease;
}

.tool-row:hover .row-action,
.tool-row:focus-visible .row-action {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
}

.tool-row:hover .row-action::after,
.tool-row:focus-visible .row-action::after {
  transform: translateX(2px);
}

.topic-grid,
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.editorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.topic-card,
.product-card,
.content-block,
.product-score-card {
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  background: rgba(247, 246, 241, 0.72);
  padding: 22px;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}

.topic-card:hover,
.product-card:hover {
  background: var(--color-bg-alt);
  transform: translate(-3px, -3px);
}

.chip {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(15, 122, 85, 0.38);
  border-radius: var(--radius-md);
  color: var(--color-accent-dark);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-list {
  display: grid;
  border-top: 2px solid var(--color-strong);
}

.article-row {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.8fr) 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.article-row > span {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.method-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 2px solid var(--color-strong);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.method-band h2 {
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 48px);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--color-strong);
}

.method-grid article {
  min-height: 180px;
  padding: 20px 22px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.method-grid article:nth-child(2n) {
  border-right: 0;
}

.method-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article {
  padding: 58px 0 70px;
}

.article-head {
  max-width: 980px;
}

.article-head h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 76px);
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.link-chip {
  text-decoration: none;
}

.article-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  margin-top: 38px;
}

.article-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  border-top: 2px solid var(--color-strong);
  padding-top: 16px;
  color: var(--color-muted);
}

.article-body {
  border-top: 2px solid var(--color-strong);
  padding-top: 0;
  font-size: 18px;
}

.article-body h2,
.article-body h3,
.content-block h2,
.product-page h2 {
  line-height: 1.08;
  margin-top: 34px;
}

.article-body p,
.article-body li,
.legal-copy p,
.legal-copy li {
  max-width: 72ch;
}

.article-hero-media {
  margin: 0 0 32px;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.article-body a,
.content-block a {
  color: var(--color-accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
  table-layout: fixed;
}

.article-body th,
.article-body td {
  border: 1px solid var(--color-border);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--color-bg-alt);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.article-body .comparison-product-cell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.article-body .comparison-image-link {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
  text-decoration: none;
}

.article-body .comparison-table-image {
  display: block;
  width: 46px;
  height: 46px;
  max-width: 46px;
  max-height: 46px;
  object-fit: contain;
}

.article-body table img {
  max-width: 58px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.article-body .table-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 112px;
}

.article-body .table-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.article-body .table-pill.primary {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-bg);
}

.article-body .table-pill.ghost {
  background: var(--color-bg);
  color: var(--color-accent-dark);
}

.article-end-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 46px;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  padding: 24px;
}

.article-end-cta h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.article-end-cta p {
  margin: 0;
  color: var(--color-muted);
}

.article-end-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.article-products,
.faq {
  margin-top: 52px;
}

.product-content {
  display: grid;
  gap: 12px;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.product-page {
  padding: 58px 0 20px;
}

.product-heading {
  margin-bottom: 28px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-media {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta > div {
  border-top: 2px solid var(--color-strong);
  padding-top: 12px;
}

.product-meta strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-accent-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.product-guidance {
  padding-top: 24px;
}

.related-link-panel {
  border-left: 4px solid var(--color-accent);
}

.related-link-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.related-link-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
}

.related-link-list span {
  color: var(--color-muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.faq details {
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.newsletter-band {
  margin-top: 58px;
  border-top: 2px solid var(--color-strong);
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(15, 122, 85, 0.1), transparent 34%),
    rgba(238, 236, 228, 0.72);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.newsletter-copy > span {
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.newsletter-copy h2 {
  max-width: 780px;
  margin: 12px 0 14px;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 0.98;
}

.newsletter-copy p {
  max-width: 640px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-lg);
  background: rgba(247, 246, 241, 0.86);
  box-shadow: 8px 8px 0 rgba(216, 211, 198, 0.8);
  padding: 18px;
}

.newsletter-field {
  display: grid;
  gap: 8px;
}

.newsletter-field span {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.newsletter-field input {
  width: 100%;
  border: 1px solid var(--color-strong);
  border-radius: var(--radius-md);
  background: #fffdf7;
  color: var(--color-ink);
  padding: 14px 14px;
  font: inherit;
}

.newsletter-field input:focus-visible {
  outline: 3px solid rgba(15, 122, 85, 0.24);
  outline-offset: 2px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.newsletter-consent input {
  margin-top: 3px;
  accent-color: var(--color-accent-dark);
}

.newsletter-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-note,
.newsletter-status {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.newsletter-note a {
  color: var(--color-ink);
  font-weight: 800;
}

.newsletter-status.is-success {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.newsletter-status.is-error {
  color: #8f2d1f;
  font-weight: 800;
}

.site-footer {
  padding: 44px 0 22px;
  border-top: 2px solid var(--color-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.8fr;
  gap: 30px;
}

.footer-grid h4 {
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  color: var(--color-ink);
  text-decoration: none;
  margin: 6px 0;
  font-weight: 700;
}

.footer-disclosure,
.footer-note,
.muted {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .home-hero,
  .section-heading,
  .method-band,
  .newsletter-inner,
  .article-end-cta,
  .article-shell,
  .product-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-index {
    display: none;
  }

  .trust-strip {
    grid-column: auto;
  }

  .table-head {
    display: none;
  }

  .hero-search,
  .product-search-panel {
    grid-template-columns: 1fr;
  }

  .search-count {
    justify-content: flex-start;
  }

  .table-row,
  .article-row {
    grid-template-columns: 1fr 1fr;
  }

  .tool-name,
  .article-row h3,
  .article-row p {
    grid-column: 1 / -1;
  }

  .article-aside {
    position: static;
  }

  .article-end-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 14px;
  }

  .home-hero,
  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-text h1 {
    font-size: 45px;
  }

  .trust-strip,
  .editorial-grid,
  .method-grid,
  .product-meta,
  .two-column,
  .hero-search,
  .product-search-panel,
  .table-row,
  .article-row {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--color-border);
    padding-left: 0;
  }

  .article-head h1 {
    font-size: 40px;
  }

  .article-body {
    font-size: 16px;
  }
}
