:root {
  --bg: #ffffff;
  --surface: #f6f8f7;
  --surface-2: #ecf4f1;
  --ink: #17211e;
  --muted: #59645f;
  --green: #087a63;
  --green-dark: #066650;
  --green-deep: #0b4e42;
  --fitline-red: #cd0039;
  --fitline-red-dark: #a90030;
  --border: #dde5e1;
  --warning: #fff8e7;
  --cream: #f4efe5;
  --shadow: 0 24px 60px rgba(16, 55, 46, 0.1);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

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

body,
button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #a90030;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

.independent-bar {
  background: var(--green-deep);
  color: #eaf7f3;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.015em;
  padding: 7px 16px;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 229, 225, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px 6px 14px 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green), #0ea07e);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 8px 20px rgba(8, 122, 99, 0.22);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #34413c;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 122, 99, 0.18);
}

.button.primary:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 26px rgba(8, 122, 99, 0.22);
}

/* Red has one consistent meaning: this link leaves the independent guide
   and opens the official FitLine shop. */
.button.shop-cta,
.button.shop-cta.light-button {
  background: var(--fitline-red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(205, 0, 57, 0.22);
}

.button.shop-cta:hover,
.button.shop-cta.light-button:hover {
  background: var(--fitline-red-dark);
  color: #fff;
  box-shadow: 0 14px 28px rgba(169, 0, 48, 0.27);
}

.button.secondary {
  border-color: #aebfba;
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.button.ghost {
  border-color: var(--border);
  background: transparent;
}

.nav-cta {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(310px, calc(100vw - 32px));
  display: grid;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 650;
}

.mobile-menu nav a:hover {
  background: var(--surface);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 22%, rgba(237, 202, 121, 0.24), transparent 25%),
    linear-gradient(115deg, #fff 0%, #f8faf9 52%, #edf5f2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  left: -220px;
  bottom: -250px;
  border: 80px solid rgba(8, 122, 99, 0.04);
}

.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 30px;
  padding-block: 70px 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.simple-hero h1,
.product-hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 23px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-line > span:first-child {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #dff2ec;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.hero-product {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(8, 122, 99, 0.13), rgba(244, 221, 159, 0.2));
  box-shadow: inset 0 0 0 1px rgba(8, 122, 99, 0.08);
}

.hero-picture {
  position: relative;
  z-index: 2;
  width: min(440px, 95%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(16, 55, 46, 0.2);
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(8, 122, 99, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  border-style: dashed;
}

.floating-note {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(221, 229, 225, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(26, 59, 51, 0.13);
  backdrop-filter: blur(12px);
}

.note-price {
  top: 82px;
  right: -15px;
  min-width: 155px;
  padding: 15px 17px;
  border-radius: 17px;
}

.note-price small,
.note-price span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.note-price strong {
  display: block;
  color: var(--green-dark);
  font-size: 22px;
}

.note-shop {
  bottom: 70px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 16px;
}

.note-shop > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff2ec;
  color: var(--green);
  font-weight: 900;
}

.note-shop strong,
.note-shop small {
  display: block;
}

.note-shop strong {
  font-size: 13px;
}

.note-shop small {
  color: var(--muted);
  font-size: 9px;
}

.hero-disclaimer {
  padding: 10px 0 15px;
  border-top: 1px solid rgba(221, 229, 225, 0.9);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.trust-strip > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip > div > div {
  position: relative;
  min-height: 106px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
}

.trust-strip > div > div:last-child {
  border-right: 0;
}

.trust-strip span {
  grid-row: span 2;
  color: #a3b2ad;
  font-family: Georgia, serif;
  font-size: 18px;
}

.trust-strip strong {
  font-size: 14px;
}

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

.section {
  padding: 96px 0;
}

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

.section-heading {
  max-width: 740px;
  margin-bottom: 40px;
}

.section-heading > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(30, 61, 54, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: linear-gradient(145deg, #f4efe5, #e8f2ee);
}

.card-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-art {
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(241, 193, 91, 0.3), transparent 24%),
    linear-gradient(145deg, #e9f4f0, #f7f3e8);
}

.category-art::before,
.category-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8, 122, 99, 0.14);
}

.category-art::before {
  width: 150px;
  height: 150px;
}

.category-art::after {
  width: 205px;
  height: 205px;
}

.category-art > span {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 28px 10px 28px 10px;
  background: var(--green);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 30px;
  box-shadow: 0 18px 35px rgba(8, 122, 99, 0.22);
}

.category-art > small {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 700;
}

.category-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.88);
  color: #33413c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.card-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.card-body > p {
  min-height: 52px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.mini-tags li {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--surface);
  color: #4c5c56;
  font-size: 10px;
  font-weight: 700;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 28px;
  margin-top: 22px;
}

.price-block > div span,
.price-block > div strong {
  display: block;
}

.price-block > div span {
  color: var(--muted);
  font-size: 11px;
}

.price-block > div strong {
  color: var(--green-dark);
  font-size: 27px;
  line-height: 1.2;
}

.price-block small {
  width: 100%;
  color: #78847f;
  font-size: 10px;
}

.price-block.compact {
  margin-top: 18px;
}

.price-block.compact > div strong {
  font-size: 22px;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
}

.card-actions .button {
  min-height: 46px;
  padding: 10px 12px;
  font-size: 12px;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

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

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.need-grid a {
  min-height: 245px;
  padding: 28px 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.need-grid a:hover {
  transform: translateY(-4px);
  border-color: #9abbb1;
}

.need-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--surface-2);
  color: var(--green);
  font-size: 23px;
}

.need-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.need-grid p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.need-grid small {
  color: var(--green-dark);
  font-weight: 800;
}

.optimal-feature {
  overflow: hidden;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.feature-image {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  border-radius: 30px 90px 30px 90px;
  background: linear-gradient(145deg, #ece4d5, #d8e9e3);
}

.feature-image::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 24px;
  bottom: 45px;
  border-radius: 50%;
  background: rgba(31, 59, 52, 0.16);
  filter: blur(12px);
}

.optimal-picture {
  position: relative;
  z-index: 1;
  width: 82%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(34, 60, 53, 0.18);
  transform: rotate(-2deg);
}

.feature-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.comparison-preview {
  background: var(--green-deep);
  color: #fff;
}

.comparison-preview .section-heading > span {
  color: #9ee0cc;
}

.comparison-preview .section-heading p {
  color: #c6d9d3;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table thead th {
  color: #bfe9dc;
  font-size: 13px;
}

.comparison-table tbody th {
  color: #c6d9d3;
  font-size: 12px;
  font-weight: 700;
}

.comparison-table tbody td {
  font-size: 14px;
}

.comparison-preview .center-action .button {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 50px 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  position: relative;
  min-height: 190px;
  padding: 0 28px;
  border-left: 1px solid var(--border);
}

.step-grid li:last-child {
  border-right: 1px solid var(--border);
}

.step-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 18px;
}

.step-grid strong {
  font-size: 18px;
}

.step-grid p {
  color: var(--muted);
  font-size: 13px;
}

.official-note {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid #cfe1db;
  border-radius: 18px;
  background: #f0f7f4;
}

.official-note > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.official-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.official-note strong {
  color: var(--ink);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.editorial-grid .section-heading {
  margin-bottom: 18px;
}

.editorial-grid > div > p {
  color: var(--muted);
}

.principle-list {
  display: grid;
  gap: 14px;
}

.principle-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.principle-list > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--green);
  font-weight: 900;
}

.principle-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.principle-list strong {
  color: var(--ink);
}

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

.guide-grid a {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.guide-grid a > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin: 18px 0 0;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.guide-grid p {
  color: var(--muted);
  font-size: 14px;
}

.guide-grid small {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.faq-section {
  background: var(--surface);
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--green);
  font-size: 24px;
  font-weight: 400;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 20px 19px;
  color: var(--muted);
  font-size: 14px;
}

.disclosure-section {
  padding-top: 46px;
}

.disclosure-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid #ead9a9;
  border-radius: 18px;
  background: var(--warning);
}

.disclosure-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #c8a54d;
  border-radius: 50%;
  color: #8a6710;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.disclosure-card p {
  margin: 4px 0 0;
  color: #706039;
  font-size: 13px;
}

