:root {
  --ink: #17211b;
  --muted: #5f6d64;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --soft: #eff4ed;
  --line: #dfe6de;
  --brand: #1f684f;
  --brand-dark: #124836;
  --accent: #f0a664;
  --accent-soft: #fff0df;
  --digital: #315f96;
  --digital-soft: #e8f0fb;
  --warning: #8b5a25;
  --shadow-sm: 0 8px 24px rgba(23, 33, 27, 0.07);
  --shadow-lg: 0 24px 70px rgba(23, 33, 27, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
  --rose: #9b5b61;
  --rose-soft: #f7e9e8;
  --gold: #c48c3f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

.amazon-disclosure {
  padding: 8px 20px;
  color: #eaf2ed;
  background: #0d392b;
  font-size: 0.76rem;
  text-align: center;
}

.amazon-disclosure a { color: #fff; font-weight: 800; }

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

button, input { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(240, 166, 100, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-150%);
}

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

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.section { padding: 88px 0; }

.section-sm { padding: 56px 0; }

.section-alt { background: var(--soft); }

.section-dark { color: #fff; background: var(--brand-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow { color: #b8dbc9; }

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

h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 7vw, 5.7rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; }
h4 { margin-bottom: 8px; font-size: 1rem; }

.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.65; }
.section-dark .lead { color: #d5e5dc; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.kicker { max-width: 680px; }
.center { text-align: center; }
.center .kicker { margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 230, 222, 0.9);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand img { width: 37px; height: 37px; }
.brand span { font-size: 1.08rem; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 0.92rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--brand); }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-cta:hover { color: #fff !important; background: var(--brand-dark); }

.category-rail-wrap {
  border-top: 1px solid rgba(223, 230, 222, 0.85);
  background: rgba(255, 255, 255, 0.72);
}

.category-rail {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 43px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar { display: none; }
.category-rail a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.category-rail a:hover,
.category-rail a[aria-current="page"] { color: var(--brand); }

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: 180ms ease;
  content: "";
}

.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-checkbox:checked + .menu-toggle span { background: transparent; }
.menu-checkbox:checked + .menu-toggle span::before { transform: translateY(1px) rotate(45deg); }
.menu-checkbox:checked + .menu-toggle span::after { transform: translateY(-1px) rotate(-45deg); }
.menu-checkbox:focus-visible + .menu-toggle { outline: 3px solid rgba(240, 166, 100, 0.85); outline-offset: 3px; }

.hero { position: relative; overflow: hidden; padding: 70px 0 86px; }
.hero::before {
  position: absolute;
  z-index: -1;
  top: -130px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #e7efe8;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-copy { max-width: 670px; }
.hero-copy h1 span { color: var(--brand); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { color: var(--brand); content: "✓"; }

.hero-art { position: relative; }
.hero-art img { width: 100%; filter: drop-shadow(0 26px 30px rgba(23, 33, 27, 0.11)); }
.hero-note {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: min(240px, 58%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-note strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 1.05rem; }
.hero-note span { color: var(--muted); font-size: 0.78rem; }

.focus-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid #d8e3da;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.72);
  font-size: .76rem;
  font-weight: 800;
}

.focus-chip::before { color: var(--gold); content: "✦"; }

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.editorial-stat { padding: 23px; background: #fff; }
.editorial-stat strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 1.55rem; }
.editorial-stat span { color: var(--muted); font-size: .8rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: 180ms ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--brand); box-shadow: 0 8px 18px rgba(31, 104, 79, 0.22); }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary { border-color: var(--line); background: var(--surface); }
.button-secondary:hover { border-color: var(--brand); color: var(--brand); }
.button-light { color: var(--brand-dark); background: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-sm { min-height: 42px; padding: 9px 15px; font-size: 0.88rem; }

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

.section-head > div { max-width: 700px; }
.text-link { color: var(--brand); font-weight: 800; text-decoration: none; white-space: nowrap; }
.text-link::after { content: " →"; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.category-card {
  display: grid;
  grid-template-columns: 1fr 180px;
  min-height: 270px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.category-card.digital { background: #f5f8fd; }
.category-card img { align-self: end; }
.category-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.category-card li { margin: 7px 0; color: var(--muted); font-size: 0.92rem; }
.category-card li::before { margin-right: 8px; color: var(--brand); content: "•"; }
.category-card.digital li::before { color: var(--digital); }

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

.ecosystem-card {
  position: relative;
  display: flex;
  min-height: 265px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  text-decoration: none;
  transition: 200ms ease;
}

.ecosystem-card::after {
  position: absolute;
  right: -28px;
  bottom: -48px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--soft);
  content: "";
}

.ecosystem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ecosystem-card.is-live { border-color: #bfd5c5; background: #f5f9f4; }
.ecosystem-card.is-next { border-color: #ecd1b0; background: #fff9f1; }
.ecosystem-card.ecosystem-overview { color: #fff; border-color: var(--brand-dark); background: var(--brand-dark); }
.ecosystem-card.ecosystem-overview::after { background: rgba(255,255,255,.08); }
.ecosystem-card h3 { margin-top: 28px; font-size: 1.65rem; }
.ecosystem-card p { position: relative; z-index: 1; color: var(--muted); font-size: .9rem; }
.ecosystem-card > strong { position: relative; z-index: 1; margin-top: auto; color: var(--brand); font-size: .84rem; }
.ecosystem-card.ecosystem-overview p { color: #cfe0d6; }
.ecosystem-card.ecosystem-overview > strong { color: #fff; }
.category-status {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--soft);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.is-live .category-status { background: #dcebdd; }
.is-next .category-status { color: #6d4a21; background: #ffebd3; }
.ecosystem-overview .category-status { color: #fff; background: rgba(255,255,255,.13); }
.category-index { position: absolute; top: 24px; right: 26px; color: #aab6ad; font-family: Georgia, serif; font-size: 1.4rem; }

.roadmap-list { margin: 0; padding: 0; list-style: none; }
.roadmap-list li { display: grid; grid-template-columns: 74px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.roadmap-list li:first-child { padding-top: 0; }
.roadmap-list li > span { align-self: start; padding: 5px 9px; border-radius: 999px; color: var(--brand-dark); background: var(--soft); font-size: .7rem; font-weight: 850; text-align: center; text-transform: uppercase; }
.roadmap-list strong { font-family: Georgia, serif; font-size: 1.2rem; }
.roadmap-list p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; }
.priority-layout { grid-template-columns: minmax(0, 1fr) 390px; }

.category-intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-intro-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.category-intro-card span { display: block; margin-bottom: 18px; color: var(--brand); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.category-intro-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.research-queue { display: grid; gap: 14px; }
.research-item { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.research-item > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: var(--brand-dark); background: var(--soft); font-family: Georgia, serif; font-weight: 700; }
.research-item h3 { margin: 0 0 4px; font-size: 1.15rem; }
.research-item p { margin: 0; color: var(--muted); font-size: .86rem; }
.research-item em { color: var(--warning); font-size: .72rem; font-style: normal; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }

.best-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.best-pick-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.best-pick-card .pick-label { display: inline-flex; margin-bottom: 26px; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--brand); font-size: .69rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.best-pick-card .rating-line { margin-top: 18px; }
.best-pick-card > p { color: var(--muted); font-size: .9rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.filter-button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}
.filter-button:hover, .filter-button.is-active { border-color: var(--brand); color: #fff; background: var(--brand); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: 200ms ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card[hidden] { display: none; }
.product-visual {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 25px;
  background: linear-gradient(145deg, #edf3ec, #f9f8f2);
}
.product-visual.digital { background: linear-gradient(145deg, var(--digital-soft), #f8faff); }
.product-visual img { width: 100%; max-height: 168px; }
.product-monogram {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(31,104,79,.2);
  border-radius: 34px 34px 44px 44px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.8);
  box-shadow: 0 18px 40px rgba(23,33,27,.09);
  font-family: Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -.06em;
}
.product-monogram.rose { color: #7c444c; background: #fff7f7; border-color: #e9cccf; }
.product-monogram.gold { color: #75511f; background: #fffaf0; border-color: #ead7b8; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-body h3 { font-size: 1.38rem; }
.product-body p { color: var(--muted); font-size: 0.94rem; }
.product-body .button { align-self: flex-start; margin-top: auto; }

.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag.digital { color: #224a79; background: var(--digital-soft); }
.tag.sample { color: #745022; background: var(--accent-soft); }
.tag.amazon { color: #684b13; background: #fff2ce; }
.tag.research { color: #6e3f47; background: var(--rose-soft); }

.rating-line { display: flex; align-items: center; gap: 10px; margin: 6px 0 18px; }
.rating-line strong { font-family: Georgia, serif; font-size: 1.35rem; }
.rating-line span { color: var(--muted); font-size: 0.8rem; }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.method-step { padding: 22px; border-top: 2px solid #467a65; background: rgba(255, 255, 255, 0.06); }
.method-step span { display: block; margin-bottom: 18px; color: #9fc9b3; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.method-step h3 { font-size: 1.2rem; }
.method-step p { margin: 0; color: #c8dacf; font-size: 0.9rem; }

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
}
.newsletter h2 { font-size: clamp(2rem, 4vw, 3rem); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #d7c4ad;
  border-radius: 999px;
  background: #fffaf5;
}
.form-note { margin: 10px 0 0; color: #735d45; font-size: 0.78rem; }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--brand-dark); font-size: 0.86rem; font-weight: 700; }

.page-hero { padding: 76px 0 60px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #eef3ed 0%, var(--paper) 100%); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero .lead { max-width: 760px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: 0.82rem; }
.breadcrumbs a { font-weight: 700; text-decoration: none; }
.breadcrumbs span::before { margin-right: 8px; content: "/"; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 70px; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 56px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.prose h3 { margin-top: 32px; }
.prose p, .prose li { color: #3f4b43; }
.prose a { color: var(--brand); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose blockquote { margin: 30px 0; padding: 24px 28px; border-left: 4px solid var(--brand); background: var(--soft); }

.toc, .side-card {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.toc h3, .side-card h3 { font-family: inherit; font-size: 0.95rem; letter-spacing: 0; }
.toc ul { margin: 14px 0 0; padding: 0; list-style: none; }
.toc li { margin: 10px 0; }
.toc a { color: var(--muted); font-size: 0.85rem; font-weight: 650; text-decoration: none; }
.toc a:hover { color: var(--brand); }

.review-hero { padding: 58px 0 52px; background: #edf3ec; }
.review-hero-grid { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 70px; }
.review-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.review-hero-art { display: grid; place-items: center; min-height: 360px; padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.64); }
.review-hero-art img { width: 86%; max-height: 290px; }
.review-meta { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 26px; color: var(--muted); font-size: 0.83rem; }
.review-meta strong { color: var(--ink); }

.review-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.review-summary div { padding: 14px; border: 1px solid rgba(31,104,79,.16); border-radius: 12px; background: rgba(255,255,255,.66); }
.review-summary strong { display: block; font-size: .79rem; }
.review-summary span { color: var(--muted); font-size: .76rem; }

.verdict-box {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 25px;
  margin: 0 0 42px;
  padding: 28px;
  border: 1px solid #c9d8cc;
  border-radius: var(--radius);
  background: var(--soft);
}
.verdict-score { display: grid; place-items: center; min-height: 112px; border-radius: 16px; color: #fff; background: var(--brand); }
.verdict-score strong { font-family: Georgia, serif; font-size: 2.5rem; line-height: 1; }
.verdict-score span { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.verdict-box p { margin-bottom: 0; color: var(--muted); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pros-cons > div { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.pros-cons ul { margin-bottom: 0; padding-left: 20px; }
.pros h3 { color: var(--brand); }
.cons h3 { color: var(--warning); }

.facts-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.facts-table th, .facts-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.facts-table th { width: 34%; color: var(--muted); font-size: 0.84rem; }

.affiliate-box { margin: 34px 0; padding: 28px; border: 1px solid #e8caa9; border-radius: var(--radius); background: var(--accent-soft); }
.affiliate-box h3 { font-size: 1.45rem; }
.affiliate-box p { color: #66513c; }
.affiliate-box .disclosure { font-size: 0.78rem; }

.affiliate-inline {
  margin: 14px 0 0;
  color: #684f35;
  font-size: .76rem;
  line-height: 1.45;
}

.score-breakdown { display: grid; gap: 13px; margin: 24px 0; }
.score-row { display: grid; grid-template-columns: 165px 1fr 48px; align-items: center; gap: 12px; }
.score-row span { color: var(--muted); font-size: .84rem; }
.score-track { height: 8px; overflow: hidden; border-radius: 999px; background: #dfe8e1; }
.score-track i { display: block; height: 100%; border-radius: inherit; background: var(--brand); }
.score-row strong { font-size: .84rem; text-align: right; }

.source-list { margin: 28px 0 0; padding: 20px 24px; border: 1px solid var(--line); border-radius: 14px; background: #fafbf8; }
.source-list h3 { font-family: inherit; font-size: .92rem; }
.source-list li { margin-bottom: 7px; font-size: .83rem; }

.best-for {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid #cfdfd3;
  border-radius: 16px;
  background: #f3f7f2;
}
.best-for h3 { font-size: 1.2rem; }
.best-for p:last-child { margin-bottom: 0; }

.comparison-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.status-note { padding: 18px 22px; border: 1px solid #e1d1b9; border-radius: 14px; background: #fff8eb; color: #654d2f; font-size: .88rem; }

.method-rubric { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; }
.method-rubric div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.method-rubric strong { display: block; font-size: .83rem; }
.method-rubric span { color: var(--muted); font-size: .76rem; }

.health-note { margin: 30px 0; padding: 24px; border-left: 4px solid var(--warning); background: #fff8ed; }
.health-note strong { display: block; margin-bottom: 6px; }
.health-note p { margin: 0; color: #614d35; font-size: 0.9rem; }

.alternative-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.alternative { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.alternative p { margin: 0; font-size: 0.88rem; }

.principles-grid, .legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.principle-card .number { display: block; margin-bottom: 24px; color: var(--brand); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.12em; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; }
.comparison-table th, .comparison-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table thead { background: var(--soft); }
.comparison-table th { font-size: 0.83rem; }
.comparison-table td { color: var(--muted); font-size: 0.9rem; }

.callout { padding: 28px; border-radius: var(--radius); background: var(--brand-dark); color: #fff; }
.callout p { color: #d4e3da; }

.site-footer { padding: 64px 0 28px; color: #d7e3dc; background: #112a20; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 0.7fr); gap: 55px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 18px; color: #aac0b3; font-size: 0.9rem; }
.footer-column h3 { margin-bottom: 16px; color: #fff; font-family: inherit; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-column a { display: block; margin: 9px 0; color: #b8ccc0; font-size: 0.86rem; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid #2b493c; color: #8eaa9a; font-size: 0.77rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - 76px);
    padding: 24px 20px 34px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { display: flex; flex-direction: column; gap: 0; }
  .menu-checkbox:checked ~ .main-nav { display: flex; flex-direction: column; gap: 0; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .hero-grid, .review-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-art { max-width: 650px; margin-inline: auto; }
  .category-card { grid-template-columns: 1fr 130px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 38px; }
  .toc, .side-card { position: static; }
  .toc { order: -1; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .editorial-strip { grid-template-columns: repeat(2, 1fr); }
  .review-summary { grid-template-columns: repeat(2, 1fr); }
  .method-rubric { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid, .best-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .priority-layout { grid-template-columns: 1fr; }
  .category-intro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding: 50px 0 64px; }
  .hero-grid { gap: 44px; }
  .hero::before { width: 340px; height: 340px; }
  .section-head { align-items: start; flex-direction: column; gap: 8px; }
  .category-grid, .newsletter, .principles-grid, .legal-grid { grid-template-columns: 1fr; }
  .newsletter { gap: 24px; padding: 30px 24px; }
  .category-card { grid-template-columns: 1fr 120px; padding: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .review-hero-art { min-height: 280px; }
  .verdict-box { grid-template-columns: 1fr; }
  .verdict-score { min-height: 92px; }
  .pros-cons, .alternative-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .score-row { grid-template-columns: 1fr 44px; }
  .score-row > span { grid-column: 1 / -1; }
  .ecosystem-grid, .best-pick-grid, .category-intro-grid { grid-template-columns: 1fr; }
  .ecosystem-card { min-height: 230px; }
  .research-item { grid-template-columns: 54px 1fr; }
  .research-item em { grid-column: 2; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.65rem; }
  .brand span { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-note { position: static; width: 100%; margin-top: 14px; }
  .trust-row { flex-direction: column; gap: 9px; }
  .category-card { grid-template-columns: 1fr; }
  .category-card img { width: 120px; margin: 15px auto 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .button { width: 100%; }
  .facts-table th, .facts-table td { display: block; width: 100%; padding: 10px 0; }
  .facts-table th { padding-bottom: 0; border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .editorial-strip, .review-summary, .method-rubric { grid-template-columns: 1fr; }
}

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

/* Home page — compact navy editorial layout */
body:has(.home-category-grid) { background: #fff; color: #071b35; line-height: 1.45; }
body:has(.home-category-grid) h1,
body:has(.home-category-grid) h2,
body:has(.home-category-grid) h3 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.035em; }
body:has(.home-category-grid) .site-header { color: #fff; border-color: rgba(255,255,255,.12); background: #03172f; backdrop-filter: none; }
body:has(.home-category-grid) .nav-wrap { min-height: 72px; }
body:has(.home-category-grid) .main-nav a { color: #e9f1fc; }
body:has(.home-category-grid) .main-nav a:hover { color: #44b8ff; }
body:has(.home-category-grid) .nav-cta { border-color: transparent; }
body:has(.home-category-grid) .category-rail-wrap { display: none; }
body:has(.home-category-grid) .menu-toggle { border-color: rgba(255,255,255,.28); background: transparent; }
body:has(.home-category-grid) .menu-toggle span,
body:has(.home-category-grid) .menu-toggle span::before,
body:has(.home-category-grid) .menu-toggle span::after { background: #fff; }

body:has(.home-category-grid) .hero { padding: 56px 0 34px; color: #fff; background: radial-gradient(circle at 76% 45%, #063b68 0, #052746 28%, #03172f 62%); }
body:has(.home-category-grid) .hero::before { z-index: 0; top: 35px; right: 9%; width: 390px; height: 390px; border: 1px solid rgba(24,175,255,.38); background: transparent; }
body:has(.home-category-grid) .hero-grid { position: relative; z-index: 1; grid-template-columns: .95fr 1.05fr; gap: 42px; }
body:has(.home-category-grid) .hero-copy { padding-bottom: 22px; }
body:has(.home-category-grid) .hero h1 { max-width: 600px; margin-bottom: 17px; color: #fff; font-size: clamp(2.7rem, 5.2vw, 4.9rem); font-weight: 820; line-height: .98; text-shadow: 0 2px 18px rgba(0, 0, 0, .18); }
body:has(.home-category-grid) .hero h1 span { display: block; color: #fff; }
body:has(.home-category-grid) .hero .lead { max-width: 600px; margin-bottom: 0; color: #d6e4f3; font-size: 1.04rem; line-height: 1.55; }
body:has(.home-category-grid) .hero .eyebrow { color: #6dc7ff; font-size: .7rem; }
body:has(.home-category-grid) .hero-art img { max-height: 380px; object-fit: contain; filter: drop-shadow(0 24px 35px rgba(0,0,0,.28)); }
body:has(.home-category-grid) .hero-actions { margin-top: 24px; }
body:has(.home-category-grid) .hero .button { min-height: 46px; padding: 12px 22px; border-radius: 9px; }
body:has(.home-category-grid) .hero .button-primary { border-color: #078cf0; background: #078cf0; }
body:has(.home-category-grid) .hero .button-secondary { color: #fff; border-color: #a6b7c9; background: transparent; }

.home-disclosure { padding: 12px 0; color: #d7e5f3; border-top: 1px solid rgba(255,255,255,.12); background: #05223e; }
.home-disclosure .container { display: flex; align-items: center; gap: 12px; }
.home-disclosure p { margin: 0; font-size: .76rem; line-height: 1.4; }
.home-disclosure .info-icon { display: grid; flex: 0 0 23px; place-items: center; width: 23px; height: 23px; color: #d4ff1f; border: 2px solid #d4ff1f; border-radius: 50%; font-size: .75rem; font-weight: 900; }

.home-section { padding: 24px 0 10px; }
.compact-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.compact-head h2 { margin: 0; font-size: 1.35rem; font-weight: 820; }
.compact-head .text-link { color: #087ce0; font-size: .76rem; font-weight: 800; text-decoration: none; }
.home-category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.home-category-card { display: grid; grid-template-columns: 170px 1fr; align-items: center; min-height: 150px; padding: 14px 22px 14px 10px; overflow: hidden; border: 1px solid #d8e1ea; border-radius: 11px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.home-category-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(4,29,55,.09); }
.home-category-card.supplement { background: #f4f8ef; }
.home-category-card.wellness { background: #eef5fd; }
.home-category-card img { width: 160px; height: 122px; object-fit: contain; }
.home-category-card h3 { margin-bottom: 5px; font-size: 1.03rem; font-weight: 830; }
.home-category-card p { margin-bottom: 8px; color: #506073; font-size: .8rem; line-height: 1.42; }
.home-category-card strong { color: #087ce0; font-size: .76rem; }
.home-category-card.supplement strong { color: #357c22; }

.home-featured { padding-bottom: 28px; }
.home-review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.home-review-card { display: grid; grid-template-columns: 76px 1fr; gap: 10px; min-height: 156px; padding: 12px; border: 1px solid #dde4eb; border-radius: 10px; background: #fff; box-shadow: 0 4px 14px rgba(4,29,55,.04); }
.home-review-card > img { align-self: center; width: 76px; height: 100px; object-fit: contain; }
.review-monogram { display: grid; align-self: center; place-items: center; width: 70px; height: 108px; color: #fff; border-radius: 9px; background: #1f684f; font-size: 1.02rem; font-weight: 900; box-shadow: 0 8px 18px rgba(4,29,55,.13); }
.review-monogram.rose { background: #9b5b61; }
.review-monogram.gold { background: #b77b28; }
.mini-tag { display: inline-block; padding: 2px 5px; color: #317822; border-radius: 3px; background: #e6f4d8; font-size: .52rem; font-weight: 900; }
.mini-tag.blue { color: #1469ab; background: #e4f1fc; }
.home-review-card h3 { margin: 7px 0 4px; font-size: .89rem; font-weight: 850; }
.home-review-card p { margin: 5px 0 8px; color: #5b6877; font-size: .67rem; line-height: 1.38; }
.home-review-card a { color: #087ce0; font-size: .68rem; font-weight: 800; text-decoration: none; }
.stars { color: #ffad00; font-size: .69rem; letter-spacing: -.05em; white-space: nowrap; }
.stars strong { margin-left: 3px; color: #263b51; letter-spacing: 0; }
.stars.neutral { color: #607386; font-size: .62rem; letter-spacing: 0; white-space: normal; }

.home-method { padding: 20px 0; background: #f0f6fc; }
.home-method-layout { display: grid; grid-template-columns: 1.15fr 2.85fr; align-items: center; gap: 38px; }
.method-intro h2 { margin-bottom: 7px; font-size: 1.3rem; font-weight: 850; }
.method-intro p { margin-bottom: 7px; color: #4c6074; font-size: .76rem; }
.method-intro a { color: #087ce0; font-size: .7rem; font-weight: 800; text-decoration: none; }
.home-method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.home-method-grid article { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 9px; }
.home-method-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; color: #0b5b9a; border-radius: 50%; background: #d6ebfb; font-size: .68rem; font-weight: 900; }
.home-method-grid article:nth-child(2) > span { color: #377925; background: #e0f1d8; }
.home-method-grid article:nth-child(3) > span { color: #285b9b; background: #dbe8fa; }
.home-method-grid article:nth-child(4) > span { color: #285b9b; background: #d3edfa; }
.home-method-grid h3 { margin-bottom: 3px; font-size: .73rem; font-weight: 850; }
.home-method-grid p { margin: 0; color: #596b7d; font-size: .62rem; line-height: 1.38; }

.home-newsletter { padding: 16px 0; color: #fff; background: linear-gradient(90deg,#084998,#075fbd); }
.home-newsletter .newsletter { grid-template-columns: 1.1fr 1.6fr; align-items: center; padding: 0; border: 0; background: transparent; box-shadow: none; }
.home-newsletter h2 { margin-bottom: 3px; font-size: 1.22rem; font-weight: 850; }
.home-newsletter p { margin: 0; color: #dcecff; font-size: .72rem; }
.home-newsletter .newsletter-form { gap: 0; }
.home-newsletter input { border: 0; border-radius: 8px 0 0 8px; }
.home-newsletter .button { color: #183400; border: 0; border-radius: 0 8px 8px 0; background: #c7f52f; font-size: .78rem; }
.home-newsletter .form-note { margin-top: 4px; color: #cae2ff; font-size: .6rem; }
body:has(.home-category-grid) .site-footer { padding-top: 34px; background: #03172f; }
body:has(.home-category-grid) .footer-grid { gap: 38px; }

@media (max-width: 980px) {
  body:has(.home-category-grid) .main-nav { color: #071b35; background: #fff; }
  body:has(.home-category-grid) .main-nav a { color: #071b35; }
  .home-review-grid { grid-template-columns: repeat(2, 1fr); }
  .home-method-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body:has(.home-category-grid) .hero { padding: 30px 0 0; }
  body:has(.home-category-grid) .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  body:has(.home-category-grid) .hero h1 { font-size: 2.65rem; }
  body:has(.home-category-grid) .hero-art { display: none; }
  body:has(.home-category-grid) .hero-actions .button { width: 100%; }
  .home-disclosure { padding: 12px 0; }
  .home-category-grid, .home-review-grid { grid-template-columns: 1fr; }
  .home-category-card { grid-template-columns: 115px 1fr; min-height: 134px; padding: 10px 14px 10px 5px; }
  .home-category-card img { width: 110px; height: 100px; }
  .home-method-grid { grid-template-columns: repeat(2, 1fr); }
  .home-newsletter .newsletter { grid-template-columns: 1fr; gap: 13px; }
}

@media (max-width: 420px) {
  .home-category-card { grid-template-columns: 100px 1fr; }
  .home-category-card img { width: 96px; }
  .home-method-grid { grid-template-columns: 1fr; }
}

/* Buyer Pick Guide — unified blue editorial design system */
:root {
  --ink: #0b1f38;
  --muted: #52657b;
  --paper: #f7faff;
  --surface: #ffffff;
  --soft: #eaf3ff;
  --line: #d6e3f1;
  --brand: #0969c7;
  --brand-dark: #062c59;
  --accent: #3ea6ff;
  --accent-soft: #e8f4ff;
  --digital: #315f96;
  --digital-soft: #e8f2ff;
  --warning: #8a5a12;
  --shadow-sm: 0 10px 30px rgba(8, 44, 86, 0.08);
  --shadow-lg: 0 24px 64px rgba(8, 44, 86, 0.14);
}

body { color: var(--ink); background: var(--paper); }
h1, h2, h3, .display { color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 780; letter-spacing: -.04em; }
.amazon-disclosure { color: #dcecff; background: #041d3a; }
.site-header { border-color: rgba(157,190,224,.22); color: #fff; background: rgba(5,35,70,.97); backdrop-filter: blur(18px); }
.site-header .brand { color: #fff; }
.main-nav a { color: #eaf4ff; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #67c2ff; }
.nav-cta { border-color: rgba(255,255,255,.38); }
.nav-cta:hover { color: #062c59 !important; background: #fff; }
.category-rail-wrap { border-color: rgba(160,195,230,.2); background: #082b52; }
.category-rail a { color: #c5d9ee; }
.category-rail a:hover, .category-rail a[aria-current="page"] { color: #fff; }
.menu-toggle { border-color: rgba(255,255,255,.28); background: transparent; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { background: #fff; }

.page-hero { border-color: var(--line); background: linear-gradient(135deg,#eaf4ff 0%,#f7faff 55%,#ddecff 100%); }
.review-hero { background: linear-gradient(135deg,#e8f3ff,#f8fbff); }
.hero::before { background: #dcecff; }
.section-alt { background: #edf5ff; }
.section-dark, .callout { background: linear-gradient(135deg,#052b55,#084c8d); }
.section-dark .lead, .callout p { color: #d9eaff; }
.section-dark .eyebrow { color: #79c8ff; }
.eyebrow, .text-link, .prose a { color: var(--brand); }

.button { border-radius: 10px; box-shadow: none; }
.button-primary { background: linear-gradient(135deg,#0877dc,#075fb7); box-shadow: 0 9px 22px rgba(9,105,199,.22); }
.button-primary:hover { background: #054f99; }
.button-primary[data-amazon-asin],
.button-primary[data-amazon-asin]:link,
.button-primary[data-amazon-asin]:visited,
.button-primary[data-amazon-asin]:hover,
.button-primary[data-amazon-asin]:focus,
.button-primary[data-amazon-asin]:focus-visible,
.button-primary[data-amazon-asin]:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}
.button-secondary:hover { border-color: var(--brand); color: var(--brand); }
.button-light { color: var(--brand-dark); }
.button-dark { background: var(--brand-dark); }

.category-card, .ecosystem-card, .product-card, .best-pick-card, .principle-card, .category-intro-card, .side-card, .toc {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.category-card.digital, .ecosystem-card.is-live, .ecosystem-card.is-next { border-color: #cfe1f4; background: #f3f8ff; }
.ecosystem-card.ecosystem-overview { border-color: #073b73; background: linear-gradient(145deg,#052d59,#0872c9); }
.ecosystem-card.ecosystem-overview p { color: #d7e9fb; }
.ecosystem-card::after { background: #e5f1ff; }
.category-status, .is-live .category-status, .is-next .category-status, .tag, .tag.digital, .tag.sample, .tag.research { color: #07569f; background: #dceeff; }
.tag.amazon { color: #704e0b; background: #fff1c7; }
.best-pick-card .pick-label, .verdict-score { background: linear-gradient(135deg,#0877dc,#075aab); }
.product-visual, .product-visual.digital { background: linear-gradient(145deg,#e4f1ff,#f8fbff); }
.product-monogram, .product-monogram.rose, .product-monogram.gold { color: #07569f; border-color: #bcd8f2; background: #f7fbff; box-shadow: 0 18px 40px rgba(8,44,86,.11); }
.review-monogram, .review-monogram.rose, .review-monogram.gold { background: linear-gradient(145deg,#0a75cf,#064d91); }
.mini-tag, .mini-tag.blue { color: #07569f; background: #dceeff; }
.method-step { color: #fff !important; border-color: #52b4ff; background: linear-gradient(145deg,#063563,#075b9f) !important; border-radius: 14px; }
.method-step span { color: #82cdff; }
.method-step p { color: #d6e8f8; }
.method-rubric div { border-color: var(--line); background: #fff; }
.verdict-box, .best-for { border-color: #c5dcf1; background: #edf6ff; }
.score-track { background: #dce9f5; }
.score-track i { background: linear-gradient(90deg,#0a79d9,#46adf7); }
.affiliate-box { border-color: #bedbf4; background: #eaf5ff; }
.affiliate-box p, .affiliate-inline { color: #405a74; }
.health-note { border-color: #368fd4; background: #eef7ff; }
.health-note p { color: #3f5c76; }
.source-list { background: #f5f9fe; }
.comparison-table thead { background: #e8f3ff; }
.newsletter { background: linear-gradient(135deg,#e3f1ff,#f2f8ff); }
.newsletter-form input { border-color: #bdd3e8; background: #fff; }
.form-note { color: #526a82; }
.site-footer { color: #dbeaff; background: #041d3a; }
.footer-brand p, .footer-column a { color: #afc7df; }
.footer-bottom { border-color: #21476d; color: #91abc4; }

/* Keep the home and every internal page on the same visual language. */
body:has(.home-category-grid) { color: var(--ink); background: var(--paper); }
body:has(.home-category-grid) .site-header { background: rgba(5,35,70,.97); backdrop-filter: blur(18px); }
body:has(.home-category-grid) .category-rail-wrap { display: block; }
body:has(.home-category-grid) .hero { background: radial-gradient(circle at 78% 42%,#0b5b9f 0,#073d71 31%,#052447 68%); }
body:has(.home-category-grid) .hero::before { border-color: rgba(103,194,255,.35); }
.home-category-card.supplement, .home-category-card.wellness { border-color: #d0e0f0; background: #f1f7ff; }
.home-category-card strong, .home-category-card.supplement strong, .home-review-card a, .method-intro a, .compact-head .text-link { color: var(--brand); }
.home-review-card { border-color: var(--line); box-shadow: var(--shadow-sm); }
.home-method { background: #eaf3ff; }
.home-method-grid article > span,
.home-method-grid article:nth-child(2) > span,
.home-method-grid article:nth-child(3) > span,
.home-method-grid article:nth-child(4) > span { color: #07569f; background: #cfe8ff; }
.home-newsletter { background: linear-gradient(90deg,#063b73,#0878ce); }
.home-newsletter .button { color: #06315d; background: #fff; }
.home-disclosure .info-icon { color: #79c8ff; border-color: #79c8ff; }

@media (max-width: 980px) {
  .main-nav, body:has(.home-category-grid) .main-nav { color: var(--ink); background: #fff; }
  .main-nav a, body:has(.home-category-grid) .main-nav a { color: var(--ink); }
  .nav-cta { border-color: var(--line); }
}
