:root {
  --ink: #1c2c2a;
  --muted: #586965;
  --green: #173f3b;
  --green-2: #255c55;
  --mint: #d7e6df;
  --mint-light: #edf4f0;
  --sand: #f4efe7;
  --sand-2: #e7ddd0;
  --paper: #fffdf9;
  --white: #ffffff;
  --orange: #f2a23a;
  --orange-dark: #a94118;
  --red: #9c352f;
  --red-light: #faebe7;
  --line: #ced8d3;
  --shadow: 0 20px 55px rgba(23, 63, 59, 0.1);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-2);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

h4 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

p:last-child {
  margin-bottom: 0;
}

code {
  padding: 0.15em 0.35em;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--mint-light);
  font-size: 0.88em;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.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: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 63, 59, 0.13);
  background: rgba(255, 253, 249, 0.94);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.79rem;
  letter-spacing: 0.05em;
  line-height: 1.12;
  text-decoration: none;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0;
  text-transform: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
}

.brand-mark i {
  width: 5px;
  border-radius: 5px;
  background: currentColor;
  transform: rotate(13deg);
}

.brand-mark i:nth-child(1) {
  height: 16px;
}

.brand-mark i:nth-child(2) {
  height: 24px;
}

.brand-mark i:nth-child(3) {
  height: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.5vw, 34px);
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--orange-dark);
}

.mobile-menu {
  display: none;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lede {
  max-width: 770px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid var(--green);
  border-radius: 100px;
  color: var(--white);
  background: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  color: var(--white);
  background: var(--green-2);
  border-color: var(--green-2);
}

.button--quiet {
  color: var(--green);
  background: transparent;
}

.button--quiet:hover {
  color: var(--green);
  background: var(--mint);
  border-color: var(--green);
}

.button--amazon {
  border-color: var(--orange);
  color: #17201f;
  background: var(--orange);
}

.button--amazon:hover {
  border-color: #e68b19;
  color: #17201f;
  background: #eeb15f;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green-2);
  font-weight: 750;
  text-decoration: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 125px) 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 162, 58, 0.14), transparent 28%),
    linear-gradient(145deg, var(--paper), var(--sand));
}

.home-hero::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(23, 63, 59, 0.1);
  border-radius: 50%;
  content: "";
}

.home-hero-grid,
.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(50px, 8vw, 110px);
}

.home-hero h1 {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--green-2);
  content: "✓";
}

.category-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 59, 0.12);
  border-radius: var(--radius-lg);
  background: var(--mint);
  isolation: isolate;
}

.home-hero .category-art,
.page-hero .category-art {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.art-orbit {
  position: absolute;
  border: 1px solid rgba(23, 63, 59, 0.24);
  border-radius: 50%;
}

.art-orbit--one {
  width: 310px;
  height: 310px;
  top: -80px;
  right: -70px;
}

.art-orbit--two {
  width: 230px;
  height: 230px;
  bottom: -80px;
  left: -70px;
}

.art-object {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 155px;
  height: 220px;
  border: 16px solid var(--green);
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-radius: 44% 56% 45% 55% / 24% 28% 72% 76%;
  background: transparent;
  transform: translate(-50%, -50%) rotate(7deg);
}

.art-object::before,
.art-object::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.art-object::before {
  top: 28%;
  transform: translateX(-50%);
}

.art-object::after {
  bottom: 28%;
  transform: translateX(-50%);
}

.art-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
}

.art-dot--one {
  top: 23%;
  left: 20%;
}

.art-dot--two {
  right: 18%;
  bottom: 18%;
  width: 28px;
  height: 28px;
}

.category-art--heat {
  background: #f6dbbd;
}

.category-art--heat .art-object {
  width: 160px;
  height: 205px;
  border: 0;
  border-radius: 38px;
  background: var(--orange-dark);
  box-shadow: inset 0 0 0 20px rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.category-art--heat .art-object::before,
.category-art--heat .art-object::after {
  width: 54px;
  height: 96px;
  top: auto;
  bottom: 54px;
  border: 5px solid #f9dba2;
  border-top-color: transparent;
  border-bottom-color: transparent;
  background: transparent;
}

.category-art--heat .art-object::before {
  left: 32px;
}

.category-art--heat .art-object::after {
  right: -22px;
  left: auto;
}

.category-art--seat {
  background: #d8e4d5;
}

.category-art--seat .art-object {
  width: 210px;
  height: 145px;
  border: 0;
  border-radius: 65px 65px 40px 40px;
  background: var(--green-2);
  box-shadow: inset 0 -18px 0 rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -42%) perspective(200px) rotateX(10deg);
}

