:root {
  color-scheme: light;
  --theme-transition: 220ms ease;
  --bg-page-start: #fcfdfd;
  --bg-page-end: #f5f8fa;
  --header-bg: rgba(248, 250, 251, 0.9);
  --header-bg-solid: rgba(248, 250, 251, 0.98);
  --header-border: rgba(207, 216, 227, 0.85);
  --navy-950: #0b1930;
  --navy-900: #102343;
  --navy-800: #18345f;
  --navy-700: #2b4f80;
  --teal-700: #0f766e;
  --teal-600: #11827a;
  --teal-500: #12918b;
  --teal-100: #d7f3ef;
  --teal-050: #effaf8;
  --gray-950: #131a23;
  --gray-900: #1d2735;
  --gray-800: #344050;
  --gray-700: #506074;
  --gray-600: #66778e;
  --gray-500: #7b8ca2;
  --gray-400: #9caabd;
  --gray-300: #cfd8e3;
  --gray-200: #e5ebf1;
  --gray-100: #f3f6f8;
  --gray-050: #f8fafb;
  --white: #ffffff;
  --amber-700: #a75b05;
  --amber-100: #fff0cc;
  --green-700: #146341;
  --green-100: #e8f8ef;
  --red-700: #9c2f2f;
  --red-100: #fce9e9;
  --shadow-sm: 0 10px 30px rgba(16, 35, 67, 0.08);
  --shadow-lg: 0 18px 60px rgba(16, 35, 67, 0.14);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --max-page: 1180px;
  --max-article: 760px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg-page-start: #0e1623;
  --bg-page-end: #0a101a;
  --header-bg: rgba(13, 20, 33, 0.86);
  --header-bg-solid: rgba(13, 20, 33, 0.95);
  --header-border: rgba(111, 134, 163, 0.28);
  --navy-950: #eaf2ff;
  --navy-900: #d7e7ff;
  --navy-800: #c2d8f8;
  --navy-700: #abc5e8;
  --teal-700: #68d7ce;
  --teal-600: #56c7be;
  --teal-500: #44b4ac;
  --teal-100: #15353a;
  --teal-050: #102a2d;
  --gray-950: #f3f7ff;
  --gray-900: #e2ebf7;
  --gray-800: #ccd8e8;
  --gray-700: #b6c4d8;
  --gray-600: #95a7bf;
  --gray-500: #7e91ab;
  --gray-400: #657991;
  --gray-300: #3f4e63;
  --gray-200: #2e3a4c;
  --gray-100: #1f2a3a;
  --gray-050: #17202e;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(18, 145, 139, 0.1), transparent 22rem),
    linear-gradient(180deg, var(--bg-page-start) 0%, var(--bg-page-end) 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-800);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(18, 145, 139, 0.55);
  outline-offset: 2px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: var(--header-bg-solid);
  }
}

.site-header__inner,
.page-section,
.article-shell,
.footer__inner {
  width: min(calc(100% - 2rem), var(--max-page));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy-900);
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-600));
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__tag {
  margin-top: 0.18rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 0.8rem;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 0.8rem;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  font-weight: 700;
}

.theme-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  font-size: 0.95rem;
  line-height: 1;
}

.theme-toggle__label {
  line-height: 1;
}

.nav-toggle:hover {
  border-color: var(--teal-500);
}

.theme-toggle:hover {
  border-color: var(--teal-500);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__links a {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gray-700);
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.95rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-700));
  color: var(--white);
}

.button--primary:hover {
  color: var(--white);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--gray-300);
  color: var(--navy-900);
}

:root[data-theme="dark"] .button--secondary {
  background: rgba(255, 255, 255, 0.08);
}

.page-section {
  padding-block: var(--space-16);
}

.page-section--tight {
  padding-block: var(--space-12);
}

.page-hero {
  width: min(calc(100% - 2rem), var(--max-page));
  margin: var(--space-10) auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.24), transparent 26rem),
    linear-gradient(180deg, rgba(16, 35, 67, 0.98) 0%, rgba(19, 48, 86, 0.96) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

body[data-page="reviews"] .page-hero {
  margin-top: clamp(3rem, 5vw, 3.75rem);
}

.page-hero__eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.78rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-hero__layout {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.8fr);
  align-items: end;
  margin-top: var(--space-5);
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero__title span {
  color: #a5fff2;
}

.page-hero__lede {
  margin: var(--space-5) 0 0;
  max-width: 42rem;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-panel {
  padding: var(--space-6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel h2,
.hero-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-panel p,
.hero-panel li {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: var(--space-5);
  color: var(--gray-500);
  font-size: 0.96rem;
}

.meta-row--light {
  color: rgba(255, 255, 255, 0.78);
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: var(--space-5);
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(17, 130, 122, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-hero .product-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.best-for-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--teal-050) 0%, var(--teal-100) 100%);
  border: 1px solid rgba(17, 130, 122, 0.12);
  color: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero .best-for-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.product-token {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

th.product-token,
td.product-token {
  display: table-cell;
  white-space: nowrap;
}

.product-token__icon {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.7rem;
  box-shadow: 0 10px 24px rgba(16, 35, 67, 0.14);
}

.product-token--chip .product-token__icon,
.product-token--table .product-token__icon,
.product-token--kicker .product-token__icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.45rem;
  box-shadow: 0 7px 16px rgba(16, 35, 67, 0.12);
}

.product-token--heading {
  align-items: flex-start;
}

th.product-token .product-token__icon,
td.product-token .product-token__icon {
  display: inline-block;
  margin-right: 0.55rem;
  vertical-align: middle;
}

.grid-3,
.grid-4,
.cards-grid,
.topic-grid,
.story-grid,
.summary-grid,
.score-grid,
.related-grid {
  display: grid;
  gap: var(--space-6);
}

.grid-3,
.cards-grid,
.summary-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy-900);
}

.section-heading p {
  max-width: 38rem;
  margin: 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.card,
.story-card,
.topic-card,
.summary-card,
.sidebar-card,
.table-card,
.callout,
.score-card,
.review-card,
.stat-card,
.cta-panel,
.page-card {
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card,
.story-card,
.topic-card,
.summary-card,
.review-card,
.page-card {
  padding: var(--space-6);
}

.story-card,
.topic-card,
.summary-card,
.page-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.story-card:hover,
.topic-card:hover,
.summary-card:hover,
.page-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 130, 122, 0.28);
  box-shadow: 0 18px 34px rgba(16, 35, 67, 0.1);
}

.card__eyebrow,
.story-card__eyebrow,
.topic-card__eyebrow,
.summary-card__eyebrow,
.article-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-4);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.story-card h3,
.topic-card h3,
.summary-card h3,
.page-card h3,
.card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.story-card p,
.topic-card p,
.summary-card p,
.page-card p,
.card p {
  margin: 0 0 1rem;
  color: var(--gray-700);
}

.story-card__meta,
.topic-card__meta,
.summary-card__meta {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 600;
}

.summary-card .best-for-badge,
.topic-card .best-for-badge,
.story-card .best-for-badge {
  margin-bottom: var(--space-4);
}

.workflow-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-6);
  border: 1px solid rgba(16, 35, 67, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(16, 35, 67, 0.98) 0%, rgba(19, 48, 86, 0.96) 100%);
  box-shadow: var(--shadow-lg);
}

