:root {
  --paper-50: #fcfaf5;
  --paper-100: #f5f0e6;
  --paper-200: #e9dfce;
  --ink-900: #14251f;
  --ink-700: #394b42;
  --ink-500: #66736c;
  --forest-900: #0f2a23;
  --forest-800: #173c32;
  --forest-700: #245346;
  --sage-200: #dce7dd;
  --sage-100: #edf2eb;
  --rust-700: #8f3f27;
  --rust-600: #a84f2f;
  --gold-500: #d5ad68;
  --white: #fffdf8;
  --line: rgba(20, 37, 31, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
  --focus: #0968c7;
  --shadow-soft: 0 1.5rem 4rem rgba(15, 42, 35, 0.12);
  --radius-control: 0.3rem;
  --radius-panel: 0.65rem;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;
  --container: 75rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-50);
  color: var(--ink-900);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  isolation: isolate;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
ol,
ul,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  margin-bottom: var(--space-3);
  font-size: clamp(2.5rem, 11.5vw, 4.8rem);
  letter-spacing: -0.048em;
  line-height: 0.98;
}

h1 span {
  color: var(--rust-700);
}

h2 {
  max-width: 22ch;
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 7.8vw, 3.65rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: 1.45rem;
  line-height: 1.2;
}

p,
li,
dd {
  text-wrap: pretty;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-to-content {
  position: fixed;
  z-index: 30;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-to-content:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 245, 0.97);
}

.nav-row {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-900);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 0.15rem;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink-700);
  font-size: 0.92rem;
}

.header-nav a {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  min-width: 3rem;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--ink-900);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  display: grid;
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mobile-menu nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

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