.category-art--seat .art-object::before {
  top: auto;
  bottom: -70px;
  left: 20%;
  width: 12px;
  height: 85px;
  border-radius: 10px;
  background: var(--green);
}

.category-art--seat .art-object::after {
  right: 18%;
  bottom: -70px;
  left: auto;
  width: 12px;
  height: 85px;
  border-radius: 10px;
  background: var(--green);
}

.category-art--tens {
  background: #d8e2ea;
}

.category-art--tens .art-object {
  width: 130px;
  height: 190px;
  border: 8px solid var(--green);
  border-radius: 28px;
  background: #f9fcfb;
  box-shadow: 65px 62px 0 -42px var(--orange), -65px -30px 0 -42px var(--orange);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.category-art--tens .art-object::before {
  top: 34px;
  width: 70px;
  height: 50px;
  border-radius: 7px;
  background: var(--mint);
}

.category-art--tens .art-object::after {
  bottom: 28px;
  width: 34px;
  height: 34px;
  border: 4px solid var(--orange-dark);
  background: transparent;
}

.category-art--sleep {
  background: #e6dded;
}

.category-art--sleep .art-object {
  width: 190px;
  height: 125px;
  border: 0;
  border-radius: 65px 25px 65px 25px;
  background: #745f88;
  box-shadow: inset 0 -18px 0 rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.category-art--sleep .art-object::before {
  top: 29px;
  left: 52%;
  width: 82px;
  height: 55px;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: transparent;
}

.category-art--sleep .art-object::after {
  display: none;
}

.category-art--patch {
  background: #e8e0d3;
}

.category-art--patch .art-object {
  width: 118px;
  height: 220px;
  border: 0;
  border-radius: 20px;
  background: #f8f4eb;
  box-shadow: 62px 22px 0 -16px #d3b896, 0 14px 30px rgba(23, 63, 59, 0.16);
  transform: translate(-70%, -50%) rotate(-9deg);
}

.category-art--patch .art-object::before {
  top: 24px;
  width: 72px;
  height: 172px;
  border: 2px dashed #c6a77f;
  border-radius: 13px;
  background: rgba(242, 162, 58, 0.12);
}

.category-art--patch .art-object::after {
  display: none;
}

.category-art--roller {
  background: #d7e4df;
}

.category-art--roller .art-object {
  width: 220px;
  height: 105px;
  border: 14px solid var(--green-2);
  border-radius: 54px;
  background: repeating-linear-gradient(90deg, #b9d0c9 0 14px, #dce9e5 14px 26px);
  box-shadow: 0 18px 30px rgba(23, 63, 59, 0.16);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.category-art--roller .art-object::before {
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  border: 10px solid var(--orange);
  border-radius: 50%;
  background: var(--mint-light);
  transform: translate(-28px, -50%);
}

.category-art--roller .art-object::after {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 44px;
  height: 44px;
  border: 10px solid var(--orange);
  border-radius: 50%;
  background: var(--mint-light);
  transform: translate(28px, -50%);
}

.category-art--map .art-object,
.category-art--method .art-object,
.category-art--about .art-object,
.category-art--medical .art-object,
.category-art--disclosure .art-object,
.category-art--privacy .art-object,
.category-art--terms .art-object {
  width: 175px;
  height: 205px;
  border-width: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
}

.section {
  padding: clamp(75px, 10vw, 120px) 0;
}

.section--compact {
  padding-top: 50px;
}

.section--tint {
  background: var(--sand);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

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

.path-grid--four {
  grid-template-columns: repeat(2, 1fr);
}

.path-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(23, 63, 59, 0.05);
}

.path-card .category-art {
  min-height: 225px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.path-card .art-object {
  transform: translate(-50%, -50%) scale(0.72);
}

.path-card-body {
  padding: 29px;
}

.path-card h3 a {
  color: inherit;
  text-decoration: none;
}

.path-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.path-card {
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.path-card p:not(.eyebrow) {
  color: var(--muted);
}

.under-grid {
  margin: 32px 0 0;
  text-align: center;
}

.standards-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 9vw, 120px);
}

.method-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #cfc3b5;
}

.method-steps li:last-child {
  border-bottom: 1px solid #cfc3b5;
}

.method-steps > li > span {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.method-steps strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.method-steps p {
  margin-top: 5px;
  color: var(--muted);
}

.promise {
  max-width: 900px;
  padding: clamp(40px, 7vw, 78px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green);
}

.promise .eyebrow {
  color: #f3bd72;
}

.promise h2,
.promise p {
  color: inherit;
}

.promise .button {
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.promise .button--quiet {
  color: var(--white);
  background: transparent;
}

.breadcrumbs {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #93a29d;
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.page-hero {
  padding: clamp(48px, 7vw, 90px) 0 clamp(55px, 8vw, 105px);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.85rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.article-meta p {
  margin: 0;
}

.article {
  max-width: 1040px;
  padding-top: clamp(52px, 8vw, 90px);
  padding-bottom: clamp(80px, 11vw, 130px);
}

.article > section,
.article > aside {
  margin-top: clamp(65px, 9vw, 105px);
}

.article > :first-child {
  margin-top: 0;
}

.affiliate-note {
  display: grid;
  align-items: start;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid #ddc8a9;
  border-radius: var(--radius-sm);
  background: #fff7e9;
  color: #514533;
  font-size: 0.88rem;
}

.affiliate-note > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-dark);
  font-weight: 800;
}

.affiliate-note p {
  margin: 2px 0 0;
}

.red-flag {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: clamp(25px, 5vw, 40px);
  border: 1px solid #e5b7ae;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  background: var(--red-light);
}

.red-flag-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
}

.red-flag h2 {
  margin-bottom: 10px;
  color: #6f241f;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.red-flag a {
  color: #792b25;
  font-weight: 750;
}

.section > .shell > .red-flag + .section-heading {
  margin-top: clamp(55px, 8vw, 85px);
}

.evidence-note {
  padding: clamp(30px, 6vw, 55px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green);
}

.evidence-note .eyebrow {
  color: #f6bd6f;
}

.evidence-note h2,
.evidence-note p {
  color: inherit;
}

/* The default link green is unreadable on the dark evidence panel. */
.evidence-note a {
  color: #f6bd6f;
  font-weight: 700;
}

.evidence-note a:hover {
  color: var(--white);
}

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

.decision-grid > div {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mint-light);
}

.decision-grid > div > span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.decision-grid h3 {
  font-size: 1.28rem;
}

.decision-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(23, 63, 59, 0.05);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--white);
  background: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody th {
  color: var(--green);
  font-weight: 750;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.product-list {
  display: grid;
  gap: 28px;
}

.product-review {
  scroll-margin-top: 24px;
  padding: clamp(28px, 6vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 63, 59, 0.07);
}

.product-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 19px;
  border-radius: 100px;
  color: var(--green);
  background: var(--mint);
  font-size: 0.8rem;
  font-weight: 750;
}

.product-kicker span {
  color: #4c5f5a;
  font-weight: 650;
}

.product-review > p {
  color: var(--muted);
}

.product-columns {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  margin: 34px 0;
}

.spec-list {
  margin: 0;
}

.spec-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.spec-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  font-size: 0.9rem;
}

.tradeoff-box {
  padding: 23px;
  border-radius: var(--radius-sm);
  background: var(--sand);
}

.tradeoff-box p {
  font-size: 0.9rem;
}

.tradeoff-box h4:not(:first-child) {
  margin-top: 23px;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.source-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 650;
}

.verification {
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.safety-section {
  padding: clamp(30px, 6vw, 55px);
  border-radius: var(--radius-lg);
  background: var(--mint-light);
}

.safety-section > div {
  max-width: 730px;
}

.safety-section details {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

details summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--green);
  font-weight: 750;
  list-style: none;
}

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

details summary span {
  font-size: 1.5rem;
  transition: transform 150ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

.safety-section details ul {
  padding: 0 0 22px 24px;
  margin: 0;
}

.safety-section details li + li {
  margin-top: 12px;
}

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

.related-grid a {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--green);
  background: var(--mint-light);
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.related-grid a:hover {
  border-color: var(--green-2);
  transform: translateY(-2px);
}

.related-grid strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.related-grid span {
  grid-column: 1 / -1;
  color: var(--muted);
}

.related-grid i {
  font-style: normal;
  font-weight: 800;
}

.source-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-list li {
  border-top: 1px solid var(--line);
}

.source-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.source-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 4px;
  color: var(--green);
  font-weight: 650;
  text-decoration: none;
}

.source-list a:hover {
  color: var(--orange-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  padding: 14px 4px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.faq-list details p {
  max-width: 760px;
  padding: 0 4px 22px;
  color: var(--muted);
}

.next-guide {
  padding: clamp(35px, 7vw, 65px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green);
}

.next-guide .eyebrow {
  color: #f4be73;
}

.next-guide h2,
.next-guide p {
  color: inherit;
}

.next-guide .button {
  margin-top: 15px;
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.use-case-table {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 110px);
}

.use-case-table ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.use-case-table li {
  padding: 20px 0;
  border-top: 1px solid #cfc3b5;
}

.use-case-table li:last-child {
  border-bottom: 1px solid #cfc3b5;
}

.use-case-table strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.prose-page {
  max-width: 900px;
}

.prose-page > section {
  padding-bottom: clamp(50px, 8vw, 80px);
  margin-top: 0;
  margin-bottom: clamp(50px, 8vw, 80px);
  border-bottom: 1px solid var(--line);
}

.prose-page > section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.prose-page > .red-flag + section {
  margin-top: clamp(45px, 7vw, 70px);
}

.prose-page p,
.prose-page li {
  max-width: 790px;
}

.review-list {
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  counter-reset: review;
}

.review-list li {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 30px;
  padding: 22px 0 22px 62px;
  border-top: 1px solid var(--line);
  counter-increment: review;
}

.review-list li::before {
  position: absolute;
  margin-left: -62px;
  color: var(--orange-dark);
  content: "0" counter(review);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.review-list strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
}

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

.disclosure-statement {
  padding: clamp(30px, 7vw, 60px) !important;
  border: 1px solid #ddc8a9 !important;
  border-radius: var(--radius-lg);
  background: #fff7e9;
}

.legal-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.not-found {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 90px 0;
  background: var(--sand);
}

.not-found p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
}

.site-footer {
  padding: 75px 0 25px;
  color: #dce8e4;
  background: #102f2c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 55px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  color: var(--green);
  background: #dbe7df;
}

.footer-grid > div p {
  max-width: 330px;
  margin-top: 22px;
  color: #afc6c0;
  font-size: 0.88rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer nav h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #c4d6d1;
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #9eb9b2;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #d8e7e3;
}

@media (max-width: 960px) {
  .home-hero-grid,
  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 45px;
  }

  .home-hero .category-art,
  .page-hero .category-art {
    min-height: 330px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu > summary {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu > summary span {
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(330px, calc(100vw - 40px));
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

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

  .standards-grid,
  .use-case-table {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-grid nav:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .home-hero,
  .page-hero {
    padding-top: 50px;
  }

  .home-hero-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .category-art,
  .page-hero .category-art {
    min-height: 280px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .path-grid,
  .path-grid--four,
  .decision-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .path-card .category-art {
    min-height: 190px;
  }

  .standards-grid {
    gap: 45px;
  }

  .red-flag {
    grid-template-columns: 1fr;
  }

  .article-meta {
    gap: 4px 20px;
  }

  .affiliate-note {
    grid-template-columns: 1fr;
  }

  .product-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .source-link {
    justify-content: center;
    text-align: center;
  }

  .review-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 20px;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
  }

  .footer-grid nav:last-child {
    grid-column: auto;
  }

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

@media (max-width: 430px) {
  h1 {
    font-size: 2.55rem;
  }

  .brand span:last-child {
    font-size: 0.7rem;
  }

  .brand strong {
    font-size: 1.04rem;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    flex-direction: column;
  }

  .spec-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .method-steps li {
    grid-template-columns: 48px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