.workflow-card__figure img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.25rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 42px rgba(16, 35, 67, 0.18);
}

.workflow-card__copy {
  display: grid;
  align-content: start;
  gap: var(--space-4);
}

.workflow-card__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.02;
  color: var(--white);
}

.workflow-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.workflow-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.workflow-list strong {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-display);
}

.workflow-list span {
  color: rgba(255, 255, 255, 0.84);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.stat-card {
  padding: var(--space-5);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--navy-900);
}

.stat-card span {
  color: var(--gray-700);
}

.page-hero--home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.3), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(12, 29, 54, 0.98) 0%, rgba(14, 38, 71, 0.98) 100%);
}

.page-hero--home::before {
  content: "";
  position: absolute;
  inset: 1.2rem 1.2rem auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-hero__layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.85fr);
  align-items: stretch;
}

.home-hero__copy,
.hero-panel--home {
  position: relative;
  z-index: 1;
}

.home-hero__kicker,
.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 var(--space-4);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.home-signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-lg) - 0.2rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.home-signal-bar > div {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  background: rgba(5, 14, 27, 0.22);
}

.home-signal-bar strong {
  font-size: 0.98rem;
  color: var(--white);
}

.home-signal-bar span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.hero-panel--home {
  display: grid;
  align-content: start;
  gap: var(--space-4);
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.07) 100%);
}

.hero-panel--home h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.decision-ladder {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-ladder li {
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.decision-ladder li:first-child {
  padding-top: 0;
  border-top: 0;
}

.decision-ladder strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.05;
  color: var(--white);
}

.decision-ladder span {
  color: rgba(255, 255, 255, 0.8);
}

.decision-ladder a {
  color: #baf8f0;
}

.hero-panel__footer {
  margin-top: auto;
  padding-top: var(--space-4);
}

.section-heading--stacked {
  align-items: start;
}

.decision-workbench {
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
  gap: var(--space-6);
  align-items: start;
}

.decision-workbench__lead {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(16, 35, 67, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 252, 0.98) 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.decision-workbench__lead h3,
.comparison-spotlight h3,
.review-feature h3,
.principle-panel h3,
.faq-item h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.decision-workbench__lead p,
.comparison-spotlight p,
.review-feature p,
.principle-panel p,
.faq-item p {
  margin: 0;
  color: var(--gray-700);
}

.workbench-steps {
  display: grid;
  gap: 1rem;
  margin: var(--space-6) 0;
  padding: 0;
  list-style: none;
}

.workbench-steps li {
  display: grid;
  gap: 0.28rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(17, 130, 122, 0.16);
}

.workbench-steps strong {
  font-size: 1rem;
  color: var(--navy-900);
}

.workbench-steps span {
  color: var(--gray-700);
}

.decision-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.decision-path {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.25rem, 2.8vw, 1.6rem);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.decision-path:hover,
.comparison-rail__item:hover,
.review-ledger__item:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 130, 122, 0.28);
  box-shadow: 0 18px 34px rgba(16, 35, 67, 0.1);
}

.decision-path--primary {
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 250, 0.98) 100%);
}

.decision-path--wide {
  grid-column: 1 / -1;
}

.decision-path__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.decision-path h3,
.comparison-rail__item h3,
.review-ledger__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.decision-path p,
.comparison-rail__item p,
.review-ledger__item p {
  margin: 0;
  color: var(--gray-700);
}

.decision-path__meta,
.comparison-rail__meta,
.review-ledger__meta {
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 600;
}

.comparison-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: var(--space-6);
  align-items: start;
}

.comparison-spotlight {
  padding: clamp(1.6rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(13, 28, 50, 0.98) 0%, rgba(18, 41, 74, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.comparison-spotlight .card__eyebrow,
.comparison-spotlight .product-chip,
.cta-panel--home .button--secondary {
  color: var(--white);
}

.comparison-spotlight p {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-spotlight .product-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.comparison-spotlight__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.comparison-spotlight__split > div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.comparison-spotlight__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.comparison-rail,
.review-ledger,
.faq-stack {
  display: grid;
  gap: var(--space-4);
}

.comparison-rail__item,
.review-ledger__item,
.principle-panel,
.faq-item {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: var(--space-6);
  align-items: start;
}

.review-feature {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(16, 35, 67, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.15), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 252, 0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.review-feature__list {
  display: grid;
  gap: 0.85rem;
  margin: var(--space-6) 0;
  padding: 0;
  list-style: none;
}

.review-feature__list li {
  padding-left: 1rem;
  border-left: 2px solid rgba(17, 130, 122, 0.16);
  color: var(--gray-700);
}

.review-ledger__item .kicker {
  margin-bottom: 0;
  color: var(--teal-700);
}

.principles-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.principle-stat {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 1.3rem;
  border-top: 3px solid rgba(17, 130, 122, 0.2);
  background: rgba(255, 255, 255, 0.76);
}

.principle-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--navy-900);
}

.principle-stat span {
  color: var(--gray-700);
}

.principles-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.cta-panel--home {
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(14, 33, 59, 0.98) 0%, rgba(18, 44, 78, 0.98) 100%);
  color: var(--white);
}

.cta-panel--home h2,
.cta-panel--home h3,
.cta-panel--home p {
  color: inherit;
}

.cta-panel--home .button--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem);
  gap: var(--space-8);
  align-items: start;
  padding-block: var(--space-12) var(--space-16);
}

body[data-page="reviews"] .article-shell {
  padding-top: clamp(3.4rem, 4.6vw, 4rem);
}

.article-main {
  min-width: 0;
}

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

.article-sidebar {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: var(--space-5);
}

body[data-page="reviews"] .article-sidebar {
  top: 6.15rem;
}

.sidebar-card {
  padding: var(--space-5);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.05;
  color: var(--navy-900);
}

.sidebar-list,
.link-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-list a,
.link-list a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
}

.sidebar-list a:hover,
.link-list a:hover {
  color: var(--teal-700);
}

.article-body {
  max-width: var(--max-article);
}

.article-body h2 {
  margin: 2.7rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy-900);
}

.article-body h3 {
  margin: 1.9rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.article-body p,
.article-body li {
  font-size: 1.08rem;
  color: var(--gray-900);
}

.article-body p {
  margin: 0 0 1.1rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.lede {
  margin-bottom: var(--space-6);
  font-size: 1.18rem;
  color: var(--gray-700);
}

.callout {
  padding: var(--space-6);
  margin-block: var(--space-6);
}

.callout h2,
.callout h3,
.callout p:last-child {
  margin-bottom: 0;
}

.callout--disclosure {
  background: linear-gradient(180deg, #fff8e9 0%, #fff3d7 100%);
  border-color: #f2ddb0;
}

.callout--disclosure strong,
.callout--warning strong {
  color: var(--amber-700);
}

.callout--warning {
  background: linear-gradient(180deg, #fff5db 0%, #ffe9bf 100%);
  border-color: #f1ce86;
}

.callout--verdict {
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.14), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
  border-color: rgba(17, 130, 122, 0.2);
}

.callout--verdict .verdict-grid > div {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 130, 122, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.callout--muted {
  background: var(--gray-050);
}

.kicker {
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
}

.verdict-grid,
.two-col,
.pros-cons,
.review-grid,
.pick-grid,
.decision-grid {
  display: grid;
  gap: var(--space-5);
}

.verdict-grid,
.two-col,
.pros-cons,
.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.comparison-duel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.product-panel {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.84);
}

.product-panel__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.product-panel h2 {
  margin: 0 0 0.65rem;
}

.product-panel p:last-child {
  margin-bottom: 0;
}

.score-card {
  padding: var(--space-6);
}

.product-figure {
  margin: var(--space-6) 0;
}

.product-figure__frame {
  padding: var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.12), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-figure img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  border: 1px solid rgba(207, 216, 227, 0.9);
}

.product-figure figcaption {
  margin-top: 0.85rem;
  color: var(--gray-600);
  font-size: 0.98rem;
}

.score-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 10rem) 1fr;
  gap: var(--space-6);
  align-items: center;
}

