:root {
  --ink: #111316;
  --soft: #5f6874;
  --paper: #f6f3ed;
  --panel: #ffffff;
  --deep: #0d0f12;
  --deep-2: #171b20;
  --line: #dcd7ca;
  --green: #55c184;
  --cyan: #62b4cc;
  --amber: #d59a3a;
  --red: #d66a55;
  --shadow: 0 24px 80px rgba(13, 15, 18, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
h2[id],
h3[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main:focus {
  outline: none;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--green);
  color: #07100b;
  border-radius: 6px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

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

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

.kg-width-wide {
  width: min(100%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  width: 100%;
  max-width: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 15, 18, 0.94);
  color: #f2f5f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 22px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #f2f5f1;
  color: var(--deep);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c6ccd1;
  font-size: 14px;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:focus-visible,
.brand:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.gear-card a:focus-visible,
.toc a:focus-visible,
.feature-card a:focus-visible,
.archive-card a:focus-visible {
  border-radius: 6px;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #f2f5f1;
  color: var(--deep);
  border-radius: 6px;
  font-weight: 850;
}

.hero {
  background: var(--deep);
  color: #f2f5f1;
  padding: 42px 0 58px;
}

.hero-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 34px;
  align-items: stretch;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #bbd9c8;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero h1,
.article-hero h1,
.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy,
.dek {
  max-width: 720px;
  color: #c6ccd1;
  font-size: 19px;
  line-height: 1.6;
  margin: 24px 0 0;
  overflow-wrap: break-word;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--green);
  color: #07100b;
  font-weight: 850;
  font-size: 14px;
  white-space: nowrap;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #edf2ef;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 15, 18, 0.02), rgba(13, 15, 18, 0.46)),
    var(--hero-image);
  background-size: cover;
  background-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  mix-blend-mode: normal;
}

.lab-card {
  position: relative;
  z-index: 1;
  margin: 18px;
  padding: 18px;
  background: rgba(13, 15, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.lab-card h2,
.lab-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.metric b {
  display: block;
  color: #fff;
  font-size: 22px;
}

.metric span {
  display: block;
  color: #aeb8be;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
}

.ticker {
  background: #121519;
  color: #c6ccd1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ticker-item {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 18px;
}

.ticker-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.ticker-item strong {
  color: #fff;
  font-size: 14px;
}

.ticker-item span {
  color: #9fa8ae;
  font-size: 12px;
  margin-top: 4px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.compact-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.eyebrow {
  color: #60706a;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.section h2,
.article h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.section-head p {
  max-width: 440px;
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}

.decision-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-bottom: 44px;
}

.proof-strip,
.release-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 243, 237, 0.74)),
    #fff;
  box-shadow: 0 18px 54px rgba(13, 15, 18, 0.08);
}

.proof-strip h2,
.release-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 600;
}

.proof-strip p,
.release-panel p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--soft);
  line-height: 1.58;
}

.proof-grid,
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-card,
.release-grid div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #e4e0d6;
  border-radius: 6px;
  background: #fbfaf6;
}

.proof-card span,
.release-grid span {
  color: #60706a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.proof-card strong,
.release-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.08;
}

.proof-card small {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.35;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.decision-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.05);
}

.decision-card span {
  color: #60706a;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.decision-card strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.05;
}