.eyebrow {
  margin-bottom: var(--space-2);
  color: var(--rust-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.eyebrow-light {
  color: #efc77f;
}

.hero {
  overflow: hidden;
  padding-block: var(--space-3) var(--space-4);
  background: var(--paper-100);
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "intro"
    "product"
    "conversion"
    "decision";
  gap: var(--space-2);
  align-items: center;
}

.hero-intro {
  grid-area: intro;
}

.hero-intro h1 {
  margin-bottom: 0;
}

.hero-product {
  grid-area: product;
  max-width: 19rem;
}

.hero-conversion {
  grid-area: conversion;
}

.hero-decision {
  grid-area: decision;
}

.product-reviewed {
  margin-bottom: var(--space-2);
  color: var(--forest-700);
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  font-weight: 600;
}

.product-reviewed strong {
  color: var(--forest-900);
  font-size: 1.08em;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 56ch;
  margin-bottom: var(--space-2);
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-support {
  max-width: 58ch;
  margin-bottom: var(--space-3);
  color: var(--ink-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
}

.cta-button {
  min-height: 3.5rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--rust-700);
  border-radius: var(--radius-control);
  background: var(--rust-600);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.cta-button:hover:not(:disabled) {
  background: var(--rust-700);
}

.cta-button:active:not(:disabled) {
  transform: translateY(2px);
}

.cta-button:disabled {
  border-color: #7b736c;
  background: #8b827a;
  cursor: wait;
}

.cta-button-secondary {
  border-color: var(--gold-500);
  background: transparent;
  color: var(--white);
}

.cta-button-secondary:hover:not(:disabled) {
  background: var(--gold-500);
  color: var(--forest-900);
}

.cta-button-secondary:disabled {
  border-color: rgba(255, 253, 248, 0.45);
  background: transparent;
  color: rgba(255, 253, 248, 0.68);
}

.text-link {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  color: var(--forest-900);
  font-weight: 700;
}

.affiliate-note {
  max-width: 68ch;
  margin-block: var(--space-3) 0;
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-conversion .hero-cta-microcopy {
  color: var(--ink-500);
}

.cta-status {
  min-height: 1.35rem;
  margin: var(--space-1) 0 0;
  color: var(--rust-700);
  font-size: 0.88rem;
}

.hero-product,
.checks-figure,
.label-visual {
  margin: 0;
}

.hero-product {
  margin-inline: auto;
}

.hero-product-media {
  overflow: hidden;
  background: var(--paper-100);
  box-shadow: var(--shadow-soft);
  outline: 1px solid rgba(20, 37, 31, 0.08);
  outline-offset: -1px;
}

.hero-product img {
  width: 100%;
  max-width: 100%;
}

.hero-product figcaption {
  max-width: 58ch;
  display: none;
}

.hero-artwork-note {
  max-width: 58ch;
  margin: var(--space-2) 0 0;
  color: var(--ink-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.4;
}

.hero-conversion .affiliate-note {
  margin-top: var(--space-2);
}

.product-cues {
  padding-block: var(--space-3);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.product-cues-grid {
  display: grid;
  gap: var(--space-3);
  align-items: center;
}

.product-cues-copy h2 {
  max-width: 20ch;
  margin-bottom: var(--space-2);
  font-size: clamp(1.65rem, 6vw, 2.35rem);
}

.product-cues-copy > p:last-child {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--ink-700);
}

.product-cues-figure {
  margin: 0;
}

.product-cues-figure img {
  width: 100%;
  opacity: 0.78;
}

.product-cues-figure figcaption {
  margin-top: var(--space-1);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  font-style: normal;
}

figcaption {
  max-width: 48ch;
  margin-top: var(--space-2);
  color: var(--ink-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.45;
}

.glance {
  padding-block: var(--space-5);
  background: var(--forest-900);
  color: var(--white);
}

.glance-grid {
  display: grid;
  gap: var(--space-4);
}

.glance-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 7vw, 2.7rem);
}

.glance-list {
  display: grid;
  margin-bottom: 0;
}

.glance-list div {
  padding-block: var(--space-2);
  border-top: 1px solid var(--line-light);
}

.glance-list dt {
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.glance-list dd {
  margin-bottom: 0;
  color: #cbd8d1;
  font-size: 0.94rem;
}

.section {
  padding-block: var(--space-6);
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: var(--space-4);
}

.section-heading > p:last-child,
.split-heading > p {
  max-width: 54ch;
  color: var(--ink-700);
  font-size: 1.04rem;
}

.split-heading {
  display: grid;
  gap: var(--space-2);
}

.checks-layout {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.checks-figure {
  max-width: 34rem;
  margin-inline: auto;
}

.checks-figure img,
.label-visual img {
  background: var(--white);
  outline: 1px solid rgba(20, 37, 31, 0.08);
  outline-offset: -1px;
}

.check-list {
  display: grid;
  margin-bottom: 0;
  border-top: 2px solid var(--ink-900);
}

.check-list > div {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0 var(--space-2);
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.check-list span {
  grid-row: 1 / span 2;
  color: var(--rust-600);
  font-family: Georgia, "Times New Roman", serif;
  font-variant-numeric: tabular-nums;
}

.check-list dt {
  margin-bottom: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.check-list dd {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.96rem;
}

.product-section {
  border-color: var(--line-light);
  background: var(--forest-800);
  color: var(--white);
}

.product-header {
  margin-bottom: var(--space-4);
}

.product-header > p:last-child {
  max-width: 62ch;
  color: #d5e0da;
}

.product-facts {
  display: grid;
  gap: var(--space-4);
}

.fact-strip {
  display: grid;
  margin-bottom: 0;
  border-block: 2px solid rgba(255, 253, 248, 0.7);
}

.fact-strip div {
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--line-light);
}

.fact-strip div:last-child {
  border-bottom: 0;
}

.fact-strip dt {
  margin-bottom: 0.15rem;
  color: #bbccc3;
  font-size: 0.8rem;
  font-weight: 600;
}

.fact-strip dd {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.formula-summary {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-light);
}

.formula-summary p {
  max-width: 72ch;
  color: #dbe5df;
}

.source-note {
  margin-bottom: 0;
  color: #bfcfc6 !important;
  font-size: 0.88rem;
}

.label-section {
  background: var(--sage-100);
}

.label-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.label-visual {
  max-width: 38rem;
  margin-inline: auto;
}

.label-copy > p:not(.eyebrow) {
  max-width: 51ch;
  color: var(--ink-700);
}

.label-points {
  margin-bottom: 0;
  border-top: 2px solid var(--ink-900);
}

.label-points div {
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.label-points dt {
  font-weight: 700;
}

.label-points dd {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.offer-section {
  background: var(--paper-100);
}

.offer-panel {
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-block: 3px solid var(--forest-800);
}

.offer-heading > p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--ink-700);
}

.offer-facts {
  display: grid;
  margin-bottom: 0;
}

.offer-facts div {
  padding-block: var(--space-2);
  border-top: 1px solid var(--line);
}

.offer-facts dt {
  margin-bottom: 0.2rem;
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 600;
}

.offer-facts dd {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.offer-facts .offer-total dd {
  color: var(--rust-700);
  font-size: clamp(2.8rem, 14vw, 4.8rem);
  letter-spacing: -0.04em;
}

.decision-grid {
  display: grid;
  gap: var(--space-4);
}

.decision-grid article {
  padding-top: var(--space-3);
  border-top: 4px solid var(--forest-800);
}

.decision-grid article:last-child {
  border-top-color: var(--rust-600);
}

.decision-index {
  margin-bottom: var(--space-3);
  color: var(--ink-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.decision-grid ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.decision-grid li {
  margin-bottom: 0.75rem;
  color: var(--ink-700);
}

.editorial-take {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-block: var(--space-3);
  border-block: 2px solid var(--forest-800);
}

.editorial-take .decision-index,
.editorial-take h3,
.editorial-take p {
  margin-bottom: 0;
}

.editorial-take p:last-child {
  max-width: 75ch;
  color: var(--ink-700);
}

.editorial-take-content {
  display: grid;
  gap: var(--space-2);
}

.editorial-take-content > p {
  max-width: 78ch;
  color: var(--ink-700);
}

.take-framework {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin-top: 0.15rem;
  color: var(--rust-700);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.take-framework span:not(:last-child)::after {
  margin-left: 0.8rem;
  color: var(--line);
  content: "·";
}

.editorial-take-content .take-conclusion {
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.25;
}

.take-actions {
  max-width: 39rem;
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

.take-actions .cta-microcopy,
.take-actions .affiliate-note,
.take-actions .cta-status {
  margin-bottom: 0;
}

.take-actions .affiliate-note {
  margin-top: var(--space-2);
}

.method-section {
  border-color: var(--line-light);
  background: var(--forest-900);
  color: var(--white);
}

.method-grid {
  display: grid;
  gap: var(--space-5);
}

.method-copy p:last-child {
  max-width: 52ch;
  color: #cbd8d1;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.method-track li {
  min-height: 6.5rem;
  display: grid;
  align-content: space-between;
  padding: var(--space-2);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.method-track li:nth-child(2n) {
  border-right: 0;
}

.method-track span {
  color: var(--gold-500);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.faq-grid {
  display: grid;
  gap: var(--space-4);
}

.faq-heading > p:last-child {
  max-width: 38ch;
  color: var(--ink-700);
}

.faq-list {
  border-top: 2px solid var(--ink-900);
}

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

.faq-list summary {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--rust-700);
  content: "+";
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 62ch;
  margin-bottom: var(--space-3);
  color: var(--ink-700);
}

.closing {
  padding-block: var(--space-6);
  background: var(--forest-800);
  color: var(--white);
}

.closing-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.closing-grid h2 {
  margin-bottom: 0;
}

.closing-action {
  display: grid;
  justify-items: start;
}

.affiliate-note-light {
  margin-top: 0;
  color: #cedbd4;
}

.cta-microcopy {
  margin: 0.7rem 0 0;
  color: #cedbd4;
  font-size: 0.88rem;
}

.closing .cta-status {
  color: #efc77f;
}

.site-footer {
  padding-block: var(--space-5) var(--space-3);
  border-top: 1px solid var(--line);
  background: var(--paper-200);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.footer-grid > div > p {
  max-width: 48ch;
  margin: var(--space-2) 0 0;
  color: var(--ink-700);
}

.footer-nav {
  display: grid;
  gap: 0.1rem;
}

.footer-nav a {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-1) var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line);
  color: var(--ink-500);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.policy-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper-100);
}

.policy-header .container {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
}

.home-link {
  font-weight: 700;
}

.policy-main {
  min-height: 65vh;
  padding-block: var(--space-5) var(--space-7);
}

.policy-main h1 {
  max-width: 19ch;
  margin-bottom: var(--space-4);
}

.policy-copy {
  max-width: 50rem;
}

.policy-copy h2 {
  margin-block: var(--space-4) var(--space-2);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.35;
}

.contact-state {
  margin-block: var(--space-4);
  padding-block: var(--space-3);
  border-block: 2px solid var(--forest-800);
}

.contact-state p:last-child {
  margin-bottom: 0;
}

@media (min-width: 42rem) {
  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .mobile-menu {
    display: none;
  }

  .header-nav {
    display: flex;
  }

  .glance-list,
  .fact-strip,
  .offer-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glance-list div,
  .fact-strip div,
  .offer-facts div {
    padding-inline: var(--space-2);
    border-right: 1px solid var(--line-light);
  }

  .glance-list div:nth-child(2n),
  .fact-strip div:nth-child(2n),
  .offer-facts div:nth-child(2n) {
    border-right: 0;
  }

  .fact-strip div,
  .offer-facts div {
    border-color: var(--line-light);
  }

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

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

@media (min-width: 56rem) {
  .hero {
    min-height: calc(100vh - 4.5rem);
    display: grid;
    align-items: center;
    padding-block: var(--space-5);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 21fr) minmax(24rem, 19fr);
    grid-template-areas:
      "intro product"
      "conversion product"
      "decision product";
    gap: var(--space-3) var(--space-6);
  }

  .hero-product {
    max-width: 42rem;
    align-self: center;
  }

  .hero-intro h1 {
    margin-bottom: var(--space-3);
  }

  .hero-lede {
    margin-bottom: var(--space-3);
  }

  .hero-product figcaption {
    display: block;
  }

  .hero-artwork-note {
    display: none;
  }

  .hero-conversion .affiliate-note {
    margin-top: var(--space-3);
  }

  .product-cues-grid {
    grid-template-columns: minmax(16rem, 15fr) minmax(30rem, 25fr);
    gap: var(--space-5);
  }

  .glance-grid,
  .split-heading,
  .label-grid,
  .offer-panel,
  .method-grid,
  .faq-grid,
  .closing-grid {
    grid-template-columns: minmax(0, 17fr) minmax(25rem, 23fr);
    gap: var(--space-6);
  }

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

  .checks-layout {
    grid-template-columns: minmax(23rem, 19fr) minmax(26rem, 21fr);
    gap: var(--space-6);
  }

  .product-facts {
    grid-template-columns: minmax(27rem, 23fr) minmax(22rem, 17fr);
    gap: var(--space-6);
  }

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

  .fact-strip div:nth-child(2n) {
    border-right: 1px solid var(--line-light);
  }

  .fact-strip div:nth-child(3n),
  .fact-strip div:last-child {
    border-right: 0;
  }

  .offer-facts {
    grid-template-columns: 0.8fr 1.4fr 1fr;
    align-items: end;
  }

  .offer-facts div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .offer-facts div:last-child {
    border-right: 0;
  }

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

  .method-track li:nth-child(2n) {
    border-right: 1px solid var(--line-light);
  }

  .method-track li:nth-child(3n) {
    border-right: 0;
  }
}

@media (min-width: 72rem) {
  .container {
    width: min(100% - 4rem, var(--container));
  }

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

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

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