.score-card__total {
  display: grid;
  place-items: center;
  min-height: 10rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}

.score-card__total strong {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
}

.score-card__total span {
  color: rgba(255, 255, 255, 0.76);
}

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

.score-item {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: var(--gray-050);
}

.score-item__label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--gray-800);
}

.score-item__track {
  height: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--gray-200);
  overflow: hidden;
}

.score-item__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-600), var(--navy-700));
}

.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.icon-list li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.icon-list li::before {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.icon-list--good li::before {
  content: "+";
  background: var(--green-100);
  color: var(--green-700);
}

.icon-list--bad li::before {
  content: "-";
  background: var(--red-100);
  color: var(--red-700);
}

.snapshot {
  display: grid;
  gap: 0.9rem;
  margin-block: var(--space-6);
}

.snapshot__row {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr;
  gap: var(--space-4);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.snapshot__row:last-child {
  border-bottom: none;
}

.snapshot__label {
  color: var(--gray-600);
  font-weight: 700;
}

.snapshot__value {
  color: var(--gray-900);
}

.table-card {
  padding: var(--space-5);
  overflow: hidden;
}

.table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.table-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.5rem;
  pointer-events: none;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}

caption {
  padding: 1rem;
  text-align: left;
  color: var(--gray-700);
}

thead {
  background: var(--navy-900);
  color: var(--white);
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-200);
}

th {
  font-size: 0.93rem;
  font-weight: 700;
}

tbody tr:nth-child(even) {
  background: var(--gray-050);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody td[data-product] {
  font-weight: 700;
  color: var(--navy-900);
}

.check {
  color: var(--green-700);
  font-weight: 700;
}

.neutral {
  color: var(--amber-700);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: var(--space-4);
}

.u-justify-center {
  justify-content: center;
}

.u-mt-6 {
  margin-top: 1.5rem;
}

.u-mt-8 {
  margin-top: 2rem;
}

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

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

.chip {
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--gray-800);
  font-weight: 600;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.step-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
}

.step-list article::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.step-list h3 {
  margin: 0 0 0.45rem;
}

.step-list p {
  margin: 0;
  color: var(--gray-700);
}

.cta-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-8);
  background:
    radial-gradient(circle at top right, rgba(18, 145, 139, 0.18), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
}

.cta-panel h2,
.cta-panel h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.02;
}

.cta-panel p {
  margin: 0;
  color: var(--gray-700);
}

.footer {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 246, 248, 0.95) 100%);
}

.footer__inner {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 0.9fr));
}

.footer__brand p,
.footer__column p {
  color: var(--gray-700);
}

.footer h2,
.footer h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--navy-900);
}

.footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__column a {
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
}

.footer__meta {
  margin-top: var(--space-3);
  color: var(--gray-600);
  font-size: 0.95rem;
}

.editorial-note {
  margin-top: var(--space-6);
}

.editorial-note p:last-child {
  margin-bottom: 0;
}

.align-start {
  align-items: start;
}

.muted {
  color: var(--gray-700);
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.page-404 {
  min-height: calc(100vh - 13rem);
  display: grid;
  place-items: center;
}

.page-404 .page-card {
  max-width: 44rem;
  text-align: center;
}

.page-404 h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.95;
}

:root.is-theme-switching body,
:root.is-theme-switching .site-header,
:root.is-theme-switching .site-nav__links,
:root.is-theme-switching .site-nav__links a,
:root.is-theme-switching .theme-toggle,
:root.is-theme-switching .nav-toggle,
:root.is-theme-switching .card,
:root.is-theme-switching .story-card,
:root.is-theme-switching .topic-card,
:root.is-theme-switching .summary-card,
:root.is-theme-switching .sidebar-card,
:root.is-theme-switching .table-card,
:root.is-theme-switching .callout,
:root.is-theme-switching .score-card,
:root.is-theme-switching .review-card,
:root.is-theme-switching .stat-card,
:root.is-theme-switching .cta-panel,
:root.is-theme-switching .page-card,
:root.is-theme-switching .decision-workbench__lead,
:root.is-theme-switching .decision-path,
:root.is-theme-switching .comparison-rail__item,
:root.is-theme-switching .review-feature,
:root.is-theme-switching .review-ledger__item,
:root.is-theme-switching .principle-stat,
:root.is-theme-switching .principle-panel,
:root.is-theme-switching .faq-item,
:root.is-theme-switching .product-panel,
:root.is-theme-switching .step-list article,
:root.is-theme-switching .table-scroll,
:root.is-theme-switching .product-figure__frame {
  transition:
    background-color var(--theme-transition),
    color var(--theme-transition),
    border-color var(--theme-transition),
    box-shadow var(--theme-transition);
}

:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .nav-toggle {
  background: rgba(20, 32, 48, 0.86);
  color: var(--gray-900);
}

:root[data-theme="dark"] .site-nav__links a:hover,
:root[data-theme="dark"] .site-nav__links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--gray-300);
}

:root[data-theme="dark"] .card,
:root[data-theme="dark"] .story-card,
:root[data-theme="dark"] .topic-card,
:root[data-theme="dark"] .summary-card,
:root[data-theme="dark"] .sidebar-card,
:root[data-theme="dark"] .table-card,
:root[data-theme="dark"] .callout,
:root[data-theme="dark"] .score-card,
:root[data-theme="dark"] .review-card,
:root[data-theme="dark"] .stat-card,
:root[data-theme="dark"] .cta-panel,
:root[data-theme="dark"] .page-card,
:root[data-theme="dark"] .decision-workbench__lead,
:root[data-theme="dark"] .decision-path,
:root[data-theme="dark"] .comparison-rail__item,
:root[data-theme="dark"] .review-feature,
:root[data-theme="dark"] .review-ledger__item,
:root[data-theme="dark"] .principle-stat,
:root[data-theme="dark"] .principle-panel,
:root[data-theme="dark"] .faq-item,
:root[data-theme="dark"] .product-panel,
:root[data-theme="dark"] .step-list article,
:root[data-theme="dark"] .editorial-note {
  background: rgba(20, 30, 44, 0.88);
}

:root[data-theme="dark"] .callout--verdict {
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.2), transparent 18rem),
    linear-gradient(180deg, #102032 0%, #0d1828 100%);
}