.decision-card small {
  display: block;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.feature-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card,
.feature-card,
.gear-card,
.panel,
.toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.feature-card {
  overflow: hidden;
}

.feature-card.large {
  min-height: 520px;
}

.feature-img {
  min-height: 255px;
  background:
    linear-gradient(180deg, rgba(17, 19, 22, 0), rgba(17, 19, 22, 0.42)),
    var(--card-image);
  background-size: cover;
  background-position: center;
}

.feature-body {
  padding: 22px;
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.label {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eff2ee;
  color: #334039;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.label.tested {
  background: #dff2e7;
  color: #15562f;
}

.label.money {
  background: #f3e5c7;
  color: #674410;
}

.feature-card h3,
.gear-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.feature-card p,
.gear-card p {
  color: var(--soft);
  line-height: 1.55;
  margin: 13px 0 0;
}

.mini-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verdict {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.verdict div {
  padding: 14px 12px 0 0;
}

.verdict b {
  display: block;
  font-size: 18px;
}

.verdict span {
  color: var(--soft);
  font-size: 12px;
}

.dark-band {
  background: var(--ink);
  color: #eef2ef;
}

.comparison {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.scorecard {
  background: #1a1d22;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.scorecard h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.score-row {
  display: grid;
  grid-template-columns: 96px 1fr 56px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c2cbd0;
  font-size: 13px;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--green);
}

.review-table,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.review-table th,
.review-table td,
.spec-table th,
.spec-table td {
  padding: 16px;
  border-bottom: 1px solid #ece7dc;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.review-table th,
.spec-table th {
  background: #ebe4d6;
  color: #4f554f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.review-table tr:last-child td,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.price {
  font-weight: 850;
  white-space: nowrap;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.latest-section {
  padding-top: 38px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.latest-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.latest-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #15181d;
}

.latest-body {
  padding: 18px;
}

.latest-body h3 {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.14;
}

.latest-body p {
  color: var(--soft);
  line-height: 1.52;
  margin: 12px 0 0;
}

.archive-pagination {
  margin-top: 26px;
}

.pagination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.pagination a,
.pagination .page-number {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.pagination a {
  padding: 0 14px;
  border: 1px solid #dce5dd;
  background: #eff6f0;
  color: #15562f;
}

.pagination .older-posts {
  justify-self: end;
}

.pagination .newer-posts {
  justify-self: start;
}

.pagination .page-number {
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--soft);
}

.topic-lanes-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.topic-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.topic-lane-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.topic-lane-card span {
  color: #60706a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.topic-lane-card h3 {
  margin: 14px 0 0;
  font-size: 23px;
  line-height: 1.12;
}

.topic-lane-card p {
  color: var(--soft);
  line-height: 1.5;
  margin: 12px 0 0;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.topic-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #dce5dd;
  border-radius: 6px;
  background: #eff6f0;
  color: #15562f;
  font-size: 13px;
  font-weight: 850;
}

.archive-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.archive-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.archive-card p {
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}

.archive-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.search-panel {
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box label {
  color: #4f554f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d8d2c4;
  border-radius: 6px;
  background: #f8f6f0;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  font-size: 18px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.search-result {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fbfaf6;
}

.search-result h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.18;
}

.search-result p {
  color: var(--soft);
  margin: 0;
  line-height: 1.5;
}

.search-empty {
  border: 1px dashed #c9c1b1;
  border-radius: var(--radius);
  padding: 18px;
  color: var(--soft);
}

.gear-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.gear-grid-tight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gear-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #15181d;
  color: #f2f5f1;
  font-weight: 850;
  font-size: 12px;
}

.gear-card h3 {
  margin-top: 18px;
  font-size: 19px;
}

.gear-card p {
  font-size: 14px;
}

.gear-card a,
.text-link {
  margin-top: 18px;
  color: #15562f;
  font-weight: 850;
  font-size: 14px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.source-list a {
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf6;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.purchase-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.purchase-card span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.purchase-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.purchase-card p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.checklist {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.checklist h3 {
  margin: 0 0 12px;
}

.checklist ul {
  margin: 0;
  padding-left: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.faq-item p {
  margin: 0;
}

.article-hero {
  background: var(--deep);
  color: #f2f5f1;
  padding: 46px 0 40px;
}

.article-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: end;
}

.crumbs {
  color: #99a4aa;
  font-size: 13px;
  margin-bottom: 28px;
}

.verdict-card {
  background: var(--deep-2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.verdict-card h2 {
  margin: 0;
  font-size: 18px;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 10px;
}

.score b {
  color: var(--green);
  font-size: 58px;
  line-height: 1;
}

.score span {
  color: #aeb8be;
  font-weight: 750;
}

.verdict-card p {
  color: #c6ccd1;
  line-height: 1.5;
  margin: 0;
}

.trust-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-note span,
.trust-note small {
  display: block;
  color: #aeb8be;
  font-size: 12px;
  line-height: 1.35;
}

.trust-note span {
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.trust-note strong {
  display: block;
  color: #f2f5f1;
  font-size: 18px;
  line-height: 1.15;
  margin: 8px 0 5px;
}

.metadata {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  transform: translateY(50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(13, 15, 18, 0.16);
}

.meta-cell {
  background: #fff;
  border-right: 1px solid #e4e0d6;
  padding: 16px;
}

.meta-cell:last-child {
  border-right: 0;
}

.meta-cell span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
}

.article-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 86px auto 80px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.article-wrap.no-sidebar {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.post-feature-image {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 34px;
  box-shadow: 0 18px 60px rgba(13, 15, 18, 0.12);
}

.toc {
  position: sticky;
  top: 92px;
  padding: 16px;
}

.toc h3 {
  margin: 0 0 12px;
  color: #515a61;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.toc a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid #ece7dc;
  color: #3f474d;
  font-size: 14px;
}

.article-image {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 19, 22, 0.02), rgba(17, 19, 22, 0.22)),
    var(--article-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d1114;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.disclosure {
  background: #fff8e8;
  border: 1px solid #ead7a9;
  border-radius: var(--radius);
  padding: 16px;
  color: #5c4517;
  line-height: 1.5;
  margin-bottom: 28px;
  font-size: 14px;
}

.callout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.callout span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.callout strong {
  font-size: 22px;
  line-height: 1.1;
}

.article h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 38px;
}

.article p,
.article li {
  max-width: 780px;
  color: #363d43;
  font-size: 18px;
  line-height: 1.72;
}

.article pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111316;
  color: #eef2ef;
  -webkit-overflow-scrolling: touch;
}

.article code {
  overflow-wrap: anywhere;
}

.article pre code {
  display: block;
  min-width: max-content;
  overflow-wrap: normal;
  color: inherit;
}

.post-next-steps {
  margin: 54px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 237, 0.84)),
    #fff;
  box-shadow: 0 18px 54px rgba(13, 15, 18, 0.08);
}

.post-next-steps h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 600;
}

.post-next-steps p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.55;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.next-step-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #e4e0d6;
  border-radius: 6px;
  background: #fbfaf6;
}

.next-step-card span {
  color: #60706a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.next-step-card strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.08;
}

.next-step-card small {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.35;
}

.post-topic-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.post-topic-jump span,
.post-topic-jump a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.post-topic-jump span {
  color: #5f665f;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.post-topic-jump a {
  padding: 0 10px;
  border: 1px solid #dce5dd;
  background: #eff6f0;
  color: #15562f;
}

.post-search {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e4e0d6;
}

.post-search label {
  color: #4f554f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.post-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.post-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d2c4;
  border-radius: 6px;
  background: #f8f6f0;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.post-search button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: var(--green);
  color: #06110a;
  font: inherit;
  font-weight: 850;
}

.post-related {
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.post-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.post-related h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 600;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-related-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 15, 18, 0.05);
}

.post-related-card a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.post-related-card span {
  color: #60706a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.post-related-card strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.14;
}

.post-related-card small {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
}

.article ul {
  padding-left: 22px;
}

.buy-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--ink);
  color: #eff3f0;
  border-radius: var(--radius);
  padding: 22px;
  margin: 34px 0;
}

.buy-box h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.buy-box p {
  color: #bfc8ce;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.panel {
  padding: 20px;
}

.panel h3 {
  margin: 0 0 12px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

.newsletter {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.94), rgba(17, 19, 22, 0.72)),
    url("visual-automation.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 600;
}

.signup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.signup input {
  width: 100%;
  min-height: 46px;
  border: 0;
  padding: 0 12px;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.signup button {
  min-height: 46px;
  border: 0;
  border-radius: 5px;
  padding: 0 16px;
  background: var(--green);
  color: #06110a;
  font: inherit;
  font-weight: 850;
}

.picker-group select:focus,
.search-box input:focus,
.signup input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(85, 193, 132, 0.22);
  outline: none;
}

.footer {
  background: var(--deep);
  color: #aeb8be;
  padding: 34px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.footer a {
  color: #eef2ef;
  font-weight: 750;
}

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

.picker-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.picker-form,
.picker-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(13, 15, 18, 0.06);
}

.picker-form {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.picker-group {
  display: grid;
  gap: 8px;
}

.picker-group label {
  color: #4f554f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.picker-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d2c4;
  border-radius: 6px;
  background: #f8f6f0;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.picker-result {
  min-height: 360px;
  padding: 24px;
  background: var(--ink);
  color: #f2f5f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.picker-result h2 {
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
}

.picker-result p {
  color: #c6ccd1;
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
}

.picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 940px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
    overflow: hidden;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .article-hero-inner,
  .comparison,
  .newsletter,
  .article-wrap,
  .buy-box,
  .picker-shell,
  .proof-strip,
  .release-panel,
  .decision-strip {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .article-hero h1,
  .page-title {
    font-size: 64px;
  }

  .section h2,
  .newsletter h2 {
    font-size: 40px;
  }

  .hero-media {
    min-height: 420px;
  }

  .ticker-inner,
  .feature-grid,
  .gear-grid,
  .latest-grid,
  .topic-lane-grid,
  .decision-grid,
  .archive-grid,
  .purchase-grid,
  .proof-grid,
  .release-grid,
  .metadata {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metadata {
    transform: none;
    margin-top: 18px;
  }

  .article-wrap {
    margin-top: 46px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav-inner,
  .hero-grid,
  .article-hero-inner,
  .ticker-inner,
  .section,
  .newsletter,
  .metadata,
  .article-wrap,
  .footer-inner {
    width: min(100% - 22px, var(--max));
  }

  .nav-inner {
    gap: 12px;
    min-height: 0;
    padding: 12px 0;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 10px;
    padding: 9px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1,
  .article-hero h1,
  .page-title {
    line-height: 1.04;
    text-wrap: wrap;
  }

  .hero h1 {
    font-size: 35px;
  }

  .article-hero h1,
  .page-title {
    font-size: 35px;
  }

  .hero-copy,
  .dek {
    font-size: 16px;
  }

  .section h2,
  .newsletter h2 {
    font-size: 34px;
  }

  .article h2 {
    font-size: 31px;
  }

  .article p,
  .article li {
    font-size: 16px;
  }

  .hero-media {
    min-height: 320px;
  }

  .button-row {
    gap: 10px;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .feature-card.large,
  .mini-card {
    min-height: 0;
  }

  .feature-img {
    min-height: 210px;
  }

  .metrics,
  .ticker-inner,
  .feature-grid,
  .feature-stack,
  .gear-grid,
  .latest-grid,
  .topic-lane-grid,
  .decision-grid,
  .archive-grid,
  .search-results,
  .metadata,
  .callout-grid,
  .purchase-grid,
  .proof-grid,
  .release-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .review-table,
  .spec-table {
    display: block;
    overflow-x: auto;
  }

  .next-step-grid,
  .post-related-grid,
  .post-search div {
    grid-template-columns: 1fr;
  }

  .post-related-head {
    display: block;
  }

  .article-image {
    min-height: 300px;
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .picker-result h2 {
    font-size: 32px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .article-hero h1,
  .page-title {
    line-height: 1.05;
  }

  .hero h1 {
    font-size: 33px;
  }

  .article-hero h1,
  .page-title {
    font-size: 32px;
  }

  .section h2,
  .newsletter h2 {
    font-size: 30px;
  }

  .lab-card {
    margin: 12px;
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .article-hero h1,
  .page-title,
  .hero-copy,
  .dek {
    width: 100%;
    max-width: 320px;
  }
}
