:root {
  --ink: #10251f;
  --forest: #17362f;
  --forest-2: #234f44;
  --green: #75c996;
  --green-light: #dff2e5;
  --cream: #f6f3e9;
  --paper: #fbfcf9;
  --mist: #eef2ed;
  --line: #d9e0da;
  --muted: #66736e;
  --orange: #e9a86b;
  --white: #fff;
  --shadow: 0 18px 56px rgba(21, 53, 45, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

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

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

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

::selection { background: var(--green); color: var(--ink); }

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 252, 249, 0.9);
  border-bottom: 1px solid rgba(217, 224, 218, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 12px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 14px; letter-spacing: 0.12em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  position: relative;
  color: #4c5b56;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  border-radius: 4px;
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 17px;
  color: var(--white) !important;
  background: var(--forest);
  border-radius: 999px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: -280px;
  left: calc(50% + 230px);
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(117,201,150,.34) 0, rgba(117,201,150,0) 68%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(23,54,47,.12);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  padding: 8px 14px;
  color: var(--forest-2);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,54,47,.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero-kicker i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(117,201,150,.18);
}

.hero h1 {
  max-width: 840px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 88px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .96;
}

.hero h1 em { color: var(--forest-2); font-style: italic; }

.hero-lead {
  max-width: 680px;
  margin: 27px auto 33px;
  color: #53625d;
  font-size: 18px;
}

.search-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(23,54,47,.12);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(23,54,47,.14);
}

.search-icon { align-self: center; margin-left: 10px; color: var(--muted); }