:root[data-theme="dark"] .callout--verdict .verdict-grid > div {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

:root[data-theme="dark"] .topic-card .product-chip,
:root[data-theme="dark"] .summary-card .product-chip,
:root[data-theme="dark"] .story-card .product-chip,
:root[data-theme="dark"] .decision-path .product-chip,
:root[data-theme="dark"] .comparison-rail__item .product-chip,
:root[data-theme="dark"] .product-panel .product-chip {
  background: rgba(244, 248, 253, 0.92);
  border-color: rgba(26, 47, 78, 0.2);
  color: #20344f;
}

:root[data-theme="dark"] .page-hero .product-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

:root[data-theme="dark"] .decision-path--primary,
:root[data-theme="dark"] .review-feature,
:root[data-theme="dark"] .decision-workbench__lead {
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(20, 30, 44, 0.94) 0%, rgba(16, 24, 37, 0.94) 100%);
}

:root[data-theme="dark"] .callout--warning,
:root[data-theme="dark"] .callout--disclosure {
  border-color: rgba(167, 91, 5, 0.35);
  background: linear-gradient(180deg, rgba(167, 91, 5, 0.2) 0%, rgba(167, 91, 5, 0.12) 100%);
}

:root[data-theme="dark"] .product-figure__frame {
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.18), transparent 18rem),
    linear-gradient(180deg, #14273a 0%, #101f31 100%);
}

:root[data-theme="dark"] .footer {
  border-top-color: rgba(111, 134, 163, 0.35);
  background:
    radial-gradient(circle at top right, rgba(68, 180, 172, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(13, 24, 39, 0.96) 0%, rgba(10, 18, 30, 0.98) 100%);
}

:root[data-theme="dark"] .footer h2,
:root[data-theme="dark"] .footer h3 {
  color: #f0f6ff;
}

:root[data-theme="dark"] .footer__brand p,
:root[data-theme="dark"] .footer__column p,
:root[data-theme="dark"] .footer__meta {
  color: #d5e2f2;
}

:root[data-theme="dark"] .footer__column a,
:root[data-theme="dark"] .footer__brand a,
:root[data-theme="dark"] .footer__meta a {
  color: #8de6df;
}

:root[data-theme="dark"] .footer__column a:hover,
:root[data-theme="dark"] .footer__brand a:hover,
:root[data-theme="dark"] .footer__meta a:hover {
  color: #b5fff8;
}

:root[data-theme="dark"] .table-scroll {
  background: #101b2c;
}

:root[data-theme="dark"] .table-scroll::after {
  background: linear-gradient(to left, rgba(16, 27, 44, 0.95), rgba(16, 27, 44, 0));
}

@media (max-width: 1080px) {
  .page-hero__layout,
  .home-hero__layout,
  .article-shell,
  .decision-workbench,
  .comparison-stage,
  .review-shelf,
  .principles-columns,
  .footer__inner,
  .workflow-card,
  .grid-4,
  .topic-grid,
  .story-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .cards-grid,
  .summary-grid,
  .related-grid,
  .metric-grid,
  .verdict-grid,
  .comparison-duel,
  .two-col,
  .pros-cons,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    min-height: 4rem;
  }

  .site-nav {
    position: relative;
    gap: 0.55rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1;
  }

  .theme-toggle {
    padding-inline: 0.68rem;
    position: relative;
    z-index: 0;
  }

  .theme-toggle__label {
    display: none;
  }

  .site-nav__links {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    display: none;
    min-width: 18rem;
    padding: 0.55rem;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  :root[data-theme="dark"] .site-nav__links {
    background: rgba(13, 23, 37, 0.98);
  }

  .site-nav__links.is-open {
    display: flex;
  }

  .site-nav__links a {
    border-radius: var(--radius-md);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-section,
  .article-shell {
    padding-block: var(--space-10);
  }

  .grid-3,
  .cards-grid,
  .summary-grid,
  .related-grid,
  .decision-paths,
  .home-signal-bar,
  .principles-band,
  .comparison-duel,
  .comparison-spotlight__split,
  .grid-4,
  .topic-grid,
  .story-grid,
  .metric-grid,
  .verdict-grid,
  .two-col,
  .pros-cons,
  .review-grid,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .score-card__layout,
  .snapshot__row {
    grid-template-columns: 1fr;
  }

  .article-body p,
  .article-body li {
    font-size: 1.02rem;
  }

  .page-hero {
    margin-top: var(--space-6);
  }

  .hero-panel--home,
  .decision-workbench__lead,
  .comparison-spotlight,
  .review-feature,
  .principle-panel,
  .faq-item {
    padding: 1.2rem;
  }

  body[data-page="reviews"] .page-hero {
    margin-top: var(--space-8);
  }

  body[data-page="reviews"] .article-shell {
    padding-top: var(--space-12);
  }

  .page-hero__title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .home-signal-bar > div {
    padding: 0.95rem 1rem;
  }

  .product-token__icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .product-token--chip .product-token__icon,
  .product-token--table .product-token__icon,
  .product-token--kicker .product-token__icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .workflow-card__figure {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .workflow-card__figure img {
    min-width: 38rem;
  }

  table {
    min-width: 30rem;
  }
}

/* Premium editorial redesign overrides */

:root {
  --bg-page-start: #f4eee4;
  --bg-page-end: #ebe2d3;
  --header-bg: rgba(243, 237, 228, 0.84);
  --header-bg-solid: rgba(243, 237, 228, 0.97);
  --header-border: rgba(51, 66, 86, 0.14);
  --navy-950: #0d1826;
  --navy-900: #17263d;
  --navy-800: #233754;
  --navy-700: #385270;
  --teal-700: #1d6f69;
  --teal-600: #277f77;
  --teal-500: #309287;
  --teal-100: #d9ece7;
  --teal-050: #edf7f4;
  --gray-950: #18202a;
  --gray-900: #263241;
  --gray-800: #405062;
  --gray-700: #596a7f;
  --gray-600: #738398;
  --gray-500: #8a98ab;
  --gray-400: #a4b0bf;
  --gray-300: #cfd5dd;
  --gray-200: #dfdfdd;
  --gray-100: #f3ede4;
  --gray-050: #faf7f2;
  --white: #fffdfa;
  --amber-700: #8b6430;
  --amber-100: #f4e7cf;
  --shadow-sm: 0 16px 36px rgba(27, 33, 41, 0.07);
  --shadow-lg: 0 28px 70px rgba(24, 31, 41, 0.12);
  --radius-sm: 0.7rem;
  --radius-md: 0.95rem;
  --radius-lg: 1.2rem;
  --max-page: 1240px;
  --max-article: 800px;
  --line-soft: rgba(23, 38, 61, 0.14);
  --line-strong: rgba(23, 38, 61, 0.24);
  --surface-paper: rgba(255, 252, 247, 0.78);
  --surface-paper-strong: rgba(255, 252, 247, 0.94);
  --accent-brass: #98743b;
}

:root[data-theme="dark"] {
  --bg-page-start: #0c1218;
  --bg-page-end: #0a0f14;
  --header-bg: rgba(10, 15, 22, 0.84);
  --header-bg-solid: rgba(10, 15, 22, 0.97);
  --header-border: rgba(122, 139, 160, 0.18);
  --navy-950: #edf4ff;
  --navy-900: #dde8f6;
  --navy-800: #c8d7ea;
  --navy-700: #abbdd2;
  --teal-700: #79d6cc;
  --teal-600: #67c7bd;
  --teal-500: #52b4aa;
  --teal-100: #163239;
  --teal-050: #10262d;
  --gray-950: #f2f6fd;
  --gray-900: #dce7f4;
  --gray-800: #c2cfdf;
  --gray-700: #aab9cd;
  --gray-600: #91a4ba;
  --gray-500: #768aa2;
  --gray-400: #61748c;
  --gray-300: #344150;
  --gray-200: #27313e;
  --gray-100: #17202a;
  --gray-050: #121922;
  --amber-700: #d8b578;
  --amber-100: #44351b;
  --shadow-sm: 0 20px 42px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.4);
  --line-soft: rgba(169, 186, 207, 0.18);
  --line-strong: rgba(169, 186, 207, 0.3);
  --surface-paper: rgba(19, 27, 38, 0.8);
  --surface-paper-strong: rgba(18, 26, 36, 0.94);
  --accent-brass: #d8b578;
}

body {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(39, 127, 119, 0.12), transparent 26rem),
    radial-gradient(circle at bottom right, rgba(152, 116, 59, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--bg-page-start) 0%, var(--bg-page-end) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(to bottom, rgba(23, 38, 61, 0.18) 1px, transparent 1px);
  background-size: 100% 3.2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08));
}

