:root {
  --ink: #14213d;
  --ink-2: #263850;
  --paper: #fffdf7;
  --white: #ffffff;
  --line: #dce7e5;
  --mist: #edf8f6;
  --teal: #007a78;
  --coral: #b83224;
  --lemon: #ffd45e;
  --star: #8a5a00;
  --blue: #3970e6;
  --green: #2fb36d;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.12);
  --radius: 8px;
  --apple-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--apple-font);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(255, 253, 247, .91), rgba(255, 253, 247, .96)),
    url("/assets/ai-command-center.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  text-decoration: none;
  font-family: var(--apple-font);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0;
}
.brand img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: contain;
}
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .55rem .78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--apple-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.site-header .primary-nav, .site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .primary-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  justify-content: center;
  transform: translate(-50%, -50%);
  gap: .65rem;
  font-family: var(--apple-font);
  font-weight: 400;
}
.ui-icon {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
}
.site-header .nav-menu {
  display: flex;
}
.site-header .nav-link,
.site-header .nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.08);
  text-decoration: none;
  font-family: var(--apple-font);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.site-header .nav-link {
  gap: .5rem;
}
.site-header .nav-trigger {
  gap: 0;
  overflow: hidden;
  padding: 0;
  font-family: var(--apple-font);
  font-size: inherit;
  font-weight: 400;
  cursor: pointer;
}
.nav-trigger-main {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem .78rem .75rem .95rem;
}
.nav-trigger-indicator {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  border-left: 1px solid rgba(20, 33, 61, .12);
  background: rgba(20, 33, 61, .045);
  color: inherit;
  transition: background .18s ease, color .18s ease;
}
.nav-trigger-indicator .ui-icon {
  width: 1rem;
  height: 1rem;
}
.site-header .nav-menu.is-open .nav-trigger-indicator {
  background: rgba(0, 122, 120, .12);
}
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-trigger:hover,
.site-header .nav-trigger:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  outline: none;
}
.mega-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  right: auto;
  width: min(1040px, calc(100vw - 4rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: -50% 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 40;
}
.nav-menu:hover .mega-menu,
.nav-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-panel {
  display: grid;
  grid-template-columns: minmax(200px, .7fr) minmax(500px, 1.8fr) minmax(130px, .42fr);
  align-items: stretch;
  gap: 1rem;
  max-height: calc(100vh - 7.5rem);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  border: 1px solid rgba(20, 33, 61, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}
.mega-copy {
  display: grid;
  align-content: start;
  gap: .7rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfb;
}
.mega-copy h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.05;
}
.mega-copy p {
  margin: 0;
  color: #526073;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  align-self: end;
  width: fit-content;
  margin-top: .35rem;
  padding: .55rem .7rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(0, 121, 112, .1);
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}
.mega-all-link .ui-icon {
  width: .98rem;
  height: .98rem;
}
.mega-all-link:hover,
.mega-all-link:focus-visible {
  color: var(--coral);
  outline: none;
}
.mega-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: .55rem;
}
.mega-category-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: .65rem;
  min-height: 98px;
  padding: .78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfb;
  color: var(--ink);
  text-decoration: none;
}
.mega-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(0, 122, 120, .18);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
  color: var(--teal);
}
.mega-category-icon .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
}
.mega-category-copy {
  display: grid;
  gap: .22rem;
  min-width: 0;
}
.mega-category-link:hover,
.mega-category-link:focus-visible {
  border-color: rgba(0, 122, 120, .38);
  background: var(--mist);
  outline: none;
}
.mega-category-link:hover .mega-category-icon,
.mega-category-link:focus-visible .mega-category-icon {
  border-color: rgba(0, 122, 120, .3);
  background: rgba(0, 122, 120, .08);
}
.mega-category-copy > span {
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.1;
}
.mega-category-link small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #667085;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
}
.mega-image {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: .85rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}
.mega-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 20, 38, .06), rgba(9, 20, 38, .78));
}
.mega-image span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.05;
}
.mega-image:hover span,
.mega-image:focus-visible span {
  text-decoration: underline;
}
.site-footer nav {
  gap: clamp(.7rem, 2vw, 1.5rem);
}
.site-footer nav a {
  text-decoration: none;
  font-size: .94rem;
  color: #d9e1ec;
}
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
}
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  min-height: min(720px, calc(100svh - 156px));
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 20, 38, .98) 0%, rgba(9, 20, 38, .82) 42%, rgba(9, 20, 38, .28) 100%),
    linear-gradient(180deg, rgba(9, 20, 38, .18), rgba(9, 20, 38, .72)),
    url("/assets/ai-command-center.jpg") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(9, 20, 38, 0), rgba(9, 20, 38, .86));
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 760px;
}
.hero h1, .compact-hero h1, .review-hero h1, .article-hero h1 {
  margin: 0;
  line-height: .96;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  letter-spacing: 0;
}
.hero h1 { color: var(--white); text-wrap: balance; }
.review-hero h1, .article-hero h1 { font-size: clamp(2.4rem, 6vw, 5.8rem); }
.hero-lede, .compact-hero p, .section-heading p, .review-hero > div > p, .article-hero > p {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 760px;
  color: #41536b;
}
.hero .hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
}
.hero .eyebrow { color: #7df5ed; }
.eyebrow {
  margin: 0 0 .55rem;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-actions, .card-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .78rem 1rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}
.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.button-ghost {
  background: rgba(9, 20, 38, .74);
  color: var(--white);
  border-color: rgba(255, 255, 255, .58);
  backdrop-filter: blur(16px);
}
.button-ghost:hover,
.button-ghost:focus-visible,
.button-light:hover,
.button-light:focus-visible {
  transform: translateY(-1px);
}
.button-small {
  min-height: 38px;
  padding: .55rem .75rem;
  font-size: .88rem;
}
.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.6rem);
}
.hero-panel h2 { margin: .4rem 0; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.05; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.35rem;
}
.hero-trust span {
  padding: .5rem .7rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--radius);
  background: rgba(9, 20, 38, .74);
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}
.hero-proof {
  display: grid;
  gap: .8rem;
  align-self: end;
}
.hero-feature {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}
.hero-feature h2 {
  margin: .2rem 0 .45rem;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-feature p {
  margin: 0;
  color: #42556d;
}
.hero-feature .card-actions {
  margin-top: 1rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}
.hero-metrics div {
  min-height: 82px;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(9, 20, 38, .54);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.hero-metrics strong,
.hero-metrics span {
  display: block;
}
.hero-metrics strong {
  font-size: 1.75rem;
  line-height: 1;
}
.hero-metrics span {
  margin-top: .25rem;
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  font-weight: 800;
}
.notice-band {
  margin: 0 clamp(1rem, 5vw, 5rem) 2rem;
  padding: 1rem 1.2rem;
  background: #fff2dd;
  border: 1px solid #ffd591;
  border-radius: var(--radius);
}
.section-heading, .compact-hero, .review-hero, .article-hero {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) clamp(1.25rem, 3vw, 2.5rem);
}
.section-heading h2, .split-band h2, .legal-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}
.product-grid, .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}
.product-grid-small { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-category-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.product-category-section {
  padding: 0 clamp(1rem, 5vw, 5rem);
}
.product-category-section .product-grid {
  padding: 0;
}
.category-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.category-section-heading h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}
.category-section-heading span {
  flex: 0 0 auto;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #52647a;
  font-weight: 850;
}
.filter-empty {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #52647a;
  font-weight: 800;
}
.product-card, .article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}
.product-card > a, .article-card {
  text-decoration: none;
  display: block;
}
.card-body, .card-actions, .article-card {
  padding: 1rem;
}
.product-card h3, .article-card h3 {
  margin: 0 0 .55rem;
  line-height: 1.12;
  font-size: 1.28rem;
  letter-spacing: 0;
}
.evidence-status {
  display: grid;
  gap: .18rem;
  width: fit-content;
  max-width: 42rem;
  margin: .65rem 0 1rem;
  padding: .58rem .72rem;
  border: 1px solid rgba(17, 19, 25, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
}
.evidence-status span {
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.evidence-status small {
  color: #43546a;
  font-size: .84rem;
  line-height: 1.35;
}
.review-aside .evidence-status { margin: .1rem 0 0; }
.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  margin: .9rem 0;
  color: #526176;
  font-size: .9rem;
  font-weight: 700;
}
.editorial-meta a { color: inherit; text-underline-offset: 3px; }
.review-hero .editorial-meta { color: #dbe5f0; }
.review-hero .editorial-meta a { color: var(--white); }
.product-card p, .article-card p { color: #52647a; margin: 0 0 .75rem; }
.product-image {
  margin: 0;
}
.product-visual {
  min-height: 260px;
  display: grid;
  grid-template-rows: minmax(205px, 1fr) auto;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.product-visual .product-image {
  min-height: 205px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fbff, #edf8f6);
}
.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.product-visual > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-width: 0;
  padding: .75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.product-visual span {
  flex: none;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
.product-visual strong {
  min-width: 0;
  text-align: right;
  font-size: .94rem;
  line-height: 1.18;
}
.product-visual-wellness .product-image { background: linear-gradient(135deg, #f5fff9, #e4f8ed); }
.product-visual-home-and-preparedness .product-image { background: linear-gradient(135deg, #fff8f2, #fff0d2); }
.product-visual-personal-development .product-image { background: linear-gradient(135deg, #f5f8ff, #e8f1ff); }
.product-visual-learning-and-software .product-image { background: linear-gradient(135deg, #f2fffe, #e6f4ff); }
.product-visual-lifestyle .product-image { background: linear-gradient(135deg, #fff7f3, #eef9f6); }
.product-visual-men-s-and-women-s-health .product-image,
.product-visual-dental-and-beauty .product-image,
.product-visual-supplements .product-image,
.product-visual-weight-loss-and-fitness .product-image,
.product-visual-sleep-and-brain-health .product-image { background: linear-gradient(135deg, #f5fff9, #e4f8ed); }
.product-visual-survival-and-preparedness .product-image,
.product-visual-home-garden-and-diy .product-image { background: linear-gradient(135deg, #fff8f2, #fff0d2); }
.product-visual-pets-and-animal-care .product-image,
.product-visual-cooking-food-and-green-living .product-image,
.product-visual-sports-hobbies-and-recreation .product-image { background: linear-gradient(135deg, #fff7f3, #eef9f6); }
.product-visual-relationships-and-dating .product-image,
.product-visual-spirituality-and-manifestation .product-image,
.product-visual-self-help-and-personal-growth .product-image { background: linear-gradient(135deg, #f5f8ff, #e8f1ff); }
.product-visual-business-and-marketing .product-image,
.product-visual-software-education-and-languages .product-image { background: linear-gradient(135deg, #f2fffe, #e6f4ff); }
.hero-product-image,
.article-card-image,
.article-hero-product {
  min-height: 190px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fbff, #edf8f6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hero-product-image img,
.article-card-image img,
.article-hero-product img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.article-card-image {
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-width: 0 0 1px;
  border-radius: 0;
}
.article-card-image img {
  max-height: 180px;
}
.category-strip {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}
.category-strip a {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}
.split-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  background: var(--mist);
  border-block: 1px solid var(--line);
}
.article-list {
  display: grid;
  gap: .75rem;
}
.article-list a {
  display: grid;
  gap: .15rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}
.article-list span { color: var(--coral); font-size: .78rem; text-transform: uppercase; }
.search-bar {
  display: grid;
  gap: .45rem;
  max-width: 640px;
  margin-top: 1.4rem;
}
.search-bar label { font-weight: 850; }
.search-bar input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1rem;
  font: inherit;
  background: var(--white);
}
.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: center;
}
.review-layout > .review-hero,
.review-layout > .source-evidence-panel,
.review-layout > .review-preview-band,
.review-layout > .rating-breakdown,
.review-layout > .article-shell,
.review-layout > .section-heading,
.review-layout > .product-grid-small,
.magazine-layout > .section-heading,
.magazine-layout > .related-articles-grid {
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
}
.review-hero .product-visual { border-radius: var(--radius); min-height: 340px; box-shadow: var(--shadow); }
.review-hero .product-visual .product-image { min-height: 275px; }
.review-hero .product-visual img { max-height: 260px; }
.review-preview-band {
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.review-preview-band p {
  margin: 0 0 .75rem;
  color: #52647a;
  font-size: 1rem;
}
.review-preview-band strong { color: var(--ink); font-weight: 850; }
.source-evidence-panel,
.rating-breakdown {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
}
.source-evidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: start;
}
.source-evidence-panel h2,
.rating-breakdown h2 { margin: .35rem 0 .7rem; }
.source-evidence-panel p { max-width: 74ch; }
.source-evidence-panel dl { margin: 0; display: grid; gap: .6rem; }
.source-evidence-panel dl div {
  padding: .75rem .85rem;
  border-radius: calc(var(--radius) * .65);
  background: var(--mist);
}
.source-evidence-panel dt { color: #52647a; font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.source-evidence-panel dd { margin: .2rem 0 0; color: var(--ink); font-weight: 750; }
.rating-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .7rem;
}
.rating-breakdown-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * .7);
  background: var(--mist);
}
.rating-breakdown-grid span { display: block; color: #52647a; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .035em; }
.rating-breakdown-grid strong { display: block; margin: .3rem 0 .45rem; color: var(--coral); font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
.rating-breakdown-grid p { margin: 0; color: #43546a; font-size: .88rem; line-height: 1.5; }
.rating-method-note { margin: 1rem 0 0; }
.review-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  max-width: 980px;
}
.review-preview-card {
  min-height: 86px;
  padding: .8rem .85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-preview-card span {
  display: block;
  margin-bottom: .25rem;
  color: #52647a;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.review-preview-card strong {
  display: block;
  font-size: clamp(.94rem, 1.6vw, 1.08rem);
  line-height: 1.25;
}
.disclosure-inline {
  padding: .85rem 1rem;
  background: #fff2dd;
  border: 1px solid #ffd591;
  border-radius: var(--radius);
  font-size: .96rem;
}
.article-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: 2rem;
  align-items: start;
  padding: 0 clamp(1rem, 5vw, 5rem) 2rem;
}
.review-aside {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.review-aside h2 { margin-top: 0; font-size: 1.2rem; }
.review-aside dl { display: grid; gap: .8rem; margin: 0 0 1rem; }
.review-aside dl > div { border-bottom: 1px solid var(--line); padding-bottom: .7rem; }
.review-aside dt { color: #687a91; font-size: .82rem; text-transform: uppercase; font-weight: 850; }
.review-aside dd { margin: .15rem 0 0; font-weight: 750; }
.article-body {
  max-width: 820px;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}
.article-shell .article-body { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.article-section {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.article-section h2 {
  margin: .35rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}
.article-section p { color: #354861; font-size: 1.04rem; }
.magazine-layout .article-body { margin: 0 auto; }
.legal-page {
  max-width: 900px;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}
.legal-page h2 {
  margin: 2rem 0 .75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: 0;
}
.legal-page p { font-size: 1.06rem; color: #354861; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
}
.site-footer p, .site-footer a { color: #d9e1ec; }
.site-footer .footer-disclaimer {
  max-width: 48rem;
  margin: .85rem 0 0;
  padding-top: .85rem;
  border-top: 1px solid rgba(217, 225, 236, .22);
  color: #f1f5f9;
  font-size: .86rem;
  line-height: 1.55;
}
.brand-footer span { color: var(--white); }
[hidden] { display: none !important; }
@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: column;
  }
  .site-header .primary-nav {
    position: static;
    justify-content: center;
    width: 100%;
    transform: none;
  }
  .hero, .review-hero, .split-band, .article-shell, .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    align-items: start;
    background-position: 58% center;
  }
  .product-grid, .article-grid, .product-grid-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-panel {
    grid-template-columns: 1fr 1.15fr;
  }
  .mega-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-image {
    grid-column: 1 / -1;
    min-height: 190px;
  }
  .review-aside { position: static; }
}
@media (max-width: 680px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .75rem;
    padding: .65rem .8rem;
  }
  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header .brand img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .site-header .primary-nav {
    flex: 1 0 100%;
    gap: .55rem;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .22s ease, opacity .18s ease, padding .18s ease, margin .18s ease, visibility .18s ease;
  }
  .site-header.is-nav-open .primary-nav {
    max-height: 82vh;
    margin-top: .25rem;
    padding-top: .65rem;
    border-top: 1px solid rgba(20, 33, 61, .1);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header .nav-menu { width: 100%; }
  .site-header .nav-link,
  .site-header .nav-trigger { flex: 1 1 9rem; min-height: 46px; width: 100%; }
  .site-header .nav-link { justify-content: center; }
  .nav-trigger-main { flex: 1; justify-content: center; }
  .nav-trigger-indicator { min-width: 2.8rem; }
  .mega-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    translate: 0 0;
    transform: none;
    transition: max-height .22s ease, opacity .18s ease, visibility .18s ease, margin .18s ease;
  }
  .nav-menu:hover .mega-menu,
  .nav-menu:focus-within .mega-menu,
  .nav-menu.is-open .mega-menu {
    max-height: 72vh;
    margin-top: .45rem;
    overflow-y: auto;
    transform: none;
  }
  .mega-panel,
  .mega-category-grid {
    grid-template-columns: 1fr;
  }
  .mega-copy {
    padding: .65rem;
  }
  .mega-category-link {
    min-height: auto;
  }
  .hero {
    min-height: auto;
    padding-top: 2rem;
    background-position: 66% center;
  }
  .hero-proof { display: none; }
  .hero h1, .compact-hero h1, .review-hero h1, .article-hero h1 { font-size: clamp(2.6rem, 17vw, 4rem); }
  .product-grid, .article-grid, .product-grid-small {
    grid-template-columns: 1fr;
  }
  .review-preview-grid {
    grid-template-columns: 1fr;
  }
  .product-visual {
    min-height: 235px;
    grid-template-rows: minmax(185px, 1fr) auto;
  }
  .product-visual .product-image { min-height: 185px; }
  .product-visual img { max-height: 170px; }
  .product-visual > div {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-visual strong { text-align: left; }
  .category-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final redesign override */
.site-header {
  background: rgba(16, 24, 40, 0.96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
}
.site-header .brand span {
  color: var(--white);
  font-weight: 400;
  text-shadow: none;
}
.site-header .nav-link,
.site-header .nav-trigger {
  color: #edf3fb;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  font-weight: 400;
}
.mobile-nav-toggle {
  color: #edf3fb;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: none;
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.site-header.is-nav-open .mobile-nav-toggle {
  color: var(--white);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.36);
  outline: none;
}
.site-header .nav-link {
  padding: .56rem .74rem;
}
.site-header .nav-trigger {
  padding: 0;
}
.nav-trigger-main {
  padding: .56rem .64rem .56rem .76rem;
}
.nav-trigger-indicator {
  min-width: 2.45rem;
  border-left-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.075);
}
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-trigger:hover,
.site-header .nav-trigger:focus-visible,
.site-header .nav-menu.is-open .nav-trigger {
  color: var(--white);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.36);
}
.site-header .nav-trigger:hover .nav-trigger-indicator,
.site-header .nav-trigger:focus-visible .nav-trigger-indicator,
.site-header .nav-menu.is-open .nav-trigger-indicator {
  background: rgba(255,255,255,.18);
}
.brand img {
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.brand-footer img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: none;
}
.hero {
  background:
    linear-gradient(120deg, rgba(0,167,163,.08), transparent 42%),
    linear-gradient(90deg, rgba(9, 20, 38, .82) 0%, rgba(9, 20, 38, .58) 50%, rgba(9, 20, 38, .3) 100%),
    linear-gradient(180deg, rgba(9, 20, 38, .12), rgba(9, 20, 38, .46)),
    url("/assets/ai-command-center.jpg") center / cover no-repeat;
  color: var(--white);
  grid-template-columns: minmax(0, .78fr) minmax(640px, 900px);
  gap: clamp(2.25rem, 5vw, 5.5rem);
  min-height: min(900px, calc(100svh - 104px));
}
.hero-copy { align-self: center; }
.hero h1 { color: var(--white); max-width: 9ch; }
.hero .hero-lede { color: #f1f6fb; }
.hero .eyebrow { color: var(--lemon); }
.hero .button-secondary { background: rgba(255,255,255,.16); color: var(--white); border-color: rgba(255,255,255,.42); }
.hero .evidence-status { background: rgba(9,20,38,.62); border-color: rgba(255,255,255,.35); color: var(--white); }
.hero .evidence-status small { color: #edf3fb; }
.hero-board {
  display: grid;
  justify-self: end;
  align-self: center;
  width: min(100%, 900px);
  gap: clamp(1.1rem, 1.8vw, 1.65rem);
}
.hero-board-main {
  position: relative;
  display: grid;
  gap: clamp(1.25rem, 1.7vw, 1.7rem);
  padding: clamp(1.5rem, 2.45vw, 2.35rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, rgba(9, 20, 38, .9), rgba(7, 17, 33, .78));
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(20px);
}
.hero-board-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 208, 77, .12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 18%);
}
.hero-product-slideshow {
  position: relative;
  min-height: 33svh;
}
.hero-slides {
  min-width: 0;
  min-height: inherit;
}
.hero-slide {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(330px, 1.04fr) minmax(330px, .96fr);
  gap: clamp(1.5rem, 2.35vw, 2.6rem);
  align-items: stretch;
  min-height: inherit;
}
.hero-slide-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.hero-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.hero-slide-meta .eyebrow {
  margin: 0;
}
.hero-slide-count {
  color: #dfe7f1;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.hero-slide-copy h2 {
  margin: .25rem 0 .65rem;
  color: var(--white);
  max-width: 100%;
  font-size: clamp(3.05rem, 4.7vw, 5.2rem);
  line-height: .95;
  overflow-wrap: break-word;
}
.hero-slide-copy > p {
  color: #dfe7f1;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}
.hero-board-main .card-actions {
  align-items: stretch;
  margin-top: auto;
  padding: clamp(1.15rem, 1.7vw, 1.55rem) 0 0;
  border-color: rgba(255,255,255,.34);
}
.hero-board-main .card-actions .button {
  flex: 1 1 11rem;
  min-height: 58px;
  font-size: 1.05rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}
.hero-board-main .card-actions .button:not(.button-secondary) {
  background: #142247;
  border-color: rgba(125, 245, 237, .2);
}
.hero-board-main .card-actions .button:not(.button-secondary):hover,
.hero-board-main .card-actions .button:not(.button-secondary):focus-visible {
  background: #1a2e62;
}
.hero-slider-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding-top: clamp(1.15rem, 1.6vw, 1.55rem);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-slider-arrows,
.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.hero-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
}
.hero-slider-button:hover,
.hero-slider-button:focus-visible {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.62);
  outline: none;
}
.hero-slider-button .ui-icon {
  width: 1.08rem;
  height: 1.08rem;
}
.hero-slider-prev .ui-icon {
  transform: rotate(180deg);
}
.hero-slider-dot {
  width: 2.2rem;
  height: .5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
}
.hero-slider-dot.is-active {
  width: 2.95rem;
  background: var(--lemon);
}
.hero-slider-dot:focus-visible {
  outline: 2px solid var(--lemon);
  outline-offset: 4px;
}
.hero-product-image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: clamp(1.1rem, 1.8vw, 1.55rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,248,249,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 24px 48px rgba(0, 0, 0, .2);
}
.hero-product-image img {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 1.5vw, 1.15rem);
}
.hero-stats div {
  padding: clamp(1.35rem, 2.05vw, 1.85rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,247,239,.96));
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .18);
}
.hero-stats strong { display: block; font-size: clamp(3.15rem, 5.2vw, 4.9rem); line-height: .92; }
.hero-stats span { color: #526073; font-size: 1rem; font-weight: 800; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero-tags span {
  padding: .62rem .84rem;
  background: rgba(9, 20, 38, .68);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .92rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.home-system { padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem); }
.section-kicker { max-width: 900px; margin-bottom: 1.5rem; }
.section-kicker h2 { margin: 0; font-size: clamp(2rem, 5vw, 4.6rem); line-height: 1; }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.system-grid article {
  min-height: 250px;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}
.system-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.system-step { color: var(--coral); font-weight: 900; }
.system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  color: var(--coral);
  background: rgba(184, 50, 36, .08);
  border: 1px solid rgba(184, 50, 36, .18);
}
.system-icon .ui-icon {
  width: 1.55rem;
  height: 1.55rem;
}
.system-grid h3 { margin: 1rem 0 .6rem; font-size: 1.55rem; line-height: 1.1; }
.clickbank-qa {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--mist);
  border-block: 1px solid var(--line);
}
.qa-layout {
  max-width: 1240px;
  margin: 0 auto;
}
.clickbank-qa .section-kicker p:not(.eyebrow) {
  max-width: 760px;
  color: #41536b;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.qa-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: .85rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
}
.qa-number {
  width: fit-content;
  padding: .38rem .55rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(0, 122, 120, .1);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}
.qa-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}
.qa-card p {
  margin: 0;
  color: #354861;
}
.qa-note {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(0, 122, 120, .18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  color: #41536b;
  font-weight: 800;
}
.product-grid, .article-grid { gap: 1.2rem; }
.product-card, .article-card {
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover, .article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.product-image {
  margin: 0;
  width: 100%;
  min-height: 270px;
  background: var(--white);
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  padding: clamp(.35rem, 1.3vw, 1rem);
  background: #fff;
}
.product-image-fallback {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, hsla(var(--product-hue), 88%, 72%, .52), transparent 30%),
    linear-gradient(145deg, hsl(var(--product-hue), 48%, 24%), hsl(calc(var(--product-hue) + 52), 55%, 12%));
}
.product-image-fallback > div {
  width: min(100%, 30rem);
  display: grid;
  gap: .65rem;
  align-content: center;
  text-align: center;
}
.product-image-fallback span,
.product-image-fallback small {
  color: rgba(255,255,255,.74);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-image-fallback strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2.5rem);
  line-height: 1.02;
}
.product-image-vendor { position: relative; }
.product-image-credit {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  padding: .35rem .5rem;
  border-radius: .45rem;
  background: rgba(17, 19, 25, .82);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
}
.product-image-credit a { color: inherit; }
.product-visual {
  min-height: 330px;
  padding: 0;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  background: var(--ink);
}
.product-visual .product-image { min-height: 280px; }
.product-visual > div { display: grid; gap: .35rem; padding: 1rem; }
.product-visual span {
  color: var(--lemon);
  text-align: left;
  max-width: none;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.product-visual strong { color: var(--white); font-size: 1.45rem; line-height: 1.05; }
.card-actions { border-top: 1px solid var(--line); }
.rating,
.editorial-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .25rem 0 .75rem;
  color: var(--ink);
  font-weight: 900;
}
.rating-stars {
  position: relative;
  display: inline-block;
  color: #cfd5df;
  letter-spacing: .05em;
  line-height: 1;
}
.rating-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #e39a00;
  white-space: nowrap;
}
.editorial-rating strong { font-size: 1rem; }
.editorial-rating small {
  color: #5d6b80;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.editorial-rating-compact {
  margin: .2rem 0 .55rem;
}
.editorial-rating-compact .rating-stars { font-size: .88rem; }
.article-card { padding: 0; }
.article-card-body { padding: 1rem; }
.article-card-image { min-height: 260px; }
.category-picker { padding: 0 clamp(1rem, 5vw, 5rem) 2rem; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .85rem;
}
.category-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}
.category-card strong { font-size: 2.4rem; line-height: 1; }
.category-card small { color: #667085; font-weight: 750; }
.category-card.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.category-card.is-active small { color: #e1e7ef; }
.review-hero, .article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}
.article-hero-product, .review-hero .product-visual {
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.article-visual {
  margin: 0;
  height: clamp(280px, 32vw, 460px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.article-visual img { width: 100%; height: 100%; object-fit: cover; }
.article-visual-0 img { object-position: left center; }
.article-visual-1 img { object-position: center center; }
.article-visual-2 img { object-position: right center; }
.review-preview-band {
  margin: 0 clamp(1rem, 5vw, 5rem) 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}
.review-preview-band p, .review-preview-band strong { color: var(--white); }
.review-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.review-preview-card {
  min-height: 120px;
  padding: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.review-preview-card span {
  display: block;
  color: var(--lemon);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
}
.research-home-gateway,
.research-hero,
.category-hub-hero,
.ai-feature-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}
.research-home-gateway {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(20, 33, 61, .14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(20, 33, 61, .12);
}
.research-home-gateway figure,
.research-hero-visual,
.category-hub-image,
.ai-feature-band figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, .16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 28px 72px rgba(20, 33, 61, .2);
}
.research-home-gateway img,
.research-hero-visual img,
.category-hub-image img,
.ai-feature-band img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.research-home-gateway h2,
.research-hero h1,
.category-hub-hero h1 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}
.research-home-gateway h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
}
.research-hero h1,
.category-hub-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}
.research-hero .hero-lede,
.category-hub-hero .hero-lede {
  color: #41536b;
}
.research-keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 4vw, 3rem);
}
.research-keyword-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .58rem .76rem;
  border: 1px solid rgba(20, 33, 61, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
}
.research-keyword-strip a:hover,
.research-keyword-strip a:focus-visible {
  border-color: rgba(0, 122, 120, .36);
  background: var(--mist);
  outline: none;
}
.research-stat-grid,
.beginner-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
}
.research-stat-grid div,
.beginner-steps article {
  min-height: 170px;
  padding: 1.1rem;
  border: 1px solid rgba(20, 33, 61, .14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
}
.research-stat-grid strong,
.beginner-steps span {
  display: block;
  color: var(--coral);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .92;
}
.research-stat-grid span,
.beginner-steps p {
  display: block;
  margin-top: .55rem;
  color: #52647a;
  font-weight: 800;
}
.beginner-steps h2 {
  margin: 1rem 0 .5rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}
.research-copy-block {
  max-width: 980px;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.research-copy-block h2,
.research-proof-band h2,
.ai-feature-band h2,
.research-faq-grid .section-kicker h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 1;
}
.research-copy-block p:not(.eyebrow),
.research-proof-band p,
.ai-feature-band p {
  color: #354861;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}
.category-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}
.category-feature-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(230px, auto) auto auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.category-feature-card:hover,
.category-feature-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}
.category-feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.category-feature-card span,
.category-feature-card strong,
.category-feature-card p {
  margin-inline: 1rem;
}
.category-feature-card span {
  margin-top: 1rem;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.category-feature-card strong {
  margin-top: .25rem;
  font-size: 1.45rem;
  line-height: 1.08;
}
.category-feature-card p {
  margin-bottom: 1rem;
  color: #52647a;
}
.research-proof-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
}
.research-proof-band p,
.research-proof-band .eyebrow {
  color: #d9e1ec;
}
.research-proof-band .eyebrow {
  color: var(--lemon);
}
.research-panel-grid,
.research-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.research-panel-grid article,
.research-faq-grid article {
  min-height: 190px;
  padding: 1rem;
  border-radius: var(--radius);
}
.research-panel-grid article {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.research-panel-grid span {
  color: var(--lemon);
  font-weight: 900;
}
.research-panel-grid h3,
.research-faq-grid h3 {
  margin: .5rem 0;
  font-size: 1.35rem;
  line-height: 1.1;
}
.research-faq-grid {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}
.research-faq-grid .section-kicker {
  grid-column: 1 / -1;
}
.research-faq-grid article {
  border: 1px solid var(--line);
  background: var(--white);
}
.research-faq-grid p {
  color: #354861;
}
.ai-feature-band {
  background: linear-gradient(135deg, rgba(237,248,246,.82), rgba(255,242,221,.72));
  border-block: 1px solid var(--line);
}
.ai-feature-band figure {
  min-height: 420px;
}
.research-product-grid {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.buyer-guides-home,
.buyer-guide-index-hero,
.buyer-guide-hero,
.official-resource-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}
.buyer-guides-home {
  align-items: start;
  background: #fff8ed;
  border-block: 1px solid #f3dbc0;
}
.buyer-guides-home .section-kicker {
  position: sticky;
  top: 110px;
}
.buyer-guide-index-hero,
.buyer-guide-hero {
  background:
    linear-gradient(135deg, rgba(237,248,246,.9), rgba(255,248,237,.76));
}
.buyer-guide-hero h1,
.buyer-guide-index-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  line-height: .98;
}
.buyer-guide-hero-image {
  margin: 0;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(20, 33, 61, .16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 28px 72px rgba(20, 33, 61, .2);
}
.buyer-guide-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.buyer-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}
.buyer-guide-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}
.buyer-guide-card {
  display: grid;
  grid-template-rows: 190px auto auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.buyer-guide-card:hover,
.buyer-guide-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}
.buyer-guide-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.buyer-guide-card span,
.buyer-guide-card strong,
.buyer-guide-card p {
  margin-inline: 1rem;
}
.buyer-guide-card span {
  margin-top: 1rem;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.buyer-guide-card strong {
  margin-top: .28rem;
  font-size: 1.2rem;
  line-height: 1.08;
}
.buyer-guide-card p {
  margin-bottom: 1rem;
  color: #52647a;
}
.buyer-guide-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
}
.buyer-guide-checklist article {
  min-height: 185px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.buyer-guide-checklist span {
  color: var(--coral);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}
.buyer-guide-checklist h2 {
  margin: .7rem 0 .45rem;
  font-size: 1.22rem;
  line-height: 1.1;
}
.buyer-guide-checklist p {
  margin: 0;
  color: #52647a;
}
.buyer-guide-shell {
  padding-top: clamp(1rem, 3vw, 2rem);
}
.buyer-related-guides {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfb;
}
.buyer-related-guides .section-kicker {
  margin-bottom: 1rem;
}
.buyer-related-guides .section-kicker h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}
.official-resource-band {
  align-items: start;
  background: var(--ink);
  color: var(--white);
}
.official-resource-band p,
.official-resource-band .eyebrow {
  color: #d9e1ec;
}
.official-resource-band .eyebrow {
  color: var(--lemon);
}
.official-resource-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}
.official-resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.official-resource-list a {
  display: grid;
  gap: .35rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
}
.official-resource-list a:hover,
.official-resource-list a:focus-visible {
  background: rgba(255,255,255,.14);
  outline: none;
}
.official-resource-list span {
  color: #d9e1ec;
}
.mega-panel-guides .mega-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1180px) {
  .site-header {
    align-items: center;
    flex-direction: column;
  }
  .site-header .primary-nav {
    position: static;
    justify-content: center;
    width: 100%;
    transform: none;
  }
}
.research-article-band {
  margin-top: clamp(1rem, 3vw, 2rem);
}
.product-image-generated img {
  object-fit: cover;
}
@media (max-width: 980px) {
  .system-grid, .article-visual-grid, .category-grid, .review-preview-grid, .rating-breakdown-grid, .qa-grid, .category-feature-grid, .research-panel-grid, .research-faq-grid, .research-proof-band, .buyer-guide-grid, .buyer-guide-checklist, .official-resource-list {
    grid-template-columns: 1fr 1fr;
  }
  .research-home-gateway,
  .research-hero,
  .category-hub-hero,
  .ai-feature-band,
  .buyer-guides-home,
  .buyer-guide-index-hero,
  .buyer-guide-hero,
  .official-resource-band {
    grid-template-columns: 1fr;
  }
  .source-evidence-panel { grid-template-columns: 1fr; }
  .buyer-guides-home .section-kicker {
    position: static;
  }
  .research-stat-grid,
  .beginner-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-board {
    max-width: 780px;
  }
  .hero-board-main,
  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-product-image {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 680px) {
  body { background-attachment: scroll; }
  .site-header {
    gap: .7rem;
    padding: .7rem .8rem .75rem;
  }
  .site-header .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-header .primary-nav {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: .55rem;
  }
  .site-header.is-nav-open .primary-nav {
    max-height: calc(100vh - 5.75rem);
    max-height: calc(100svh - 5.75rem);
    padding: .7rem .2rem .2rem;
    border-top-color: rgba(255,255,255,.12);
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
  .site-header .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-width: 0;
    width: 100%;
  }
  .site-header .nav-link,
  .site-header .nav-trigger {
    flex: none;
    justify-content: flex-start;
    min-height: 50px;
    width: 100%;
  }
  .site-header .nav-link {
    padding: .74rem .85rem;
  }
  .nav-trigger-main {
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
    padding: .72rem .75rem .72rem .85rem;
  }
  .site-header .nav-link span,
  .nav-trigger-main span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-trigger-indicator { min-width: 2.8rem; }
  .site-header .mega-menu,
  .site-header .nav-menu:hover .mega-menu,
  .site-header .nav-menu:focus-within .mega-menu {
    grid-column: 1;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .site-header .nav-menu.is-open .mega-menu {
    max-height: none;
    margin-top: .55rem;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header .mega-panel {
    grid-template-columns: 1fr;
    gap: .65rem;
    max-height: none;
    overflow: visible;
    padding: .72rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  }
  .site-header .mega-copy {
    padding: .7rem;
  }
  .site-header .mega-copy h2 {
    font-size: 1.18rem;
    line-height: 1.15;
  }
  .site-header .mega-copy p:not(.eyebrow) {
    display: none;
  }
  .site-header .mega-all-link {
    padding: .75rem;
  }
  .site-header .mega-category-grid {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
  .site-header .mega-category-link {
    gap: .62rem;
    min-height: 0;
    padding: .68rem .72rem;
  }
  .site-header .mega-category-icon {
    width: 2.1rem;
    height: 2.1rem;
  }
  .site-header .mega-category-copy small {
    display: none;
  }
  .site-header .mega-image {
    display: none;
  }
  .hero-board-main, .hero-slide, .system-grid, .article-visual-grid, .category-grid, .review-preview-grid, .rating-breakdown-grid, .qa-grid, .category-feature-grid, .research-panel-grid, .research-faq-grid, .research-proof-band, .research-stat-grid, .beginner-steps, .buyer-guide-grid, .buyer-guide-checklist, .official-resource-list {
    grid-template-columns: 1fr;
  }
  .hero-slider-controls {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-slider-dots {
    flex-wrap: wrap;
  }
  .hero-product-image, .article-hero-product { min-height: 300px; }
  .product-visual { min-height: 300px; grid-template-rows: minmax(230px, 1fr) auto; }
  .product-visual .product-image { min-height: 230px; }
}
@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* World-class brand polish */
:root {
  --ink: #111319;
  --ink-2: #343b48;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d8ddd6;
  --mist: #edf4ef;
  --teal: #0d7f78;
  --coral: #c14a32;
  --lemon: #f3c65d;
  --star: #a86813;
  --blue: #315fe6;
  --green: #238c62;
  --shadow: 0 24px 70px rgba(17, 19, 25, .12);
  --radius: 8px;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfbf7 0%, #f3f6f1 44%, #f8f5ed 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  flex-direction: row;
  padding: .68rem clamp(1rem, 3vw, 3rem);
  background: rgba(251, 251, 247, .9);
  border-bottom: 1px solid rgba(17, 19, 25, .09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .86), 0 18px 46px rgba(17, 19, 25, .08);
  color: var(--ink);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand {
  gap: .82rem;
  font-size: 1.64rem;
  font-weight: 850;
  line-height: 1;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 12px 30px rgba(17, 19, 25, .18);
}

.site-header .brand span {
  color: var(--ink);
  font-weight: 850;
}

.site-header .brand-lockup {
  display: flex;
  align-items: center;
  gap: .72rem;
}

.site-header .brand-name {
  display: block;
  font-size: 1.64rem;
  line-height: 1;
}

.site-header .brand .brand-slogan {
  display: block;
  padding-left: .72rem;
  border-left: 1px solid rgba(17, 19, 25, .2);
  color: #000;
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: .025em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header .primary-nav {
  position: static;
  justify-content: flex-end;
  gap: .34rem;
  margin-left: auto;
  transform: none;
}

.site-header .nav-link,
.site-header .nav-trigger {
  min-height: 40px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #28313d;
  font-size: .94rem;
  font-weight: 760;
}

.site-header .nav-link {
  padding: .6rem .72rem;
}

.nav-trigger-main {
  padding: .6rem .58rem .6rem .72rem;
}

.nav-trigger-indicator {
  min-width: 2rem;
  border-left: 0;
  background: transparent;
  color: #697386;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-trigger:hover,
.site-header .nav-trigger:focus-visible,
.site-header .nav-menu.is-open .nav-trigger {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.site-header .nav-trigger:hover .nav-trigger-indicator,
.site-header .nav-trigger:focus-visible .nav-trigger-indicator,
.site-header .nav-menu.is-open .nav-trigger-indicator {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.mobile-nav-toggle {
  color: var(--ink);
  border-color: rgba(17, 19, 25, .12);
  background: rgba(255, 255, 255, .78);
}

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

.nav-search {
  display: flex;
}

.nav-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  min-height: 40px;
  padding: .6rem .72rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: #28313d;
  font-family: var(--apple-font);
  font-size: .94rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus-visible,
.nav-search.is-open .nav-search-toggle {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.site-search-panel {
  position: absolute;
  top: calc(100% + .72rem);
  right: clamp(1rem, 3vw, 3rem);
  width: min(660px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(17, 19, 25, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .985);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(17, 19, 25, .22);
  z-index: 45;
}

.site-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.site-search-input-icon {
  position: absolute;
  left: .9rem;
  display: inline-flex;
  color: #667085;
  pointer-events: none;
}

.site-search-form input {
  width: 100%;
  min-height: 50px;
  padding: .78rem 4.7rem .78rem 2.75rem;
  border: 1px solid rgba(17, 19, 25, .18);
  border-radius: calc(var(--radius) - 1px);
  background: #fbfbf7;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.site-search-form input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 127, 120, .15);
}

.site-search-clear {
  position: absolute;
  right: .55rem;
  min-height: 34px;
  padding: .35rem .52rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(17, 19, 25, .07);
  color: #465264;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.site-search-clear:hover,
.site-search-clear:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.site-search-status {
  margin: .7rem .15rem .55rem;
  color: #667085;
  font-size: .82rem;
  line-height: 1.35;
}

.site-search-results {
  display: grid;
  gap: .48rem;
  max-height: min(58vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-search-results a {
  display: grid;
  grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  min-height: 54px;
  padding: .7rem .78rem;
  border: 1px solid rgba(17, 19, 25, .09);
  border-radius: calc(var(--radius) - 1px);
  background: #fbfbf7;
  color: var(--ink);
  text-decoration: none;
}

.site-search-results a:hover,
.site-search-results a:focus-visible,
.site-search-results a.is-keyboard-active {
  border-color: rgba(13, 127, 120, .36);
  background: var(--mist);
  outline: none;
}

.site-search-results span {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.site-search-results strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: .94rem;
  line-height: 1.25;
}

.site-search-empty {
  margin: 0;
  padding: 1rem;
  border: 1px dashed rgba(17, 19, 25, .16);
  border-radius: var(--radius);
  color: #526073;
  text-align: center;
}

.mega-panel {
  border-color: rgba(17, 19, 25, .1);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 30px 90px rgba(17, 19, 25, .18);
}

.mega-copy,
.mega-category-link {
  background: #fbfbf7;
}

.mega-all-link {
  background: rgba(13, 127, 120, .1);
  color: var(--teal);
}

.hero {
  grid-template-columns: minmax(0, .78fr) minmax(420px, .94fr);
  gap: 3.5rem;
  min-height: min(800px, calc(100svh - 76px));
  padding: 4.75rem clamp(1rem, 5vw, 5rem) 3.25rem;
  background:
    linear-gradient(90deg, rgba(17, 19, 25, .94) 0%, rgba(17, 19, 25, .7) 47%, rgba(17, 19, 25, .24) 100%),
    linear-gradient(180deg, rgba(17, 19, 25, .08), rgba(17, 19, 25, .56)),
    url("/assets/ai-command-center.jpg") center / cover no-repeat;
}

.hero::after {
  height: 24%;
  background: linear-gradient(180deg, rgba(17, 19, 25, 0), rgba(17, 19, 25, .76));
}

.hero-copy {
  align-self: center;
  max-width: 690px;
}

.hero h1 {
  max-width: 8ch;
  font-size: 6.5rem;
  line-height: .92;
  text-wrap: balance;
}

.hero .hero-lede {
  max-width: 630px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.22rem;
}

.hero .eyebrow,
.research-proof-band .eyebrow,
.official-resource-band .eyebrow {
  color: var(--lemon);
}

.button {
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(17, 19, 25, .16);
  outline: none;
}

.button-secondary {
  background: #fbfbf7;
}

.hero-trust span {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .9);
  box-shadow: none;
}

.hero-board {
  width: min(100%, 760px);
}

.hero-board-main {
  gap: 1.35rem;
  padding: 1.45rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 34%),
    rgba(17, 19, 25, .82);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 32px 86px rgba(0, 0, 0, .32);
}

.hero-slide {
  grid-template-columns: minmax(230px, .92fr) minmax(0, 1fr);
  gap: 1.45rem;
}

.hero-slide-copy h2 {
  margin: .32rem 0 .72rem;
  font-size: 3rem;
  line-height: .98;
}

.hero-slide-copy > p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.06rem;
}

.hero-board-main .card-actions .button {
  min-height: 50px;
  font-size: .98rem;
}

.hero-product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #ffffff, #f3f6f1);
}

.hero-product-image img,
.product-card .product-image img,
.review-hero .product-image img,
.article-hero-product img,
.article-card-image img {
  object-fit: contain;
  background: #ffffff;
}

.hero-stats div {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .8);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.hero-stats strong {
  font-size: 3.6rem;
}

.hero-tags span {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: none;
}

.notice-band,
.disclosure-inline {
  background: #fff7df;
  border-color: #e8c46e;
}

.product-card,
.article-card,
.system-grid article,
.qa-card,
.category-card,
.research-stat-grid div,
.beginner-steps article,
.category-feature-card,
.buyer-guide-card,
.buyer-guide-checklist article {
  border-color: rgba(17, 19, 25, .1);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(17, 19, 25, .04);
}

.product-card:hover,
.article-card:hover,
.category-feature-card:hover,
.buyer-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-visual {
  background: #111319;
}

.product-visual .product-image {
  background: linear-gradient(180deg, #ffffff, #f4f7f2);
}

.product-visual strong {
  font-size: 1.28rem;
}

.product-visual span,
.system-step,
.category-feature-card span,
.buyer-guide-card span,
.article-list span {
  color: var(--coral);
}


.category-strip a,
.research-keyword-strip a {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(17, 19, 25, .11);
}

.category-card.is-active {
  background: var(--ink);
  border-color: var(--ink);
}

.research-home-gateway,
.buyer-guide-hero-image,
.research-hero-visual,
.category-hub-image,
.ai-feature-band figure {
  box-shadow: 0 26px 70px rgba(17, 19, 25, .14);
}

.site-footer {
  background:
    linear-gradient(180deg, #111319, #151922);
}

.brand-footer img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.brand-footer span {
  color: var(--white);
  font-weight: 850;
}

.seo-source-band,
.buyer-intent-narrative,
.affiliate-offer-wall {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.seo-source-band {
  grid-template-columns: minmax(0, .78fr) minmax(320px, 1.22fr);
  align-items: start;
  background: #ffffff;
  border-block: 1px solid rgba(17, 19, 25, .09);
}

.seo-source-copy {
  max-width: 720px;
}

.seo-source-copy h2,
.buyer-intent-narrative h2,
.affiliate-offer-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.seo-source-copy p:not(.eyebrow),
.buyer-intent-narrative p,
.affiliate-offer-copy p:not(.eyebrow) {
  color: #384455;
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
}

.seo-source-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.seo-source-grid a {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: .52rem;
  padding: 1rem;
  border: 1px solid rgba(17, 19, 25, .1);
  border-radius: var(--radius);
  background: #f7f8f4;
  color: var(--ink);
  text-decoration: none;
}

.seo-source-grid a:hover,
.seo-source-grid a:focus-visible {
  border-color: rgba(13, 127, 120, .32);
  background: var(--mist);
  outline: none;
}

.seo-source-grid strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.seo-source-grid span {
  color: #596474;
  font-size: .9rem;
  line-height: 1.45;
}

.buyer-intent-narrative {
  grid-template-columns: minmax(320px, 1.02fr) minmax(0, .98fr);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.buyer-intent-narrative figure,
.affiliate-offer-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: #0d121d;
  box-shadow: 0 28px 72px rgba(17, 19, 25, .2);
}

.buyer-intent-narrative img,
.affiliate-offer-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.buyer-intent-narrative .eyebrow {
  color: var(--lemon);
}

.buyer-intent-narrative p {
  color: #d9e1ec;
}

.buyer-intent-narrative .text-link {
  color: #9df7ef;
}

.affiliate-offer-wall {
  grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(237, 244, 239, .82), rgba(255, 247, 223, .72));
  border-block: 1px solid rgba(17, 19, 25, .09);
}

.affiliate-offer-copy {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.affiliate-offer-copy .disclosure-inline {
  margin: 0;
}

.affiliate-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.affiliate-offer-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(130px, .46fr) minmax(0, .54fr);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 25, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(17, 19, 25, .04);
}

.affiliate-offer-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: .8rem;
  background: linear-gradient(180deg, #ffffff, #f4f7f2);
  border-right: 1px solid rgba(17, 19, 25, .08);
}

.affiliate-offer-card-media img {
  width: 100%;
  height: 100%;
  max-height: 230px;
  object-fit: contain;
}

.affiliate-offer-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem;
}

.affiliate-offer-card-body > span {
  color: var(--coral);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.affiliate-offer-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.affiliate-offer-card p {
  margin: 0;
  color: #4d5a69;
  font-size: .95rem;
}

.affiliate-offer-card .evidence-status {
  margin: 0;
}

.affiliate-offer-card .card-actions {
  align-items: stretch;
  margin-top: auto;
  padding: .75rem 0 0;
  border-top: 0;
}

.affiliate-offer-card .card-actions .button {
  flex: 1 1 9rem;
}

.related-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}

.related-review-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(132px, .42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 25, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(17, 19, 25, .04);
  transition: transform .18s ease, box-shadow .18s ease;
}

.related-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-review-media {
  min-width: 0;
  display: flex;
  color: inherit;
  background: linear-gradient(180deg, #ffffff, #f1f5ef);
  border-right: 1px solid rgba(17, 19, 25, .08);
  text-decoration: none;
}

.related-review-image {
  width: 100%;
  min-height: 224px;
  margin: 0;
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-review-image img {
  width: 100%;
  height: 100%;
  max-height: 198px;
  object-fit: contain;
  background: transparent;
}

.related-review-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.related-review-copy {
  min-width: 0;
  padding: .95rem 1rem .75rem;
}

.related-review-copy .eyebrow {
  margin-bottom: .3rem;
  font-size: .7rem;
}

.related-review-copy h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -.015em;
}

.related-review-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.related-review-copy h3 a:hover,
.related-review-copy h3 a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .65rem;
  margin-top: .65rem;
}

.related-review-evidence {
  padding: .32rem .48rem;
  border: 1px solid rgba(17, 19, 25, .12);
  border-radius: calc(var(--radius) - 2px);
  background: #f5f7f3;
  color: #435064;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.related-review-meta .editorial-rating {
  margin: 0;
}

.related-review-meta .editorial-rating small {
  display: none;
}

.related-review-summary {
  display: -webkit-box;
  margin: .65rem 0 0;
  overflow: hidden;
  color: #536176;
  font-size: .86rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-review-actions {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  margin-top: auto;
  padding: .72rem 1rem;
  border-top: 1px solid rgba(17, 19, 25, .08);
}

.related-review-actions .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 40px;
  padding: .62rem .7rem;
  font-size: .82rem;
}

@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header .primary-nav {
    flex: 1 1 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-board {
    justify-self: start;
    max-width: 840px;
  }

  .seo-source-band,
  .buyer-intent-narrative,
  .affiliate-offer-wall {
    grid-template-columns: 1fr;
  }

  .affiliate-offer-copy {
    position: static;
  }

  .seo-source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .7rem;
    padding: .7rem .8rem .75rem;
    background: rgba(17, 19, 25, .94);
    color: var(--white);
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .brand span,
  .mobile-nav-toggle,
  .site-header .nav-link,
  .site-header .nav-trigger,
  .site-header .nav-search-toggle {
    color: var(--white);
  }

  .site-header .brand .brand-slogan {
    padding: .32rem .48rem;
    border: 0;
    border-radius: .4rem;
    background: var(--white);
    color: #000;
    font-size: .72rem;
  }

  .site-header .brand {
    gap: .5rem;
  }

  .site-header .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .site-header .brand-lockup {
    gap: .46rem;
  }

  .site-header .brand-name {
    font-size: 1.18rem;
  }

  .mobile-nav-toggle,
  .site-header .nav-link,
  .site-header .nav-trigger,
  .site-header .nav-search-toggle {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-header .primary-nav {
    position: static;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: .55rem;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .22s ease, opacity .18s ease, padding .18s ease, visibility .18s ease;
  }

  .site-header.is-nav-open .primary-nav {
    max-height: calc(100vh - 5.75rem);
    max-height: calc(100svh - 5.75rem);
    padding: .7rem .2rem .2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-width: 0;
    width: 100%;
  }

  .site-header .nav-link,
  .site-header .nav-trigger,
  .site-header .nav-search-toggle {
    flex: none;
    justify-content: flex-start;
    min-height: 50px;
    width: 100%;
  }

  .site-header .nav-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .site-header .nav-search-toggle {
    gap: .5rem;
    padding: .74rem .85rem;
  }

  .site-header .site-search-panel {
    position: static;
    grid-column: 1;
    width: 100%;
    margin-top: .55rem;
    padding: .72rem;
    box-shadow: none;
  }

  .site-search-results {
    max-height: 46svh;
  }

  .site-header .nav-link {
    padding: .74rem .85rem;
  }

  .nav-trigger-main {
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
    padding: .72rem .75rem .72rem .85rem;
  }

  .site-header .mega-menu,
  .site-header .nav-menu:hover .mega-menu,
  .site-header .nav-menu:focus-within .mega-menu {
    position: static;
    left: auto;
    right: auto;
    grid-column: 1;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    translate: 0 0;
    transform: none;
  }

  .site-header .nav-menu.is-open .mega-menu {
    max-height: none;
    margin-top: .55rem;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .mega-panel,
  .site-header .mega-category-grid {
    grid-template-columns: 1fr;
  }

  .site-header .mega-panel {
    gap: .65rem;
    max-height: none;
    overflow: visible;
    padding: .72rem;
  }

  .site-header .mega-copy p:not(.eyebrow),
  .site-header .mega-category-copy small,
  .site-header .mega-image {
    display: none;
  }

  .site-header .mega-category-link {
    min-height: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    min-height: auto;
    padding: 2.4rem clamp(1rem, 5vw, 5rem) 2rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.45rem);
  }

  .hero .hero-lede {
    font-size: 1.05rem;
  }

  .hero-slide-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .hero-board,
  .hero-board-main,
  .hero-slide {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-board {
    justify-self: stretch;
  }

  .hero-board-main,
  .hero-slide,
  .review-hero,
  .article-hero,
  .split-band,
  .article-shell,
  .source-evidence-panel,
  .research-home-gateway,
  .research-hero,
  .category-hub-hero,
  .ai-feature-band,
  .buyer-guides-home,
  .buyer-guide-index-hero,
  .buyer-guide-hero,
  .official-resource-band,
  .seo-source-band,
  .buyer-intent-narrative,
  .affiliate-offer-wall,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-product-slideshow {
    display: none;
  }

  .hero-product-image {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .compact-hero h1,
  .review-hero h1,
  .article-hero h1,
  .buyer-guide-hero h1,
  .buyer-guide-index-hero h1,
  .research-hero h1,
  .category-hub-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    overflow-wrap: anywhere;
  }

  .product-grid,
  .article-grid,
  .product-grid-small,
  .system-grid,
  .article-visual-grid,
  .category-grid,
  .review-preview-grid,
  .rating-breakdown-grid,
  .qa-grid,
  .category-feature-grid,
  .research-panel-grid,
  .research-faq-grid,
  .research-proof-band,
  .research-stat-grid,
  .beginner-steps,
  .buyer-guide-grid,
  .buyer-guide-checklist,
  .official-resource-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-shell {
    gap: 1rem;
  }

  .article-body,
  .legal-page,
  .related-review-copy,
  .affiliate-offer-card-body {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .review-hero .product-visual,
  .article-hero-product {
    min-height: 300px;
  }

  .seo-source-grid,
  .affiliate-offer-grid {
    grid-template-columns: 1fr;
  }

  .seo-source-grid a {
    min-height: auto;
  }

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

  .affiliate-offer-card-media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 25, .08);
  }

  .related-reviews-grid {
    grid-template-columns: 1fr;
  }

  .related-review-card {
    grid-template-columns: minmax(130px, .34fr) minmax(0, 1fr);
  }

  .buyer-intent-narrative img,
  .affiliate-offer-visual img {
    min-height: 240px;
  }
}

@media (max-width: 460px) {
  .site-header .brand .brand-slogan {
    display: none;
  }

  .site-header .brand-name {
    font-size: 1.08rem;
  }

  .hero-board-main {
    padding: .9rem;
  }

  .hero h1,
  .compact-hero h1,
  .review-hero h1,
  .article-hero h1,
  .buyer-guide-hero h1,
  .buyer-guide-index-hero h1,
  .research-hero h1,
  .category-hub-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .hero-actions .button,
  .card-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .related-review-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .related-review-media {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 25, .08);
  }

  .related-review-image {
    min-height: 170px;
    padding: .55rem;
  }

  .related-review-summary {
    display: none;
  }

  .related-review-actions {
    flex-direction: column;
  }
}

/* Evidence-led redesign: final source-of-truth layer */
body {
  background: #f6f4ee;
  color: #122033;
}

.site-header {
  gap: 1rem;
  padding-block: .68rem;
  background: rgba(255, 255, 255, .96);
}

.site-header .brand img { width: 48px; height: 48px; border-radius: 14px; }
.site-header .primary-nav {
  position: static;
  margin-left: auto;
  transform: none;
  gap: .35rem;
}
.site-header .nav-link,
.nav-search-toggle {
  min-height: 42px;
  padding: .58rem .68rem;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  font-size: .88rem;
  font-weight: 760;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus-visible { border-color: var(--line); background: #f4f7f6; }

.home-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 6vw, 7rem);
  background: #122033;
  color: #fff;
}
.home-hero-v2 h1 { max-width: 850px; margin: .55rem 0 1rem; font-size: clamp(3rem, 6.6vw, 6.5rem); line-height: .96; letter-spacing: -.055em; }
.home-hero-v2 .hero-lede { max-width: 770px; color: #dbe6e4; font-size: clamp(1.08rem, 1.6vw, 1.35rem); }
.home-product-search { max-width: 760px; margin: 2rem 0 1.1rem; }
.home-product-search label { display: block; margin-bottom: .45rem; color: #b9cbc7; font-size: .78rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.home-product-search > div { display: flex; gap: .55rem; padding: .45rem; border-radius: 10px; background: #fff; }
.home-product-search input { flex: 1; min-width: 0; border: 0; padding: .78rem .9rem; font: inherit; font-size: 1.05rem; outline: 0; }
.home-disclosure { max-width: 720px; margin: 1.1rem 0 0; color: #aebfbc; font-size: .78rem; }
.home-evidence-card { padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.07); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.home-evidence-card h2 { margin: .4rem 0 1.2rem; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.05; }
.home-evidence-card ol { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.home-evidence-card li { display: grid; grid-template-columns: 36px 1fr; gap: .2rem .75rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.15); }
.home-evidence-card li span { grid-row: 1 / 3; color: #79d4c7; font-weight: 900; }
.home-evidence-card li small { color: #b9cbc7; }

.home-category-section,
.home-curated-section,
.home-tools-section { padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 6vw, 7rem); }
.home-curated-section { background: #fff; }
.home-category-grid,
.home-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.home-category-grid > a,
.home-resource-grid > a { display: flex; flex-direction: column; min-height: 230px; padding: 1.35rem; border: 1px solid #d9e2df; border-radius: 10px; background: #fff; text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.home-category-grid > a:hover,
.home-resource-grid > a:hover { transform: translateY(-3px); border-color: #178b80; box-shadow: 0 18px 45px rgba(18,32,51,.1); }
.home-category-grid svg { width: 28px; height: 28px; color: #087d74; }
.home-category-grid strong,
.home-resource-grid strong { margin: .85rem 0 .45rem; font-size: 1.24rem; line-height: 1.15; }
.home-category-grid p,
.home-resource-grid p { margin: 0; color: #526273; }
.home-category-grid small { margin-top: auto; padding-top: 1rem; color: #087d74; font-weight: 800; }
.home-resource-grid span { color: #087d74; font-size: .72rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.resource-tool { background: #e8f6f2 !important; }
.section-action { margin-top: 2rem; text-align: center; }

.home-method-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 6vw, 7rem); background: #e8f0ee; }
.home-method-section h2 { max-width: 720px; font-size: clamp(2.3rem, 4.8vw, 4.6rem); line-height: 1; letter-spacing: -.045em; }
.method-facts { display: grid; gap: .8rem; }
.method-facts div { padding: 1.1rem 1.25rem; border-left: 4px solid #087d74; background: #fff; }
.method-facts dt { font-size: 2.1rem; font-weight: 900; }
.method-facts dd { margin: 0; color: #526273; }

.directory-hero-v2 { background: #122033; color: #fff; }
.directory-hero-v2 p { color: #d6e1df; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; max-width: 1500px; margin: 0 auto; padding: 1rem clamp(1rem, 5vw, 5rem) 0; color: #5b6b78; font-size: .84rem; }
.breadcrumbs a { color: #087d74; }

.decision-dashboard { margin: clamp(1rem, 3vw, 3rem) clamp(1rem, 5vw, 5rem); padding: clamp(1.2rem, 3vw, 2.2rem); border: 1px solid #c9d8d4; border-radius: 12px; background: #f1f8f6; }
.decision-dashboard-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1rem; }
.decision-dashboard-heading h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.decision-dashboard dl { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid #d2dfdc; border-radius: 8px; background: #d2dfdc; }
.decision-dashboard dl > div { min-width: 0; padding: 1rem; background: #fff; }
.decision-dashboard .decision-wide { grid-column: 1 / -1; }
.decision-dashboard dt { color: #087d74; font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.decision-dashboard dd { margin: .35rem 0 0; color: #243445; line-height: 1.45; overflow-wrap: anywhere; }
.review-toc ol { margin: .75rem 0 1rem; padding-left: 1.15rem; }
.review-toc li { margin: .38rem 0; }
.review-toc a { color: #087d74; }
.evidence-completeness { display: grid; grid-template-columns: minmax(90px, 1fr) auto; gap: .3rem .7rem; align-items: center; }
.evidence-meter { position: relative; height: 8px; overflow: hidden; border-radius: 99px; background: #d9e3e0; }
.evidence-meter > span { display: block; height: 100%; border-radius: inherit; background: #087d74; }
.evidence-completeness small { grid-column: 1 / -1; color: #667582; }
.rating-stars { display: none !important; }
.final-offer-check { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; margin: clamp(2rem, 5vw, 5rem); padding: clamp(1.4rem, 3vw, 2.4rem); border: 2px solid #122033; border-radius: 12px; background: #fff; }
.final-offer-check h2 { margin: .25rem 0 .6rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }

.limited-review-page .compact-hero { max-width: none; background: #f0f4f3; }
.compare-builder,
.calculator-shell { margin: clamp(2rem, 5vw, 5rem); padding: clamp(1.25rem, 3vw, 2.25rem); border: 1px solid #d5dfdc; border-radius: 12px; background: #fff; box-shadow: 0 18px 50px rgba(18,32,51,.07); }
.compare-selectors,
.calculator-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; align-items: end; }
.compare-selectors label,
.calculator-form label { display: grid; gap: .38rem; color: #3e4c5a; font-size: .82rem; font-weight: 800; }
.compare-selectors select,
.calculator-form input,
.calculator-form select { width: 100%; min-height: 46px; padding: .65rem .72rem; border: 1px solid #bccbc7; border-radius: 7px; background: #fff; color: #122033; font: inherit; }
.compare-status { margin: 1rem 0; color: #526273; }
.compare-table-wrap,
.research-table-wrap { overflow-x: auto; }
.compare-table,
.research-table-wrap table { width: 100%; border-collapse: collapse; background: #fff; }
.compare-table th,
.compare-table td,
.research-table-wrap th,
.research-table-wrap td { min-width: 180px; padding: .85rem; border: 1px solid #d6e0dd; text-align: left; vertical-align: top; }
.compare-table tbody th,
.research-table-wrap tbody th { color: #087d74; }
.compare-tray { position: fixed; left: 50%; bottom: 1rem; z-index: 90; display: flex; gap: 1rem; align-items: center; width: min(850px, calc(100vw - 2rem)); padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: #122033; color: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.25); transform: translateX(-50%); }
.compare-tray > div { display: grid; flex: 1; min-width: 0; }
.compare-tray span { overflow: hidden; color: #b8c8c5; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.compare-tray-clear { border: 0; background: transparent; color: #fff; text-decoration: underline; cursor: pointer; }
.button.is-selected { background: #d6eee8; color: #085f58; }

.calculator-results { margin-top: 1.5rem; padding: 1.2rem; border-radius: 9px; background: #edf6f4; }
.calculator-results dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.calculator-results dl > div { padding: .9rem; background: #fff; }
.calculator-results dt { color: #526273; font-size: .76rem; font-weight: 800; }
.calculator-results dd { margin: .2rem 0 0; font-size: 1.6rem; font-weight: 900; }
.calculator-results dd small { display: block; color: #667582; font-size: .68rem; font-weight: 500; }
.refund-record-checklist { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 5rem); background: #e6efed; }
.refund-record-checklist ul { columns: 2; margin: 0; }

.research-study,
.research-index-grid,
.tools-index-grid { max-width: 1500px; margin-inline: auto; }
.research-study .compact-hero { max-width: none; }
.research-study code { overflow-wrap: anywhere; }

.home-library-section { padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 6vw, 7rem); background: #eef5f3; }
.home-library-grid > a { min-height: 250px; }
.library-index-hero,
.library-family-hero { max-width: none; background: #122033; color: #fff; }
.library-index-hero p,
.library-family-hero p { color: #d5e2df; }
.library-family-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; max-width: 1500px; margin: 0 auto; padding: clamp(2rem, 5vw, 5rem); }
.library-family-card { display: flex; min-height: 255px; flex-direction: column; padding: 1.35rem; border: 1px solid #d5dfdc; border-radius: 12px; background: #fff; color: #122033; text-decoration: none; box-shadow: 0 14px 35px rgba(18,32,51,.05); }
.library-family-card:hover { border-color: #087d74; transform: translateY(-2px); }
.library-family-card > span { color: #087d74; font-size: .72rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.library-family-card > strong { margin: .8rem 0 .5rem; font-size: 1.45rem; }
.library-family-card > p { margin: 0; color: #526273; }
.library-family-card > small { margin-top: auto; padding-top: 1rem; color: #087d74; font-weight: 800; }
.library-directory-jump { display: flex; flex-wrap: wrap; gap: .55rem; max-width: 1500px; margin: 0 auto; padding: 1.3rem clamp(1rem, 5vw, 5rem); border-bottom: 1px solid #d9e2df; }
.library-directory-jump a { padding: .42rem .65rem; border-radius: 999px; background: #e8f2ef; color: #086c64; font-size: .78rem; font-weight: 800; text-decoration: none; }
.library-directory { max-width: 1500px; margin: 0 auto; padding: clamp(2rem, 5vw, 5rem); }
.library-directory-group { scroll-margin-top: 100px; margin-bottom: 3rem; }
.library-directory-group > p { color: #5a6977; }
.library-directory-group ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; padding: 0; list-style: none; }
.library-directory-group { content-visibility: auto; contain-intrinsic-size: auto 720px; }
.mega-panel-lean { grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr); }
.mega-panel-lean .mega-category-grid { grid-column: 2; }
.library-directory-group li a { display: grid; gap: .3rem; height: 100%; padding: 1rem; border: 1px solid #d8e1df; border-radius: 8px; background: #fff; color: #122033; text-decoration: none; }
.library-directory-group li a:hover { border-color: #087d74; }
.library-directory-group li span { color: #5a6977; font-size: .84rem; line-height: 1.45; }

.evidence-library-page { max-width: 1500px; margin: 0 auto; padding-bottom: clamp(3rem, 7vw, 7rem); }
.library-hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding: clamp(2rem, 5vw, 5rem); }
.library-hero h1 { max-width: 980px; margin: .55rem 0 1rem; font-size: clamp(2.5rem, 5.5vw, 5.5rem); line-height: .98; letter-spacing: -.045em; }
.library-source-note { display: grid; gap: .25rem; margin-top: 1.2rem; padding: 1rem; border-left: 4px solid #087d74; background: #edf6f4; color: #2b3c4d; }
.library-source-note span { font-size: .88rem; line-height: 1.5; }
.library-hero-image { margin: 0; padding: 1rem; border: 1px solid #d5dfdc; border-radius: 12px; background: #fff; }
.library-hero-image img { display: block; width: 100%; max-height: 430px; object-fit: contain; }
.library-hero-image figcaption { margin-top: .65rem; color: #667582; font-size: .75rem; }
.library-hero-image figcaption a { color: #087d74; }
.library-commercial-note,
.library-method-note,
.library-related { margin: 1.5rem clamp(1rem, 5vw, 5rem); padding: clamp(1.1rem, 2.4vw, 1.8rem); border-radius: 10px; }
.library-commercial-note { border: 1px solid #c7d9d5; background: #f0f8f6; }
.library-commercial-note p { max-width: 1050px; }
.evidence-library-page > .article-section,
.library-article-body,
.library-method-note,
.library-related { max-width: 1080px; margin-right: auto; margin-left: auto; }
.evidence-library-page > .article-section { padding: 1.5rem clamp(1rem, 5vw, 3rem); }
.library-article-body { padding: 0 clamp(1rem, 5vw, 3rem); }
.library-method-note { border: 1px solid #d6e0dd; background: #f7f9f8; }
.library-related { background: #122033; color: #fff; }
.library-related a { color: #7ee1d5; }
.library-related li { margin: .45rem 0; }
.library-fact-table dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; padding: 1px; border-radius: 9px; background: #d4dfdc; }
.library-fact-table dl > div { padding: 1rem; background: #fff; }
.library-fact-table dt { color: #087d74; font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.library-fact-table dd { margin: .35rem 0 0; line-height: 1.45; }
.library-table-wrap { overflow-x: auto; margin: 1rem 0; }
.library-table-wrap table { width: 100%; border-collapse: collapse; background: #fff; }
.library-table-wrap th,
.library-table-wrap td { min-width: 180px; padding: .8rem; border: 1px solid #d6e0dd; text-align: left; vertical-align: top; }
.library-table-wrap tbody th { color: #087d74; }
.library-alternative-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.library-alternative-grid article { padding: 1rem; border: 1px solid #d5dfdc; border-radius: 8px; background: #fff; }
.library-alternative-grid h3 { margin-top: 0; }
.shortlist-shell { margin: clamp(2rem, 5vw, 5rem); }
.shortlist-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.shortlist-option { display: grid; gap: .7rem; padding: 1rem; border: 1px solid #cbd8d5; border-radius: 10px; background: #fff; }
.shortlist-option legend { padding: 0 .35rem; font-weight: 900; }
.shortlist-option label { display: grid; gap: .3rem; font-size: .82rem; font-weight: 800; }
.shortlist-option input,
.shortlist-option select { min-height: 44px; padding: .6rem; border: 1px solid #bccbc7; border-radius: 7px; background: #fff; font: inherit; }
.shortlist-form > .button { grid-column: 1 / -1; justify-self: start; }
.shortlist-ranking { display: grid; gap: .6rem; padding: 0; list-style: none; }
.shortlist-ranking li { display: grid; grid-template-columns: 1fr auto; gap: .2rem .8rem; padding: .8rem; background: #fff; }
.shortlist-ranking small { grid-column: 1 / -1; color: #667582; }

@media (max-width: 1120px) {
  .site-header .nav-link .ui-icon { display: none; }
  .site-header .nav-link, .nav-search-toggle { padding-inline: .5rem; }
  .decision-dashboard dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-selectors, .calculator-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .library-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .home-hero-v2,
  .home-method-section,
  .final-offer-check,
  .refund-record-checklist,
  .library-hero { grid-template-columns: minmax(0, 1fr); }
  .home-hero-v2 h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .home-product-search > div { flex-direction: column; }
  .home-category-grid,
  .home-resource-grid { grid-template-columns: minmax(0, 1fr); }
  .library-family-grid,
  .library-directory-group ol,
  .library-fact-table dl,
  .library-alternative-grid,
  .shortlist-form { grid-template-columns: minmax(0, 1fr); }
  .decision-dashboard dl,
  .compare-selectors,
  .calculator-form,
  .calculator-results dl { grid-template-columns: minmax(0, 1fr); }
  .decision-dashboard .decision-wide { grid-column: auto; }
  .compare-tray { align-items: stretch; flex-wrap: wrap; }
  .compare-tray > div { flex-basis: 100%; }
  .refund-record-checklist ul { columns: 1; }
}

/* Evidence Library navigation contrast and keyboard focus states. */
.site-header .mega-panel {
  border-color: #657873;
  background: #ffffff;
  color: #111319;
}

.site-header .mega-copy,
.site-header .mega-category-link {
  border-color: #657873;
  background: #f7f8f4;
  color: #111319;
}

.site-header .mega-copy .eyebrow,
.site-header .mega-copy p,
.site-header .mega-category-link small {
  color: #435166;
}

.site-header .mega-all-link {
  background: #dceeea;
  color: #075f5a;
}

.site-header .mega-all-link:hover,
.site-header .mega-all-link:focus-visible {
  background: #cde4df;
  color: #064e4a;
  text-decoration: underline;
}

.site-header .mega-category-icon {
  border-color: #657873;
  background: #ffffff;
  color: #075f5a;
}

.site-header .mega-category-link:hover,
.site-header .mega-category-link:focus-visible {
  border-color: #5f746f;
  background: #dceeea;
  color: #111319;
}

.site-header .mega-category-link:hover .mega-category-icon,
.site-header .mega-category-link:focus-visible .mega-category-icon {
  border-color: #5f746f;
  background: #ffffff;
  color: #064e4a;
}

.site-header .nav-link:focus-visible,
.site-header .nav-trigger:focus-visible,
.site-header .mega-all-link:focus-visible,
.site-header .mega-category-link:focus-visible {
  outline: 3px solid #075f5a;
  outline-offset: 2px;
}

.site-header .mega-image:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -5px;
}

@media (max-width: 760px) {
  .site-header {
    background: #111319;
    color: #ffffff;
    border-bottom-color: #657873;
  }

  .site-header .brand span,
  .mobile-nav-toggle,
  .site-header .nav-link,
  .site-header .nav-trigger,
  .site-header .nav-search-toggle {
    color: #ffffff;
  }

  .mobile-nav-toggle,
  .site-header .nav-link,
  .site-header .nav-trigger,
  .site-header .nav-search-toggle {
    border-color: #657873;
    background: rgba(255, 255, 255, .08);
  }

  .site-header .nav-link:hover,
  .site-header .nav-link:focus-visible,
  .site-header .nav-trigger:hover,
  .site-header .nav-trigger:focus-visible,
  .site-header .nav-menu.is-open .nav-trigger,
  .site-header .nav-search-toggle:hover,
  .site-header .nav-search-toggle:focus-visible,
  .site-header.is-nav-open .mobile-nav-toggle {
    border-color: #ffffff;
    background: #ffffff;
    color: #111319;
  }

  .site-header .nav-trigger:hover .nav-trigger-indicator,
  .site-header .nav-trigger:focus-visible .nav-trigger-indicator,
  .site-header .nav-menu.is-open .nav-trigger-indicator {
    background: #dceeea;
    color: #064e4a;
  }

  .mobile-nav-toggle:focus-visible,
  .site-header .nav-link:focus-visible,
  .site-header .nav-trigger:focus-visible,
  .site-header .nav-search-toggle:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
  }
}