.final-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    var(--green);
  color: #fff;
}

.final-cta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta > div > div {
  max-width: 720px;
}

.eyebrow.light {
  color: #c7eee2;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d3eee6;
}

.light-button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.site-footer {
  padding: 70px 0 28px;
  background: #12231e;
  color: #d7e4df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 55px;
}

.footer-brand {
  color: #fff;
}

.footer-brand small {
  color: #97aaa4;
}

.footer-grid > div:first-child p {
  max-width: 350px;
  color: #9db0aa;
  font-size: 13px;
}

.email-link {
  color: #bcddd3;
  font-size: 13px;
  font-weight: 700;
}

.footer-grid h2 {
  margin: 4px 0 18px;
  color: #fff;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(:first-child) a,
.text-button {
  width: fit-content;
  color: #9db0aa;
  font-size: 12px;
}

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

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #82958f;
  font-size: 10px;
}

.footer-bottom p:first-child {
  max-width: 680px;
}

.bottom-nav {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 19px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 70px rgba(16, 42, 35, 0.24);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner strong {
  font-size: 14px;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.cookie-details {
  margin-top: 8px;
  font-size: 11px;
}

.cookie-details summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 700;
}

.cookie-details label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 8px 14px 0 0;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 11px;
}

.simple-hero {
  min-height: 65vh;
  display: grid;
  align-items: center;
  padding: 90px 0;
  background: linear-gradient(145deg, #f9fbfa, #edf5f2);
}

.simple-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    min-height: 610px;
    grid-template-columns: 1fr 0.85fr;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 64px);
  }

  .hero-product {
    min-height: 430px;
  }

  .hero-product::before,
  .hero-picture {
    width: 350px;
    height: 350px;
  }

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 460px;
    height: 460px;
  }

  .note-price {
    right: -5px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 54px 35px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(44px, 10vw, 62px);
  }

  .hero-product {
    min-height: 430px;
  }

  .trust-strip > div {
    grid-template-columns: 1fr;
  }

  .trust-strip > div > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .split-feature,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-image {
    min-height: 430px;
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .step-grid li:nth-child(3) {
    border-left: 0;
  }

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

  .guide-grid a {
    min-height: 210px;
  }

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

  .final-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }

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

  .independent-bar {
    padding-block: 5px;
    font-size: 9px;
    line-height: 1.35;
  }

  .nav-shell {
    min-height: 62px;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px 5px 11px 5px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .hero-grid {
    padding-block: 32px 25px;
  }

  .hero h1 {
    font-size: clamp(37px, 11.2vw, 48px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .hero-actions {
    display: grid;
    margin-top: 23px;
  }

  .hero-actions .button {
    min-height: 49px;
  }

  .trust-line {
    margin-top: 15px;
    font-size: 10px;
  }

  .hero-product {
    min-height: 330px;
  }

  .hero-product::before,
  .hero-picture {
    width: 275px;
    height: 275px;
  }

  .orbit-one {
    width: 310px;
    height: 310px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .note-price {
    top: 20px;
    right: 0;
    min-width: 126px;
    padding: 10px 12px;
  }

  .note-price strong {
    font-size: 18px;
  }

  .note-shop {
    bottom: 20px;
    left: 0;
    padding: 9px 11px;
  }

  .hero-disclaimer {
    font-size: 9px;
  }

  .section {
    padding: 62px 0;
  }

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

  .section-heading h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 15px;
  }

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

  .card-body > p {
    min-height: auto;
  }

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

  .need-grid a {
    min-height: auto;
  }

  .feature-image {
    min-height: 330px;
    border-radius: 24px 60px 24px 60px;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-grid li,
  .step-grid li:nth-child(3),
  .step-grid li:last-child {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
  }

  .step-grid span {
    grid-row: span 2;
    margin: 0;
  }

  .step-grid p {
    margin: 3px 0 0;
  }

  .official-note {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }

  .official-note .button {
    grid-column: 1 / -1;
  }

  .disclosure-card {
    grid-template-columns: 34px 1fr;
    padding: 17px;
  }

  .disclosure-card > span {
    width: 32px;
    height: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .bottom-nav {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.45fr;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 30px rgba(25, 50, 43, 0.1);
    backdrop-filter: blur(14px);
  }

  .bottom-nav > a {
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
  }

  .bottom-nav > a > span {
    font-size: 18px;
  }

  .bottom-nav .bottom-shop {
    flex-direction: row;
    gap: 6px;
    background: var(--fitline-red);
    color: #fff;
    font-size: 10px;
  }

  .cookie-banner {
    right: 10px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 10px;
    padding: 15px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .ghost {
    grid-column: 1 / -1;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-product {
    min-height: 290px;
  }

  .hero-product::before,
  .hero-picture {
    width: 240px;
    height: 240px;
  }

  .orbit-one {
    width: 265px;
    height: 265px;
  }

  .orbit-two {
    width: 290px;
    height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Inner pages */
.inner-hero{padding:72px 0 76px;background:radial-gradient(circle at 82% 22%,rgba(227,193,113,.16),transparent 24%),linear-gradient(130deg,#fff,#edf5f2)}
.inner-hero h1{max-width:850px;margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(46px,6vw,72px);font-weight:500;line-height:1;letter-spacing:-.045em}
.inner-hero>div>p:not(.eyebrow){max-width:720px;margin:23px 0 0;color:var(--muted);font-size:18px}
.inner-hero>div>.button{margin-top:28px}.inner-hero>div>small{display:block;margin-top:12px;color:var(--muted);font-size:11px}
.breadcrumbs{display:flex;flex-wrap:wrap;align-items:center;gap:9px;margin-bottom:34px;color:#75817c;font-size:11px}
.breadcrumbs a{color:var(--green-dark);font-weight:700}
.product-hero{overflow:hidden;padding:40px 0 75px;background:radial-gradient(circle at 10% 80%,rgba(8,122,99,.08),transparent 28%),linear-gradient(145deg,#fbfcfc,#edf5f2)}
.product-hero-grid{display:grid;grid-template-columns:.92fr 1.08fr;align-items:center;gap:75px}
.product-visual{position:relative;min-height:540px;display:grid;place-items:center;border-radius:34px 105px 34px 105px;background:linear-gradient(145deg,#efe7d9,#dcece6)}
.detail-picture{width:82%;overflow:hidden;border-radius:28px;box-shadow:0 28px 65px rgba(27,59,51,.18)}
.verified-badge{position:absolute;right:22px;bottom:22px;padding:9px 13px;border:1px solid rgba(255,255,255,.8);border-radius:100px;background:rgba(255,255,255,.92);color:var(--green-dark);font-size:10px;font-weight:800;box-shadow:0 12px 28px rgba(21,50,42,.12)}
.product-summary h1{font-size:clamp(50px,5.5vw,75px)}.product-lead{max-width:620px;margin:23px 0 0;color:var(--muted);font-size:19px}
.tag-row{display:flex;flex-wrap:wrap;gap:7px;margin:22px 0 0;padding:0;list-style:none}.tag-row li{padding:6px 10px;border:1px solid #c9ddd6;border-radius:100px;background:#f7fbf9;color:var(--green-dark);font-size:10px;font-weight:750}
.price-warning,.managed-note{max-width:600px;color:var(--muted);font-size:11px}.price-warning{padding:11px 13px;border-radius:10px;background:var(--warning)}.managed-note{margin-top:14px}
.anchor-nav{position:sticky;z-index:65;top:76px;overflow-x:auto;border-bottom:1px solid var(--border);background:rgba(255,255,255,.96);backdrop-filter:blur(12px)}
.anchor-nav>div{display:flex;gap:28px}.anchor-nav a{min-height:50px;display:inline-flex;align-items:center;flex:0 0 auto;color:var(--muted);font-size:12px;font-weight:750}.anchor-nav a:hover{color:var(--green)}
.content-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(270px,.75fr);align-items:start;gap:80px}.prose{color:#34423d}
.prose h2{margin:48px 0 14px;color:var(--ink);font-family:Georgia,"Times New Roman",serif;font-size:clamp(29px,3vw,39px);font-weight:500;line-height:1.12;letter-spacing:-.025em}.prose h2:first-child{margin-top:0}
.prose h3{margin:30px 0 8px;color:var(--ink);font-size:18px}.prose p,.prose li{font-size:16px;line-height:1.78}.prose a{color:var(--green-dark);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.answer-box{margin:0 0 44px;padding:22px 24px;border-left:4px solid var(--green);border-radius:0 14px 14px 0;background:var(--surface)}
.neutral-note{padding:18px 20px;border:1px solid #ead9a9;border-radius:13px;background:var(--warning);color:#6a5a32;font-size:13px}
.quick-facts,.warning-card,.editorial-aside{position:sticky;top:150px;padding:24px;border:1px solid var(--border);border-radius:20px;background:#fff;box-shadow:0 16px 45px rgba(24,54,46,.08)}
.quick-facts h2{margin:0 0 16px;font-size:17px}.quick-facts dl{margin:0}.quick-facts dl>div{padding:12px 0;border-bottom:1px solid var(--border)}.quick-facts dl>div:last-child{border-bottom:0}
.quick-facts dt{color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.08em}.quick-facts dd{margin:4px 0 0;font-size:13px;font-weight:650}.quick-facts dd a{color:var(--green-dark);text-decoration:underline}
.quick-facts ol{display:grid;gap:11px;margin:0;padding-left:20px;color:var(--muted);font-size:13px}
.pros-cons{display:grid;gap:14px}.pros-cons>div{padding:23px;border:1px solid var(--border);border-radius:18px;background:#fff}.pros-cons>div:last-child{background:var(--warning)}
.pros-cons h3{margin:0 0 12px;font-size:16px}.pros-cons ul{display:grid;gap:8px;margin:0;padding-left:18px;color:var(--muted);font-size:12px}
.warning-card{border-color:#ead9a9;background:var(--warning);box-shadow:none}.warning-card strong{display:block;margin-bottom:8px;color:#6c5418}.warning-card p{color:#6b603f;font-size:13px}
.price-section{background:var(--green);color:#fff}.split-price{display:grid;grid-template-columns:1fr auto;align-items:center;gap:50px}.split-price h2{margin:0;font-family:Georgia,serif;font-size:58px;font-weight:500}
.split-price p{margin:5px 0;color:#d4eee7}.split-price small{color:#b4d8ce}.split-price>div:last-child{text-align:center}.split-price>div:last-child p{font-size:10px}
.source-note{margin-bottom:18px;padding:23px;border:1px solid var(--border);border-radius:17px;background:#fff}.source-note p{color:var(--muted);font-size:13px}
.filter-bar{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}.filter-bar button{min-height:42px;padding:8px 14px;border:1px solid var(--border);border-radius:100px;background:#fff;cursor:pointer;color:var(--muted);font-size:11px;font-weight:700}
.filter-bar button[aria-pressed=true],.filter-bar button:hover{border-color:var(--green);background:var(--green);color:#fff}.result-note{margin:0 0 28px;color:var(--muted);font-size:12px}
.catalog-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.price-disclaimer{margin-top:35px;padding:20px 22px;border:1px solid #ead9a9;border-radius:15px;background:var(--warning)}
.price-disclaimer p{margin:4px 0 0;color:#6b603f;font-size:12px}
.desktop-price-table{overflow-x:auto;border:1px solid var(--border);border-radius:18px}.desktop-price-table table{width:100%;min-width:930px;border-collapse:collapse;text-align:left}
.desktop-price-table th,.desktop-price-table td{padding:15px 17px;border-bottom:1px solid var(--border);vertical-align:middle;font-size:12px}.desktop-price-table thead th{background:var(--surface);color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.07em}
.desktop-price-table tbody tr:last-child td,.desktop-price-table tbody tr:last-child th{border-bottom:0}.desktop-price-table td strong,.desktop-price-table td small{display:block}.desktop-price-table td small{margin-top:3px;color:var(--muted);font-size:9px}.desktop-price-table td>span{color:var(--muted);font-size:10px}
.table-link{display:inline-flex;align-items:center;gap:5px;color:var(--green-dark);font-weight:800}.table-link.shop-cta{color:var(--fitline-red-dark)}.mobile-price-list{display:none}
.cost-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.cost-grid article{padding:26px;border:1px solid var(--border);border-radius:20px;background:#fff}.cost-grid article.highlight{border-color:var(--green);background:var(--green);color:#fff}
.cost-grid span{display:block;color:var(--muted);font-size:11px;font-weight:700}.cost-grid .highlight span,.cost-grid .highlight p{color:#cde9e1}.cost-grid strong{display:block;margin-top:6px;font-family:Georgia,serif;font-size:38px;font-weight:500}.cost-grid p{color:var(--muted);font-size:12px}.cost-grid+.neutral-note{margin-top:20px}
.buy-steps{max-width:850px;margin:45px auto;padding:0;list-style:none}.buy-steps li{position:relative;display:grid;grid-template-columns:58px 1fr;gap:24px;padding-bottom:36px}.buy-steps li:not(:last-child)::before{content:"";position:absolute;top:50px;bottom:3px;left:27px;width:1px;background:var(--border)}
.buy-steps>li>span{position:relative;z-index:1;width:56px;height:56px;display:grid;place-items:center;border-radius:50%;background:var(--surface-2);color:var(--green);font-family:Georgia,serif;font-size:20px}
.buy-steps h2{margin:2px 0 4px;font-size:20px}.buy-steps p{margin:0;color:var(--muted);font-size:13px}
.center-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.center-grid article{min-height:175px;padding:24px;border:1px solid var(--border);border-radius:17px}.center-grid article>span{color:var(--green);font-size:23px}.center-grid h3{margin:14px 0 5px;font-size:16px}.center-grid p,.center-grid small{display:block;margin:0;color:var(--muted);font-size:11px}
.compare-products{display:grid;grid-template-columns:1fr 70px 1fr;align-items:center;gap:24px}.compare-products article{padding:26px;border:1px solid var(--border);border-radius:24px;background:#fff;text-align:center}
.compare-picture{max-width:380px;overflow:hidden;margin:0 auto 20px;border-radius:18px}.compare-products article>span{color:var(--green);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em}
.compare-products h2{margin:7px 0;font-family:Georgia,serif;font-size:30px;font-weight:500}.compare-products .price-block{justify-content:center}.compare-products .button{margin-top:20px}
.versus{width:58px;height:58px;display:grid;place-items:center;border-radius:50%;background:var(--green);color:#fff;font-weight:900}
.legal-warning{padding:13px 0;background:var(--warning);border-block:1px solid #ead9a9}.legal-warning>div{display:flex;align-items:center;gap:18px}.legal-warning strong{color:#735818;font-size:12px}.legal-warning p{margin:0;color:#786b47;font-size:11px}
.editorial-aside strong{display:block;margin:15px 0 4px}.editorial-aside strong:first-child{margin-top:0}.editorial-aside p{margin:0 0 12px;color:var(--muted);font-size:13px}.email-link.dark{color:var(--green-dark)}
.page-date{margin-top:50px;padding-top:18px;border-top:1px solid var(--border);color:var(--muted);font-size:11px!important}
code{padding:2px 5px;border-radius:5px;background:var(--surface);font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.9em}

@media(max-width:1100px){.product-hero-grid{gap:45px}.product-visual{min-height:450px}.catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:820px){.product-hero-grid,.content-grid{grid-template-columns:1fr;gap:42px}.product-visual{max-width:610px;width:100%;margin-inline:auto}.quick-facts,.warning-card,.editorial-aside{position:static}.cost-grid,.center-grid{grid-template-columns:1fr 1fr}.compare-products{grid-template-columns:1fr}.versus{margin-inline:auto}}
@media(max-width:560px){
  .inner-hero{padding:48px 0 52px}.inner-hero h1,.product-summary h1{font-size:42px}.inner-hero>div>p:not(.eyebrow),.product-lead{font-size:16px}
  .product-hero{padding:25px 0 52px}.product-visual{min-height:340px;border-radius:22px 60px 22px 60px}.detail-picture{width:88%;border-radius:18px}.verified-badge{right:12px;bottom:12px}
  .anchor-nav{top:62px}.anchor-nav>div{gap:20px}.prose p,.prose li{font-size:15px;line-height:1.7}.catalog-grid{grid-template-columns:1fr}
  .desktop-price-table{display:none}.mobile-price-list{display:grid;gap:12px}.mobile-price-list article{padding:19px;border:1px solid var(--border);border-radius:17px;background:#fff}
  .mobile-price-list article>div>span{color:var(--green);font-size:9px;font-weight:800;text-transform:uppercase}.mobile-price-list h2{margin:5px 0 0;font-size:20px}.mobile-price-list p{margin:2px 0;color:var(--muted);font-size:11px}
  .mobile-price-list dl{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:16px 0}.mobile-price-list dl>div{padding:10px;border-radius:10px;background:var(--surface)}
  .mobile-price-list dt{color:var(--muted);font-size:9px}.mobile-price-list dd{margin:3px 0 0;font-size:12px;font-weight:750}.mobile-price-list .button{width:100%}
  .cost-grid,.center-grid{grid-template-columns:1fr}.split-price{grid-template-columns:1fr;gap:28px}.split-price>div:last-child{text-align:left}.split-price h2{font-size:48px}
  .compare-products article{padding:18px}.legal-warning>div{align-items:flex-start;flex-direction:column;gap:3px}
}

/* Final launch refinements — 2026-08-05 */
html{scroll-padding-top:132px}
:focus-visible{outline:3px solid #fff;outline-offset:3px;box-shadow:0 0 0 6px #a90030}
.footer-heading{margin:0 0 14px;color:#fff;font-size:14px;font-weight:800}
.price-display{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:58px;font-weight:500;line-height:1.05}
.catalog-title{margin:0 0 24px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(28px,3vw,38px);font-weight:500}
.internal-product-link{color:var(--green-dark);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
.internal-guides{margin-top:28px;padding:20px 22px;border:1px solid var(--border);border-radius:15px;background:var(--surface)}
.internal-guides p{margin:6px 0 0;color:var(--muted);font-size:14px;line-height:1.65}
.internal-guides a{color:var(--green-dark);font-weight:750;text-decoration:underline;text-underline-offset:3px}
small,.breadcrumbs,.verified-badge,.tag-row li,.quick-facts dt,.split-price>div:last-child p,.filter-bar button,.desktop-price-table thead th,.desktop-price-table td small,.desktop-price-table td>span,.cost-grid span,.center-grid p,.center-grid small,.compare-products article>span,.page-date{font-size:12px!important}
.price-warning,.managed-note,.neutral-note,.source-note p,.warning-card p,.editorial-aside p{font-size:13px!important}
.desktop-price-table td{font-size:13px}
.desktop-price-table th{font-size:12px}
.mobile-price-list article>div>span,.mobile-price-list dt{font-size:12px!important}
.mobile-price-list p{font-size:13px!important}
@media(max-width:560px){html{scroll-padding-top:120px}.price-display{font-size:48px}}