:root[data-theme="dark"] body::before {
  opacity: 0.08;
  background-image: linear-gradient(to bottom, rgba(214, 227, 245, 0.14) 1px, transparent 1px);
}

a {
  color: var(--navy-800);
  transition: color 180ms ease;
}

a:hover {
  color: var(--teal-700);
}

.site-header {
  border-bottom-color: var(--header-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
}

.site-header__inner {
  min-height: 5.15rem;
  gap: var(--space-8);
}

.brand {
  gap: 1rem;
}

.brand__mark {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(245, 239, 229, 0.95));
  border: 1px solid var(--line-soft);
  box-shadow: none;
  overflow: hidden;
}

.brand__mark img {
  width: 1.85rem;
  height: 1.85rem;
}

.brand__text {
  gap: 0.12rem;
}

.brand__eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.brand__name {
  font-size: 1.55rem;
}

.brand__tag {
  margin-top: 0;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}

.site-nav {
  gap: 0.9rem;
}

.site-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav__links {
  gap: 0.85rem;
}

.site-nav__links a {
  position: relative;
  padding: 0.2rem 0;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  background: none;
  box-shadow: none;
  color: var(--navy-900);
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.theme-toggle,
.nav-toggle {
  border-color: var(--line-soft);
  background: var(--surface-paper-strong);
  box-shadow: none;
  border-radius: 999px;
}

.button {
  min-height: 3.1rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  box-shadow: none;
}

.button--primary {
  background: linear-gradient(135deg, #14243a 0%, #173d46 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.button--secondary {
  background: rgba(255, 252, 247, 0.7);
  border-color: var(--line-soft);
}

.page-section {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
}

.page-section--tight {
  padding-block: clamp(3rem, 5vw, 4.75rem);
}

.section-heading {
  margin-bottom: clamp(1.85rem, 4vw, 3rem);
}

.section-heading h2,
.section-heading h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.section-heading p {
  max-width: 42rem;
  font-size: 1.08rem;
}

.card__eyebrow,
.story-card__eyebrow,
.topic-card__eyebrow,
.summary-card__eyebrow,
.article-tag {
  letter-spacing: 0.14em;
  color: var(--accent-brass);
}

.card,
.story-card,
.topic-card,
.summary-card,
.review-card,
.page-card,
.sidebar-card,
.table-card,
.callout,
.score-card,
.stat-card,
.cta-panel {
  border-color: var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.9) 0%, rgba(248, 241, 231, 0.78) 100%);
  box-shadow: none;
}

.story-card,
.topic-card,
.summary-card,
.page-card,
.review-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.story-card:hover,
.topic-card:hover,
.summary-card:hover,
.page-card:hover,
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: var(--line-strong);
}

.page-hero {
  width: min(calc(100% - 2.5rem), var(--max-page));
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
  padding: 0 0 var(--space-8);
  border-radius: 0;
  border-bottom: 1px solid var(--line-strong);
  background: none;
  box-shadow: none;
  color: var(--navy-900);
}

.page-hero__eyebrow,
.pill {
  padding: 0.34rem 0.72rem;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--gray-700);
}

.page-hero__layout {
  margin-top: var(--space-6);
  align-items: start;
  grid-template-columns: minmax(0, 1.24fr) minmax(17rem, 23rem);
  gap: clamp(2rem, 4vw, 4rem);
}

.page-hero__title {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
  color: var(--navy-900);
}

.page-hero__title span {
  color: var(--teal-700);
}

.page-hero__lede {
  max-width: 44rem;
  font-size: clamp(1.1rem, 1.8vw, 1.24rem);
  color: var(--gray-700);
}

.meta-row {
  gap: 0.55rem 1.15rem;
  color: var(--gray-600);
}

.meta-row span {
  position: relative;
  padding-right: 0.95rem;
}

.meta-row span::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: var(--line-strong);
  transform: translateY(-50%);
}

.meta-row span:last-child::after {
  display: none;
}

.meta-row--light {
  color: rgba(255, 255, 255, 0.74);
}

.meta-row--light span::after {
  background: rgba(255, 255, 255, 0.22);
}

.hero-panel {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.86) 0%, rgba(246, 239, 229, 0.84) 100%);
  box-shadow: none;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), rgba(152, 116, 59, 0.54));
}

.hero-panel h2,
.hero-panel h3 {
  margin-bottom: 0.7rem;
  color: var(--navy-900);
}

.hero-panel p,
.hero-panel li {
  color: var(--gray-700);
}

.hero-panel__source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-panel__source-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-chip {
  background: var(--surface-paper-strong);
  border-color: var(--line-soft);
  color: var(--gray-800);
  box-shadow: none;
}

.page-hero--home .product-chip,
.comparison-spotlight .product-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.best-for-badge {
  border-color: rgba(23, 38, 61, 0.12);
  background: rgba(39, 127, 119, 0.07);
  color: var(--navy-900);
}

