:root {
  color-scheme: light;
  --ink: #14201d;
  --muted: #5c6b66;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --soft: #eef5ef;
  --line: #dde7df;
  --green: #1f7a56;
  --green-dark: #155f43;
  --teal: #117d78;
  --coral: #c95b47;
  --violet: #5f4bb6;
  --amber: #9d6a16;
  --shadow: 0 18px 50px rgba(28, 46, 39, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(20, 32, 29, 0.08);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: #fff;
}

.band {
  background:
    linear-gradient(180deg, rgba(238, 245, 239, 0.92), rgba(251, 250, 246, 0.98)),
    var(--paper);
}

.band-soft {
  background: var(--soft);
}

.section {
  padding: 72px 0;
}

.home-hero,
.product-hero,
.simple-page {
  padding: 56px 0 70px;
}

.home-hero-grid,
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.product-hero-grid {
  padding-top: 24px;
}

.home-copy,
.product-copy {
  max-width: 660px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: 54px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: #34443f;
  font-size: 21px;
  line-height: 1.55;
}

.affiliate-note {
  max-width: 650px;
  border-left: 4px solid var(--amber);
  margin: 22px 0 0;
  background: rgba(255, 249, 236, 0.82);
  padding: 12px 14px;
  color: #5f461b;
  font-size: 14px;
  font-weight: 700;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 122, 86, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  border-color: rgba(20, 32, 29, 0.18);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(20, 32, 29, 0.32);
}

.home-panel {
  display: grid;
  gap: 12px;
}

.home-panel a {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.home-panel span {
  font-weight: 850;
}

.home-panel small {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

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

.badge-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 10px;
  color: #2d4039;
  font-size: 13px;
  font-weight: 800;
}

.product-media {
  margin: 0;
}

.product-media img {
  width: min(100%, 520px);
  max-height: 560px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(20, 32, 29, 0.2));
}

.product-media figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.content-grid-2,
.content-grid-3,
.content-grid-4 {
  display: grid;
  gap: 16px;
}

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

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

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

.product-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #f5f7f2;
}

.product-card-media img {
  max-width: 82%;
  max-height: 230px;
  object-fit: contain;
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.content-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card p,
.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.content-card h3 a {
  text-decoration: none;
}

.text-link {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.fact-card,
.highlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.fact-card strong {
  color: var(--coral);
  font-size: 13px;
  text-transform: uppercase;
}

.fact-card p,
.highlight-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.verdict-card,
.pros-cons > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.verdict-card h2 {
  margin-bottom: 12px;
}

.verdict-card p,
.pros-cons li {
  color: var(--muted);
}

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

.pros-cons ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.pros-cons li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 180px;
}

.split,
.content-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 52px;
}

.toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 6px;
  border-left: 4px solid var(--green);
  padding-left: 18px;
}

.toc strong {
  margin-bottom: 4px;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green-dark);
}

.prose {
  color: #2f3e39;
}

.prose p {
  margin: 0 0 18px;
}

.copy-section {
  padding-bottom: 30px;
}

.copy-section h2 {
  margin-bottom: 14px;
}

.copy-section h3 {
  margin-bottom: 8px;
}

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

.notice {
  border: 1px solid rgba(157, 106, 22, 0.24);
  border-radius: var(--radius);
  background: #fff9ec;
  padding: 24px;
}

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

.notice li + li {
  margin-top: 8px;
}

.offer-section {
  background: #fff;
}

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

.offer-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(28, 46, 39, 0.06);
}

.offer-price {
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
}

summary {
  cursor: pointer;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-band {
  background: var(--ink);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-inner .eyebrow {
  color: #a7e2c5;
}

.site-footer {
  border-top: 1px solid rgba(20, 32, 29, 0.08);
  background: #111b18;
  color: #fff;
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
}

.simple-page .prose {
  margin-top: 26px;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-box {
  width: min(620px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
}

.redirect-box h1 {
  font-size: 34px;
}

.redirect-box p {
  color: var(--muted);
}

@media (max-width: 940px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .home-hero-grid,
  .product-hero-grid,
  .split,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 19px;
  }

  .product-grid,
  .facts-grid,
  .highlight-grid,
  .offer-grid,
  .content-grid-3,
  .content-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid-2,
  .review-summary,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-top: 4px solid var(--green);
    padding: 16px 0 0;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav a {
    justify-content: center;
    min-height: 42px;
    background: rgba(255, 255, 255, 0.6);
  }

  .home-hero,
  .product-hero,
  .simple-page {
    padding: 36px 0 52px;
  }

  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 19px;
  }

  .lead {
    font-size: 18px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .product-grid,
  .facts-grid,
  .highlight-grid,
  .offer-grid,
  .content-grid-2,
  .content-grid-3,
  .content-grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: auto;
  }

  .product-card {
    grid-template-rows: 230px 1fr;
  }

  .product-card-media {
    min-height: 230px;
  }

  .product-card-media img {
    max-height: 205px;
  }

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

  .product-media img {
    max-height: 380px;
  }

  .notice {
    padding: 18px;
  }
}