.search-shell input {
  min-width: 0;
  flex: 1;
  padding: 14px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-shell input::placeholder { color: #89938f; }

.search-shell button, .primary-button {
  padding: 14px 23px;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease;
}

.search-shell button:hover, .primary-button:hover { background: var(--forest-2); transform: translateY(-1px); }
.search-shell button:disabled { cursor: wait; opacity: .7; transform: none; }

.suggestion-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}

.suggestion-row > span { padding: 7px 2px; color: var(--muted); font-size: 13px; }

.suggestion {
  padding: 7px 12px;
  color: #53625d;
  background: transparent;
  border: 1px solid rgba(23,54,47,.17);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.suggestion:hover { background: rgba(255,255,255,.65); border-color: var(--forest-2); }

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.principles-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.principle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #53625d;
  font-size: 14px;
  font-weight: 650;
}

.principle + .principle { border-left: 1px solid var(--line); }
.principle svg { color: var(--forest-2); flex-shrink: 0; }

.section {
  padding: 100px 0;
}

.section--muted { background: var(--mist); }
.section--dark { color: var(--cream); background: var(--forest); }

.section-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading--center { margin-right: auto; margin-left: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section--dark .eyebrow { color: var(--green); }

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.section--dark .section-heading p { color: #c4d4ce; }

.comparison-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel-topline {
  min-height: 58px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8faf7;
  border-bottom: 1px solid var(--line);
}

.panel-topline > span:first-child { color: var(--muted); font-size: 13px; }

.source-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.source-label i { width: 6px; height: 6px; border-radius: 50%; }
.source-label--live { color: #205b39; background: var(--green-light); }
.source-label--live i { background: #2a8751; box-shadow: 0 0 0 3px rgba(42,135,81,.12); }
.source-label--demo { color: #6f4522; background: #fff0df; }
.source-label--demo i { background: var(--orange); }

.product-summary {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.product-visual {
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--cream);
  border-radius: 18px;
}

.product-visual svg { width: 105px; height: 88px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 5; }
.product-visual .detail { stroke: var(--green); stroke-width: 4; }

.product-copy .eyebrow { margin-bottom: 4px; }
.product-copy h3 { margin: 0; font-size: 22px; letter-spacing: -.02em; }
.product-copy p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }

.result-count {
  min-width: 82px;
  padding: 12px 15px;
  text-align: center;
  background: var(--mist);
  border-radius: 14px;
}

.result-count strong { display: block; font-size: 21px; line-height: 1.1; }
.result-count span { color: var(--muted); font-size: 11px; }

.offer-list { padding: 0 30px; }

.offer-card {
  min-height: 150px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: minmax(155px, 1fr) minmax(310px, 1.7fr) minmax(145px, .8fr) minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.offer-card:last-child { border-bottom: 0; }

.rank-block, .final-price, .offer-action { display: flex; flex-direction: column; align-items: flex-start; }
.rank-block { gap: 5px; }

.best-badge {
  padding: 5px 9px;
  color: #205b39;
  background: var(--green-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rank-number { color: var(--muted); font-size: 12px; font-weight: 800; }
.merchant { font-size: 16px; }
.availability { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.availability i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }

.price-math {
  padding: 13px 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: end;
  gap: 10px;
  background: #f7f9f6;
  border-radius: 14px;
  font-size: 13px;
}

.price-math span { display: flex; flex-direction: column; white-space: nowrap; }
.price-math small, .final-price small { margin-bottom: 2px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.price-math b { padding-bottom: 1px; color: #9aa39f; font-weight: 500; }
.price-math .discount { color: #297345; }

.final-price strong { font-size: 26px; letter-spacing: -.035em; line-height: 1.05; }
.final-price > span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.final-price .best-copy { color: #297345; font-weight: 700; }

.offer-action { align-items: stretch; gap: 9px; }
.promo, .no-promo { min-height: 24px; color: #51605b; font-size: 11px; text-align: center; }
.promo span { margin-right: 5px; color: #297345; font-weight: 900; }

.offer-button {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.offer-button:hover { background: var(--forest-2); }

.result-footnote {
  margin: 0;
  padding: 16px 30px;
  color: var(--muted);
  background: #f8faf7;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}

.catalog-summary {
  padding: 28px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-summary .eyebrow { margin-bottom: 5px; }
.catalog-summary h3 { margin: 0; font-size: 24px; letter-spacing: -.025em; }
.catalog-summary p { max-width: 360px; margin: 0; color: var(--muted); font-size: 12px; text-align: right; }

.catalog-list { padding: 0 30px; }

.catalog-card {
  min-height: 158px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(230px, auto);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.catalog-card:last-child { border-bottom: 0; }
.catalog-visual { width: 104px; height: 96px; }
.catalog-visual svg { width: 90px; height: 76px; }
.catalog-copy { min-width: 0; }
.catalog-category { color: #397356; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.catalog-copy h3 { margin: 5px 0 11px; font-size: 17px; letter-spacing: -.015em; line-height: 1.3; }
.catalog-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; color: var(--muted); font-size: 12px; }

.catalog-price {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  text-align: right;
}

.catalog-price small { color: var(--muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.catalog-price strong { margin-top: 2px; font-size: 27px; letter-spacing: -.035em; line-height: 1.1; }
.catalog-price > span { margin: 4px 0 11px; color: var(--muted); font-size: 11px; }
.catalog-price .offer-button { min-width: 176px; }

.results-loading { min-height: 240px; padding: 55px 50px; display: flex; align-items: center; gap: 28px; }
.skeleton { position: relative; overflow: hidden; background: #e6ebe6; border-radius: 18px; }
.skeleton::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); content: ""; transform: translateX(-100%); animation: shimmer 1.2s infinite; }
.skeleton-product { width: 116px; height: 100px; flex: 0 0 auto; }
.skeleton-lines { width: 100%; display: grid; gap: 12px; }
.skeleton-lines span { height: 18px; background: #e6ebe6; border-radius: 8px; }
.skeleton-lines span:nth-child(1) { width: 40%; }
.skeleton-lines span:nth-child(2) { width: 78%; }
.skeleton-lines span:nth-child(3) { width: 58%; }

@keyframes shimmer { to { transform: translateX(100%); } }

.empty-state { padding: 75px 24px; text-align: center; }
.empty-icon { display: block; color: var(--green); font: 64px/1 Georgia, serif; }
.empty-state h3 { margin: 14px 0 5px; font-size: 22px; }
.empty-state p { margin: 0; color: var(--muted); }
.suggestion-row--center { margin-top: 20px; }

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.step-number { color: var(--green); font: italic 42px Georgia, serif; }
.step-card h3 { margin: 55px 0 10px; font-size: 21px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.step-card::after { position: absolute; top: 28px; right: 28px; color: #dbe8df; font-size: 44px; content: "↗"; }

.formula-card {
  margin-top: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  background: var(--forest);
  border-radius: var(--radius-md);
}

.formula-copy strong { display: block; margin-bottom: 5px; font-size: 16px; }
.formula-copy span { color: #c5d4ce; font-size: 13px; }
.formula {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-family: Georgia, serif;
  font-size: 18px;
}

.formula b { color: var(--green); font-size: 23px; font-weight: 500; }

.transparency-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}

.statement-card, .detail-card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
}

.statement-card { background: var(--cream); }
.statement-card blockquote { margin: 0; font: 500 clamp(28px, 4vw, 44px)/1.15 Georgia, serif; letter-spacing: -.035em; }
.statement-card p { max-width: 590px; margin: 28px 0 0; color: #56635f; }

.detail-card { background: var(--white); border: 1px solid var(--line); }
.detail-card h3 { margin: 0 0 22px; font-size: 20px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 32px; color: #53615c; border-top: 1px solid var(--line); font-size: 14px; }
.check-list li:first-child { border-top: 0; }
.check-list li::before { position: absolute; top: 14px; left: 0; display: grid; width: 20px; height: 20px; place-items: center; color: var(--forest); background: var(--green-light); border-radius: 50%; content: "✓"; font-size: 11px; font-weight: 900; }

.disclosure-card {
  padding: clamp(30px, 6vw, 64px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
}

.disclosure-card h2 { margin: 0; font: 500 clamp(36px, 5vw, 58px)/1.03 Georgia, serif; letter-spacing: -.04em; }
.disclosure-copy { color: #d1ddd8; }
.disclosure-copy p:first-child { margin-top: 0; font-size: 19px; color: var(--cream); }
.disclosure-note { margin-top: 25px; padding: 18px 20px; color: var(--cream); background: rgba(255,255,255,.07); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; font-size: 14px; }

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

.legal-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-card h2 { margin: 0 0 20px; font: 500 32px/1.1 Georgia, serif; letter-spacing: -.03em; }
.legal-card h3 { margin: 25px 0 8px; font-size: 15px; }
.legal-card p, .legal-card li { color: #586560; font-size: 13px; }
.legal-card ul { padding-left: 18px; }
.legal-card--wide { grid-column: 1 / -1; }

.text-link {
  display: inline-flex;
  margin-top: 13px;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover { color: #2f765b; }
.text-link--muted { color: var(--muted); }

.section--extension { padding-top: 82px; background: var(--paper); }

.extension-feature {
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
  background: var(--cream);
  border: 1px solid rgba(23, 54, 47, .11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.extension-copy h2 {
  margin: 8px 0 18px;
  font: 500 clamp(38px, 5vw, 58px)/1.02 Georgia, serif;
  letter-spacing: -.045em;
}

.extension-copy > p { margin: 0; color: #53625d; font-size: 17px; }

.extension-status {
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #285b46;
  background: var(--green-light);
  border: 1px solid rgba(42, 135, 81, .16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.extension-status i { width: 7px; height: 7px; background: #2a8751; border-radius: 50%; box-shadow: 0 0 0 3px rgba(42,135,81,.12); }
.extension-status--dark { color: var(--cream); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.14); }
.extension-status--dark i { background: var(--green); }

.extension-points { margin: 24px 0 0; padding: 0; list-style: none; }
.extension-points li { position: relative; padding: 9px 0 9px 29px; color: #43544e; font-size: 14px; }
.extension-points li::before { position: absolute; top: 10px; left: 0; display: grid; width: 19px; height: 19px; place-items: center; color: var(--forest); background: var(--green-light); border-radius: 50%; content: "✓"; font-size: 10px; font-weight: 900; }

.extension-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; }
.extension-actions .text-link { margin-top: 0; }

.primary-link {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.primary-link:hover { background: var(--forest-2); transform: translateY(-1px); }
.primary-link--light { color: var(--forest); background: var(--cream); border-color: rgba(255,255,255,.28); }
.primary-link--light:hover { background: var(--white); }

.extension-preview { margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 22px 55px rgba(23,54,47,.14); transform: rotate(1deg); }
.extension-preview img { width: 100%; height: auto; display: block; }
.extension-preview figcaption { padding: 13px 17px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }

.content-page { min-height: calc(100vh - 78px); background: var(--paper); }
.content-page-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.content-hero { padding: 80px 0; color: var(--cream); background: var(--forest); }
.content-hero .eyebrow { color: var(--green); }
.content-hero h1 { max-width: 760px; margin: 12px 0 20px; font: 500 clamp(48px, 7vw, 78px)/.98 Georgia, serif; letter-spacing: -.05em; }
.content-hero p { max-width: 690px; margin: 0; color: #c8d5d0; font-size: 18px; }

.content-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr); align-items: center; gap: clamp(40px, 7vw, 92px); }
.content-hero-preview { margin: 0; overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.22); transform: rotate(1.5deg); }
.content-hero-preview img { width: 100%; height: auto; display: block; }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.info-card { padding: clamp(30px, 5vw, 50px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.info-card--accent { background: var(--cream); }
.info-card h2 { margin: 5px 0 20px; font: 500 clamp(34px, 4vw, 48px)/1.06 Georgia, serif; letter-spacing: -.035em; }
.info-card h3 { margin: 20px 0 12px; font: 500 clamp(29px, 4vw, 40px)/1.08 Georgia, serif; letter-spacing: -.03em; }
.info-card p { color: #53615c; }
.info-card p:last-of-type { margin-bottom: 0; }
.card-index { color: var(--green); font: italic 43px Georgia, serif; }

.availability-card { padding: clamp(32px, 5vw, 52px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 45px; color: var(--cream); background: var(--forest); border-radius: var(--radius-lg); }
.availability-card .eyebrow { color: var(--green); }
.availability-card h2 { margin: 4px 0 12px; font: 500 clamp(34px, 4vw, 49px)/1.05 Georgia, serif; letter-spacing: -.035em; }
.availability-card p { max-width: 720px; margin: 0; color: #c8d5d0; }
.availability-actions { min-width: 220px; display: flex; align-items: stretch; flex-direction: column; gap: 12px; }
.availability-actions .extension-status { margin: 0; justify-content: center; }
.availability-actions .text-link { margin: 0; justify-content: center; color: var(--cream); }

.content-hero--partner { background: linear-gradient(135deg, var(--forest) 0%, #204a3f 100%); }
.partner-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: end; gap: clamp(42px, 8vw, 110px); }
.partner-summary { padding: 30px; color: var(--ink); background: var(--cream); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-md); box-shadow: 0 25px 65px rgba(0,0,0,.18); }
.partner-summary-label { color: var(--forest-2); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.partner-summary strong { margin: 12px 0 10px; display: block; font: 500 31px/1.08 Georgia, serif; letter-spacing: -.03em; }
.partner-summary p { margin: 0; color: #53615c; font-size: 14px; }

.partner-standards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.standard-card { padding: 30px; display: grid; grid-template-columns: 46px 1fr; column-gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.standard-card > span { grid-row: 1 / 3; color: #2f765b; font: italic 28px Georgia, serif; }
.standard-card h3 { margin: 2px 0 8px; font-size: 18px; }
.standard-card p { margin: 0; color: var(--muted); font-size: 14px; }

.partner-policy-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 100px); }
.partner-policy-grid h2 { margin: 8px 0 0; font: 500 clamp(40px, 5vw, 61px)/1.02 Georgia, serif; letter-spacing: -.045em; }
.partner-policy-copy { color: #c8d5d0; }
.partner-policy-copy p { margin: 0; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.14); }
.partner-policy-copy p:first-child { padding-top: 0; border-top: 0; }
.availability-card--partner { background: #234f44; }

.legal-page { min-height: calc(100vh - 78px); background: var(--mist); }
.legal-page-inner { width: min(calc(100% - 40px), 900px); margin: 0 auto; }
.legal-hero { padding: 76px 0 48px; color: var(--cream); background: var(--forest); }
.legal-hero .eyebrow { color: var(--green); }
.legal-hero h1 {
  margin: 12px 0 10px;
  font: 500 clamp(48px, 8vw, 76px)/1 Georgia, serif;
  letter-spacing: -.045em;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.legal-hero p { margin: 0; color: #c8d5d0; }
.legal-page-content { padding: 46px 0 82px; }

.legal-document {
  padding: clamp(30px, 6vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 42px rgba(21, 53, 45, .06);
}

.legal-document section + section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-document h2 { margin: 0 0 13px; font: 600 clamp(22px, 3vw, 29px)/1.2 Georgia, serif; letter-spacing: -.02em; }
.legal-document p { margin: 10px 0 0; color: #52605b; }
.legal-document a:not(.text-link) { color: #236d51; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-address { color: #52605b; font-style: normal; line-height: 1.75; }
.legal-address strong { color: var(--ink); }
.legal-document-actions { margin-top: 42px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 28px; border-top: 1px solid var(--line); }
.legal-document-actions .text-link { margin-top: 0; }

.legal-alert {
  margin: 18px 0;
  padding: 15px 17px;
  color: #704822;
  background: #fff1e3;
  border: 1px solid #f0d2b2;
  border-radius: 12px;
  font-size: 13px;
}

.placeholder-line { color: #8c4d21 !important; font-weight: 700; }

.site-footer { color: #c8d5d0; background: #0e2821; }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 58px 0 25px; }
.footer-top { display: flex; justify-content: space-between; gap: 45px; }
.footer-brand .brand-mark { color: var(--forest); background: var(--cream); }
.footer-brand .brand-copy small { color: #9eb1aa; }
.footer-brand > p { max-width: 410px; margin: 20px 0 0; color: #9eb1aa; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 8px 40px; }
.footer-nav a { color: #c8d5d0; font-size: 13px; text-decoration: none; }
.footer-nav a:hover, .footer-nav a[aria-current="page"] { color: var(--green); }
.footer-bottom { margin-top: 45px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #829990; border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }
.footer-imprint { margin-top: 20px; padding-top: 18px; color: #829990; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; line-height: 1.6; }
.footer-imprint h2 { margin: 0 0 12px; color: #aebfb9; font: 700 11px/1.2 Inter, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.footer-imprint__grid { display: grid; grid-template-columns: 1fr .8fr 2fr; gap: 16px 36px; }
.footer-imprint p { margin: 0; }
.footer-imprint strong { color: #aebfb9; }
.footer-imprint a { color: #aebfb9; }
.footer-imprint a:hover { color: var(--green); }

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: 420px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 1000px) {
  .nav-links { gap: 17px; }
  .nav-links a { font-size: 13px; }
  .offer-card { grid-template-columns: 1fr 1.35fr 1fr; }
  .offer-action { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-end; }
  .offer-action > span { margin-right: auto; }
  .offer-button { min-width: 180px; }
}

@media (max-width: 820px) {
  .mobile-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .principles-inner { grid-template-columns: 1fr; padding: 14px 0; }
  .principle { padding: 10px 0; justify-content: flex-start; }
  .principle + .principle { border-top: 1px solid var(--line); border-left: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 220px; }
  .step-card h3 { margin-top: 28px; }
  .formula-card, .footer-top { align-items: flex-start; flex-direction: column; }
  .transparency-grid, .disclosure-card { grid-template-columns: 1fr; }
  .disclosure-card { gap: 30px; }
  .extension-feature, .content-hero-grid, .partner-hero-grid, .partner-policy-grid { grid-template-columns: 1fr; }
  .extension-feature { gap: 42px; }
  .extension-preview, .content-hero-preview { max-width: 640px; transform: none; }
  .content-grid, .partner-standards { grid-template-columns: 1fr; }
  .availability-card { grid-template-columns: 1fr; gap: 28px; }
  .availability-actions { min-width: 0; align-items: flex-start; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card--wide { grid-column: auto; }
  .catalog-summary { align-items: flex-start; flex-direction: column; gap: 10px; }
  .catalog-summary p { max-width: none; text-align: left; }
  .catalog-card { grid-template-columns: 90px minmax(0, 1fr); }
  .catalog-visual { width: 90px; height: 84px; }
  .catalog-price { grid-column: 2; justify-items: start; text-align: left; }
}

@media (max-width: 680px) {
  .header-inner { width: min(calc(100% - 28px), var(--max)); height: 68px; }
  .brand-copy small { display: none; }
  .hero { padding: 64px 0 53px; }
  .hero-inner, .section-inner, .principles-inner, .footer-inner, .legal-page-inner { width: min(calc(100% - 28px), var(--max)); }
  .hero-kicker { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(44px, 15vw, 65px); }
  .hero-lead { font-size: 16px; }
  .search-shell { padding: 8px; display: grid; grid-template-columns: auto 1fr; border-radius: 16px; }
  .search-shell button { grid-column: 1 / -1; }
  .search-shell input { font-size: 16px; }
  .suggestion-row > span { width: 100%; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; }
  .comparison-panel { margin: 0 -4px; border-radius: 20px; }
  .panel-topline { align-items: flex-start; flex-direction: column; }
  .product-summary { padding: 22px; grid-template-columns: 82px 1fr; gap: 15px; }
  .product-visual { width: 82px; height: 82px; }
  .product-visual svg { width: 76px; height: 66px; }
  .product-copy h3 { font-size: 18px; }
  .result-count { display: none; }
  .offer-list { padding: 0 20px; }
  .offer-card { padding: 24px 0; grid-template-columns: 1fr auto; gap: 18px 14px; }
  .price-math { grid-column: 1 / -1; grid-row: 2; }
  .final-price { align-items: flex-end; text-align: right; }
  .offer-action { grid-column: 1 / -1; grid-row: 3; align-items: stretch; flex-direction: column; }
  .offer-action > span { margin: 0; }
  .result-footnote { padding: 15px 20px; }
  .catalog-summary { padding: 22px 20px; }
  .catalog-summary h3 { font-size: 20px; }
  .catalog-list { padding: 0 20px; }
  .catalog-card { padding: 22px 0; grid-template-columns: 72px minmax(0, 1fr); gap: 15px; }
  .catalog-visual { width: 72px; height: 72px; border-radius: 14px; }
  .catalog-visual svg { width: 65px; height: 56px; }
  .catalog-copy h3 { font-size: 15px; }
  .catalog-price { grid-column: 1 / -1; width: 100%; grid-template-columns: 1fr auto; align-items: end; justify-items: start; text-align: left; }
  .catalog-price strong { grid-column: 1; }
  .catalog-price > span { grid-column: 1; }
  .catalog-price .offer-button { grid-column: 2; grid-row: 1 / 4; align-self: center; min-width: 145px; }
  .formula-card { padding: 24px; }
  .formula { width: 100%; display: grid; grid-template-columns: 1fr auto; white-space: normal; }
  .formula b { text-align: right; }
  .statement-card, .detail-card, .legal-card { padding: 26px; }
  .section--extension { padding-top: 56px; }
  .extension-feature { padding: 27px 22px; border-radius: 20px; }
  .extension-copy h2 { font-size: clamp(36px, 11vw, 48px); }
  .extension-actions { align-items: stretch; flex-direction: column; }
  .extension-actions .primary-link { width: 100%; }
  .extension-actions .text-link { justify-content: center; }
  .content-page-inner { width: min(calc(100% - 28px), var(--max)); }
  .content-hero { padding: 58px 0; }
  .content-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .content-hero p { font-size: 16px; }
  .content-hero-preview { border-radius: 17px; }
  .info-card { padding: 28px 24px; border-radius: 20px; }
  .availability-card { padding: 29px 24px; border-radius: 20px; }
  .availability-actions { width: 100%; align-items: stretch; }
  .standard-card { padding: 24px 20px; grid-template-columns: 38px 1fr; }
  .legal-hero { padding: 56px 0 38px; }
  .legal-hero h1 { font-size: clamp(38px, 12vw, 48px); line-height: 1.04; }
  .legal-page-content { padding: 28px 0 60px; }
  .legal-document { padding: 28px 24px; border-radius: 20px; }
  .legal-document section + section { margin-top: 30px; padding-top: 27px; }
  .legal-document-actions { align-items: flex-start; flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-imprint__grid { grid-template-columns: 1fr; }
  .toast { right: 14px; bottom: 14px; left: 14px; max-width: none; }
}

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