.page-hero--home {
  width: calc(100% - 2rem);
  max-width: none;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.75rem) min(5vw, 3rem) clamp(2.4rem, 4vw, 3.5rem);
  border: 0;
  border-radius: 0 0 1.75rem 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(82, 180, 170, 0.22), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #0d1826 0%, #172538 58%, #103844 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero--home::before {
  content: "";
  position: absolute;
  inset: 1.2rem 1.2rem auto auto;
  width: min(28vw, 20rem);
  height: min(28vw, 20rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero--home .page-hero__eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.page-hero--home .page-hero__layout {
  margin-top: var(--space-4);
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.page-hero--home .page-hero__title,
.page-hero--home .page-hero__title span {
  color: var(--white);
}

.page-hero--home .page-hero__title span {
  color: #9de4dc;
}

.page-hero--home .page-hero__lede {
  color: rgba(245, 248, 252, 0.82);
}

.home-hero__kicker,
.hero-panel__eyebrow {
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
}

.home-signal-bar {
  margin-top: clamp(1.8rem, 3vw, 2.7rem);
  padding-block: 1.15rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  gap: 1.25rem;
}

.home-signal-bar > div {
  padding: 0 1rem 0 0;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-signal-bar > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-signal-bar strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.home-signal-bar span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.hero-panel--home {
  min-height: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-panel--home::before {
  background: linear-gradient(90deg, rgba(157, 228, 220, 0.9), rgba(255, 255, 255, 0.28));
}

.hero-panel--home h2,
.hero-panel--home p,
.hero-panel--home li,
.hero-panel--home span {
  color: rgba(245, 248, 252, 0.84);
}

.hero-panel--home h2,
.hero-panel--home .decision-ladder strong {
  color: var(--white);
}

.hero-panel--home .best-for-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-panel--home .hero-panel__source-list span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(245, 248, 252, 0.8);
}

.decision-workbench {
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.decision-workbench__lead {
  position: sticky;
  top: 7rem;
  padding: 0 1.5rem 0 0;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.decision-workbench__lead h3 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.workbench-steps {
  margin: var(--space-8) 0;
  gap: 1.1rem;
}

.workbench-steps li {
  padding-left: 1.15rem;
  border-left: 1px solid var(--line-strong);
}

.decision-paths {
  gap: 0;
}

.decision-path {
  position: relative;
  padding: 1.25rem 0 1.35rem 1.2rem;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.decision-path::before,
.comparison-rail__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(23, 38, 61, 0.16), rgba(39, 127, 119, 0.65));
  opacity: 0.55;
  transition: opacity 180ms ease, transform 180ms ease;
}

.decision-path:hover,
.comparison-rail__item:hover,
.review-ledger__item:hover {
  transform: translateX(5px);
  box-shadow: none;
  border-color: var(--line-strong);
}

.decision-path:hover::before,
.comparison-rail__item:hover::before {
  opacity: 1;
  transform: scaleY(1.02);
}

.decision-path--primary,
.decision-path--wide {
  background: transparent;
}

.decision-path--wide {
  border-bottom: 1px solid var(--line-soft);
}

.decision-path__meta {
  padding-top: 0.2rem;
  border-top: 0;
  color: var(--gray-600);
}

.comparison-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.comparison-spotlight {
  position: sticky;
  top: 7rem;
  padding: clamp(1.75rem, 3.2vw, 2.4rem);
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(111, 218, 208, 0.16), transparent 18rem),
    linear-gradient(135deg, #132235 0%, #17303f 100%);
  box-shadow: none;
}

.comparison-spotlight__split > div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--space-6);
}

.comparison-rail__item {
  position: relative;
  padding: 1.2rem 0 1.2rem 1.15rem;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-shelf {
  grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.review-feature {
  position: sticky;
  top: 7rem;
  padding: clamp(1.7rem, 3vw, 2.2rem);
  border-radius: 1.05rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94) 0%, rgba(244, 237, 227, 0.9) 100%);
  box-shadow: none;
}

.review-feature__list li {
  border-left: 1px solid var(--line-strong);
  padding-left: 1rem;
}

.review-ledger {
  gap: 0;
}

.review-ledger__item {
  padding: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-ledger__item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.principles-band {
  gap: 1.2rem;
}

.principle-stat {
  border: 1px solid var(--line-soft);
  border-top: 3px solid rgba(39, 127, 119, 0.32);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82) 0%, rgba(247, 240, 231, 0.72) 100%);
  box-shadow: none;
}

.principle-panel {
  padding: 0 0 0 1.15rem;
  border: 0;
  border-left: 2px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item {
  padding: 1.2rem 0 1.35rem;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.cta-panel {
  padding: clamp(1.8rem, 4vw, 2.7rem);
  border-radius: 1.25rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95) 0%, rgba(243, 236, 227, 0.92) 100%);
  box-shadow: none;
}

.cta-panel--home {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(111, 218, 208, 0.16), transparent 18rem),
    linear-gradient(135deg, #132235 0%, #1a3148 60%, #133b42 100%);
}

.cta-panel--home p,
.cta-panel--home h2,
.cta-panel--home h3,
.cta-panel--home .muted {
  color: rgba(245, 248, 252, 0.84);
}

.cta-panel--home .button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.article-shell {
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: clamp(3rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
}

.article-sidebar {
  gap: 1.45rem;
}

.sidebar-card {
  padding: 0 0 0 0.95rem;
  border: 0;
  border-left: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 0.6rem;
}

.article-body {
  max-width: min(100%, var(--max-article));
}

.article-body > section {
  margin-top: clamp(2.1rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
}

.article-body > section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article-body h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.article-body h3 {
  font-size: 1.5rem;
}

.article-body p,
.article-body li {
  color: var(--gray-900);
}

.callout {
  margin-block: 0;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(246, 239, 229, 0.9) 100%);
  box-shadow: none;
}

.callout--disclosure {
  border-left: 4px solid rgba(152, 116, 59, 0.48);
  background: linear-gradient(180deg, rgba(244, 231, 207, 0.68) 0%, rgba(248, 241, 227, 0.9) 100%);
}

.callout--warning {
  border-left: 4px solid rgba(152, 116, 59, 0.65);
  background: linear-gradient(180deg, rgba(248, 232, 196, 0.7) 0%, rgba(250, 242, 228, 0.92) 100%);
}

.callout--verdict {
  border-top: 4px solid rgba(39, 127, 119, 0.38);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(239, 247, 244, 0.94) 100%);
}

.callout--verdict .verdict-grid > div {
  border-color: rgba(39, 127, 119, 0.16);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.score-card {
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(244, 237, 227, 0.94) 100%);
}

.score-card__layout {
  grid-template-columns: minmax(0, 11rem) 1fr;
  align-items: start;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.score-card__total {
  min-height: 0;
  padding-right: var(--space-6);
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  background: none;
  color: var(--navy-900);
}

.score-card__total strong {
  font-size: clamp(3.6rem, 7vw, 5.15rem);
}

.score-card__total span {
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.score-item {
  border: 1px solid var(--line-soft);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.54);
}

.snapshot__row {
  border-bottom-color: var(--line-soft);
}

.snapshot__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.product-panel {
  border-color: var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(247, 240, 231, 0.88) 100%);
}

.table-scroll,
.table-card,
.product-figure__frame {
  border-color: var(--line-soft);
  box-shadow: none;
}

th,
td,
.story-card__meta,
.topic-card__meta,
.summary-card__meta {
  border-color: var(--line-soft);
}

.footer {
  border-top-color: var(--line-soft);
  background:
    radial-gradient(circle at top right, rgba(39, 127, 119, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.66) 0%, rgba(238, 231, 221, 0.95) 100%);
}

.footer__inner {
  grid-template-columns: minmax(0, 1.55fr) repeat(4, minmax(0, 0.72fr));
  gap: 1.6rem 2rem;
}

.footer__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-brass);
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.1rem;
}

.footer__trust span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 600;
}

:root[data-theme="dark"] .brand__mark {
  background: linear-gradient(180deg, rgba(27, 37, 51, 0.96) 0%, rgba(16, 24, 34, 0.96) 100%);
}

:root[data-theme="dark"] .site-nav__links a:hover,
:root[data-theme="dark"] .site-nav__links a[aria-current="page"] {
  background: none;
  box-shadow: none;
}

:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .nav-toggle {
  background: rgba(19, 27, 38, 0.94);
  border-color: var(--line-soft);
}

:root[data-theme="dark"] .page-hero:not(.page-hero--home) {
  color: var(--navy-900);
}

:root[data-theme="dark"] .hero-panel,
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .story-card,
:root[data-theme="dark"] .topic-card,
:root[data-theme="dark"] .summary-card,
:root[data-theme="dark"] .review-card,
:root[data-theme="dark"] .page-card,
:root[data-theme="dark"] .table-card,
:root[data-theme="dark"] .callout,
:root[data-theme="dark"] .score-card,
:root[data-theme="dark"] .stat-card,
:root[data-theme="dark"] .cta-panel,
:root[data-theme="dark"] .review-feature,
:root[data-theme="dark"] .principle-stat,
:root[data-theme="dark"] .product-panel {
  background: linear-gradient(180deg, rgba(18, 26, 36, 0.96) 0%, rgba(14, 20, 29, 0.94) 100%);
  border-color: var(--line-soft);
}

:root[data-theme="dark"] .decision-path,
:root[data-theme="dark"] .comparison-rail__item,
:root[data-theme="dark"] .review-ledger__item,
:root[data-theme="dark"] .faq-item,
:root[data-theme="dark"] .principle-panel,
:root[data-theme="dark"] .sidebar-card {
  background: transparent;
}

:root[data-theme="dark"] .callout--disclosure {
  background: linear-gradient(180deg, rgba(68, 53, 27, 0.72) 0%, rgba(19, 27, 38, 0.96) 100%);
}

:root[data-theme="dark"] .callout--warning {
  background: linear-gradient(180deg, rgba(81, 61, 28, 0.76) 0%, rgba(19, 27, 38, 0.96) 100%);
}

:root[data-theme="dark"] .callout--verdict {
  background: linear-gradient(180deg, rgba(20, 30, 42, 0.98) 0%, rgba(13, 23, 33, 0.98) 100%);
}

:root[data-theme="dark"] .callout--verdict .verdict-grid > div,
:root[data-theme="dark"] .score-item {
  background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .page-hero--home {
  background:
    radial-gradient(circle at top right, rgba(111, 218, 208, 0.16), transparent 20rem),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 24rem),
    linear-gradient(135deg, #0a1016 0%, #132030 58%, #0f3038 100%);
}

:root[data-theme="dark"] .page-hero--home .page-hero__title,
:root[data-theme="dark"] .page-hero--home .page-hero__title span,
:root[data-theme="dark"] .hero-panel--home h2,
:root[data-theme="dark"] .hero-panel--home .decision-ladder strong {
  color: #f3f7fd;
}

:root[data-theme="dark"] .page-hero--home .page-hero__lede,
:root[data-theme="dark"] .home-signal-bar span,
:root[data-theme="dark"] .hero-panel--home p,
:root[data-theme="dark"] .hero-panel--home li,
:root[data-theme="dark"] .hero-panel--home span {
  color: rgba(226, 236, 246, 0.82);
}

:root[data-theme="dark"] .page-hero--home .product-chip,
:root[data-theme="dark"] .comparison-spotlight .product-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f3f7fd;
}

:root[data-theme="dark"] .hero-panel--home {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

:root[data-theme="dark"] .product-chip,
:root[data-theme="dark"] .hero-panel__source-list span,
:root[data-theme="dark"] .footer__trust span {
  background: var(--surface-paper-strong);
  border-color: var(--line-soft);
  color: var(--gray-800);
}

:root[data-theme="dark"] .best-for-badge {
  background: rgba(111, 218, 208, 0.08);
  color: var(--navy-900);
}

.page-hero:not(.page-hero--home) .meta-row--light {
  color: var(--gray-600);
}

.page-hero:not(.page-hero--home) .meta-row--light span::after {
  background: var(--line-strong);
}

.page-hero:not(.page-hero--home) .product-chip {
  background: var(--surface-paper-strong);
  border-color: var(--line-soft);
  color: var(--gray-800);
}

.page-hero:not(.page-hero--home) .best-for-badge {
  background: rgba(39, 127, 119, 0.07);
  border-color: rgba(23, 38, 61, 0.12);
  color: var(--navy-900);
}

thead {
  background: linear-gradient(135deg, #15243a 0%, #223754 100%);
  color: #f4f7fc;
}

th {
  color: inherit;
}

:root[data-theme="dark"] thead {
  background: linear-gradient(135deg, #21364f 0%, #2b486c 100%);
  color: #f6f8fc;
}

:root[data-theme="dark"] .decision-path__meta,
:root[data-theme="dark"] .comparison-rail__meta,
:root[data-theme="dark"] .review-ledger__meta,
:root[data-theme="dark"] .muted,
:root[data-theme="dark"] .brand__tag,
:root[data-theme="dark"] .footer__meta,
:root[data-theme="dark"] .footer__brand p,
:root[data-theme="dark"] .footer__column p {
  color: var(--gray-700);
}

:root[data-theme="dark"] .footer {
  background:
    radial-gradient(circle at top right, rgba(111, 218, 208, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(11, 18, 26, 0.98) 0%, rgba(8, 13, 19, 0.98) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero__eyebrow,
  .page-hero__title,
  .page-hero__lede,
  .meta-row,
  .chip-row,
  .home-signal-bar,
  .hero-panel,
  .decision-path,
  .comparison-spotlight,
  .comparison-rail__item,
  .review-feature,
  .review-ledger__item,
  .faq-item,
  .principle-panel,
  .cta-panel {
    animation: editorial-rise 700ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }

  .page-hero__title {
    animation-delay: 80ms;
  }

  .page-hero__lede,
  .hero-panel {
    animation-delay: 150ms;
  }

  .meta-row,
  .chip-row,
  .home-signal-bar {
    animation-delay: 220ms;
  }
}

@keyframes editorial-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .decision-workbench__lead,
  .comparison-spotlight,
  .review-feature {
    position: static;
  }

  .decision-workbench__lead {
    padding-right: 0;
    border-right: 0;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 42rem;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    min-height: 4.4rem;
    gap: var(--space-4);
  }

  .brand__tag,
  .site-nav__label {
    display: none;
  }

  .site-nav {
    gap: 0.55rem;
  }

  .site-nav__actions {
    position: relative;
    z-index: 1;
  }

  .site-nav__links {
    min-width: 17rem;
    padding: 0.95rem;
    gap: 0.3rem;
    background: var(--surface-paper-strong);
    border: 1px solid var(--line-soft);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .site-nav__links a {
    padding: 0.6rem 0;
    font-size: 0.82rem;
  }

  .site-nav__links a::after {
    bottom: 0.2rem;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.08;
  }

  .page-hero {
    width: min(calc(100% - 1.35rem), var(--max-page));
    padding-bottom: var(--space-6);
  }

  .page-hero--home {
    width: calc(100% - 0.5rem);
    padding: 1.7rem 1rem 1.6rem;
    border-radius: 0 0 1.15rem 1.15rem;
  }

  .page-hero--home .page-hero__layout {
    gap: 1.6rem;
  }

  .home-signal-bar {
    padding-block: 1rem;
    gap: 0.9rem;
  }

  .home-signal-bar > div {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.9rem;
  }

  .home-signal-bar > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .decision-path,
  .comparison-rail__item,
  .review-ledger__item,
  .faq-item {
    padding-left: 0.9rem;
  }

  .decision-path::before,
  .comparison-rail__item::before {
    top: 1rem;
    bottom: 1rem;
  }

  .hero-panel,
  .callout,
  .score-card,
  .cta-panel,
  .product-panel,
  .card,
  .story-card,
  .topic-card,
  .summary-card,
  .page-card,
  .review-feature {
    border-radius: 1rem;
  }

  .score-card__total {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .footer__inner,
  .comparison-rail {
    grid-template-columns: 1fr;
  }
}

/* Mobile stabilization overrides: keep these last so the editorial layer
   cannot accidentally reintroduce desktop column widths on phones. */
@media (max-width: 1080px) {
  .page-hero__layout,
  .page-hero--home .page-hero__layout,
  .article-shell,
  .decision-workbench,
  .comparison-stage,
  .review-shelf,
  .workflow-card,
  .principles-columns {
    grid-template-columns: 1fr;
  }

  .page-hero__layout > *,
  .page-hero--home .page-hero__layout > *,
  .article-shell > *,
  .decision-workbench > *,
  .comparison-stage > *,
  .review-shelf > *,
  .workflow-card > *,
  .principles-columns > * {
    min-width: 0;
  }

  .decision-workbench__lead,
  .comparison-spotlight,
  .review-feature,
  .article-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 840px) {
  .site-header__inner {
    width: min(calc(100% - 1rem), var(--max-page));
    min-height: 4.15rem;
    gap: 0.75rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.7rem;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__name {
    font-size: clamp(1.16rem, 4.9vw, 1.48rem);
  }

  .site-nav {
    flex: 0 0 auto;
    gap: 0.45rem;
  }

  .site-nav__actions {
    gap: 0.4rem;
  }

  .theme-toggle,
  .nav-toggle {
    min-height: 2.85rem;
    padding-inline: 0.8rem;
  }

  .site-nav__links {
    left: auto;
    right: 0;
    width: min(18rem, calc(100vw - 1rem));
    min-width: 0;
    max-width: calc(100vw - 1rem);
    padding: 0.8rem;
  }

  .site-nav__links a {
    line-height: 1.2;
    white-space: normal;
  }
}

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

  .site-header__inner {
    width: min(calc(100% - 0.85rem), var(--max-page));
    min-height: 4rem;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand__mark {
    width: 2.35rem;
    border-radius: 0.8rem;
  }

  .brand__mark img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .brand__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .brand__name {
    font-size: clamp(1.08rem, 5.5vw, 1.34rem);
  }

  .site-nav,
  .site-nav__actions {
    gap: 0.34rem;
  }

  .theme-toggle,
  .nav-toggle {
    min-height: 2.7rem;
    padding-inline: 0.72rem;
  }

  .nav-toggle {
    font-size: 0.9rem;
  }

  .page-hero,
  .page-hero--home {
    width: min(calc(100% - 1rem), var(--max-page));
  }

  .page-hero {
    margin-top: var(--space-6);
    padding-bottom: var(--space-5);
  }

  .page-hero--home {
    padding: 1.55rem 0.95rem 1.35rem;
    border-radius: 0 0 1rem 1rem;
  }

  .page-hero--home::before {
    inset: 0.75rem 0.75rem auto auto;
    width: 9rem;
    height: 9rem;
  }

  .page-hero__layout,
  .page-hero--home .page-hero__layout,
  .article-shell,
  .decision-workbench,
  .comparison-stage,
  .review-shelf,
  .workflow-card,
  .principles-columns,
  .comparison-rail,
  .review-ledger,
  .decision-paths,
  .summary-grid,
  .verdict-grid,
  .score-grid,
  .topic-grid,
  .related-grid,
  .cards-grid,
  .grid-3,
  .grid-4,
  .story-grid,
  .decision-grid,
  .comparison-duel,
  .two-col,
  .pros-cons,
  .review-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__layout,
  .page-hero--home .page-hero__layout {
    gap: 1.35rem;
  }

  .page-hero__title {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .page-hero__lede {
    max-width: 100%;
    font-size: 1rem;
  }

  .meta-row {
    gap: 0.45rem 0.85rem;
  }

  .meta-row span {
    padding-right: 0.7rem;
  }

  .meta-row span::after {
    right: 0.12rem;
  }

  .chip-row {
    gap: 0.55rem;
  }

  .page-hero .product-chip,
  .page-hero .best-for-badge {
    padding: 0.42rem 0.68rem;
    font-size: 0.78rem;
  }

  .hero-panel,
  .hero-panel--home,
  .decision-workbench__lead,
  .comparison-spotlight,
  .review-feature,
  .principle-panel,
  .faq-item {
    width: 100%;
    min-width: 0;
    padding: 1.08rem;
  }

  .home-signal-bar {
    margin-top: 1.35rem;
    padding-block: 0.82rem;
    gap: 0.75rem;
  }

  .home-signal-bar > div {
    padding: 0 0 0.75rem;
  }

  .home-signal-bar strong {
    font-size: 0.9rem;
  }

  .home-signal-bar span {
    font-size: 0.88rem;
  }

  .workbench-steps {
    margin: var(--space-6) 0;
    gap: 0.85rem;
  }

  .decision-path,
  .comparison-rail__item,
  .review-ledger__item,
  .faq-item {
    padding-left: 0.8rem;
  }

  .decision-path::before,
  .comparison-rail__item::before {
    top: 0.95rem;
    bottom: 0.95rem;
  }

  .article-shell {
    gap: 1.8rem;
    padding-block: var(--space-8) var(--space-10);
  }

  .article-sidebar {
    gap: 1rem;
  }

  .sidebar-card {
    padding: 1rem 0 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .article-sidebar .sidebar-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .article-body > section {
    margin-top: 1.75rem;
    padding-top: 1.65rem;
  }

  .article-body h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .article-body h3 {
    font-size: 1.28rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .score-card__layout,
  .snapshot__row {
    grid-template-columns: 1fr;
  }

  .score-card__total {
    padding-right: 0;
    padding-bottom: 0.85rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .table-card {
    padding: 0.9rem;
  }

  .table-scroll {
    margin-top: 0.85rem;
  }

  table {
    min-width: 34rem;
  }

  th,
  td {
    padding: 0.78rem 0.78rem;
  }

  th {
    font-size: 0.82rem;
  }

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

@media (max-width: 480px) {
  .site-header__inner {
    width: min(calc(100% - 0.6rem), var(--max-page));
    min-height: 3.8rem;
    gap: 0.5rem;
  }

  .brand__eyebrow {
    display: none;
  }

  .brand__name {
    font-size: clamp(1rem, 7.6vw, 1.22rem);
  }

  .brand__mark {
    width: 2.2rem;
    border-radius: 0.72rem;
  }

  .theme-toggle,
  .nav-toggle {
    min-height: 2.6rem;
    padding-inline: 0.65rem;
  }

  .nav-toggle {
    font-size: 0.88rem;
  }

  .site-nav__links {
    width: calc(100vw - 0.75rem);
    max-width: calc(100vw - 0.75rem);
  }

  .page-hero,
  .page-hero--home {
    width: calc(100% - 0.6rem);
  }

  .page-hero__title {
    font-size: clamp(2rem, 11.8vw, 2.7rem);
  }

  .page-hero__lede,
  .article-body p,
  .article-body li {
    font-size: 0.97rem;
  }

  .meta-row {
    font-size: 0.86rem;
  }

  .table-card {
    padding: 0.75rem;
  }

  table {
    min-width: 31rem;
  }

  th,
  td {
    padding: 0.72rem 0.68rem;
  }
}
