:root {
  --page: #f7f7f3;
  --surface: #ffffff;
  --surface-muted: #eff1ec;
  --text: #1a251f;
  --muted: #657068;
  --soft: #87918a;
  --accent: #2b765f;
  --accent-dark: #173d32;
  --accent-soft: #e8f0eb;
  --line: #d9dfd7;
  --line-strong: #b9c3bb;
  --warning: #9b4d2f;
  --shadow: 0 1px 2px rgba(26, 37, 31, 0.04);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.is-modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select {
  font: inherit;
}

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

main {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--accent-dark);
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 260ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(40, 120, 92, 0.24);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  min-height: 88px;
  margin: 0 auto;
  padding: 12px 0 6px;
  text-align: center;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 118px;
  max-width: 30vw;
  height: auto;
  object-fit: contain;
}

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

.brand strong {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  align-items: center;
  gap: 64px;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 5vw, 3.55rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
}

h3 {
  font-size: 1.5rem;
}

.hero__lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.compensate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 142px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 240ms var(--ease),
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    color 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

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

.button:active,
.compensate-button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible,
.compensate-button:focus-visible,
.live-result__help:focus-visible,
.modal-close:focus-visible,
.field-card input:focus,
.field-card select:focus {
  outline: 3px solid rgba(40, 120, 92, 0.18);
  outline-offset: 2px;
}

.button--primary,
.compensate-button {
  background: var(--accent-dark);
  color: #ffffff;
}

.button--primary:hover,
.compensate-button:hover {
  background: var(--accent);
}

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

.button--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.hero__visual {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero__visual img {
  width: 100%;
  min-height: 238px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
  filter: saturate(0.78) contrast(1.02);
}

.intro,
.calculator-section {
  padding: 64px 20px;
}

.intro {
  padding-top: 26px;
  padding-bottom: 28px;
  background: transparent;
  border-top: 1px solid rgba(26, 37, 31, 0.08);
  border-bottom: 1px solid rgba(26, 37, 31, 0.08);
}

.section-copy {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-copy--center {
  text-align: left;
}

.section-copy p:not(.eyebrow) {
  max-width: 64ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.calculator-section {
  background: transparent;
  padding-top: 76px;
  padding-bottom: 110px;
}

.calculator-shell {
  width: min(100%, var(--container));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  background: #fcfcfa;
  border-bottom: 1px solid var(--line);
}

.stepper__item {
  position: relative;
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 130px;
  min-height: 68px;
  padding: 12px 18px;
  color: var(--soft);
  border-right: 1px solid var(--line);
}

.stepper__item:last-child {
  border-right: 0;
}

.stepper__item::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: transparent;
  transform: scaleX(0.4);
  transform-origin: left;
  transition:
    transform 300ms var(--ease),
    background-color 300ms var(--ease);
}

.stepper__item span {
  color: inherit;
  font-variant-numeric: tabular-nums;
  font-size: 0.76rem;
  font-weight: 750;
}

.stepper__item strong {
  color: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.stepper__item.is-active,
.stepper__item.is-complete {
  color: var(--accent-dark);
}

.stepper__item.is-active::after {
  background: var(--accent);
  transform: scaleX(1);
}

.calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 560px;
}

.wizard {
  min-width: 0;
  padding: 48px 54px 42px;
  border-right: 1px solid var(--line);
}

.wizard__step {
  display: none;
}

.wizard__step.is-active {
  display: block;
}

.wizard__header {
  margin-bottom: 34px;
}

.wizard__header p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 650;
}

.wizard__context {
  max-width: 46ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.wizard__step--intro {
  min-height: 0;
}

.wizard__intro {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.wizard__intro-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard__intro h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  text-wrap: balance;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin-bottom: 34px;
}

.field-grid--single {
  grid-template-columns: 1fr;
}

.field-card {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    border-color 240ms var(--ease),
    background-color 240ms var(--ease);
}

.field-card:focus-within {
  border-color: transparent;
  background: transparent;
}

.field-card--intro {
  gap: 10px;
  margin-top: 8px;
}

.field-card span,
.option-card span,
.checkbox-card span {
  color: var(--text);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.field-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.field-card input,
.field-card select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
  padding: 0 13px;
  color: var(--text);
  font-weight: 550;
}

.field-card input::placeholder {
  color: #9aa49d;
}

.field-card input:focus,
.field-card select:focus {
  border-color: var(--accent);
  background: #ffffff;
}

.question-group {
  margin: 0 0 36px;
  padding: 0;
  border: 0;
}

.question-group:last-of-type {
  margin-bottom: 0;
}

.question-group legend {
  width: 100%;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
}

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

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

.option-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
}

.option-card,
.checkbox-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    background-color 240ms var(--ease);
}

.option-card {
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 15px;
  text-align: center;
}

.option-list .option-card {
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  text-align: left;
}

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

.checkbox-card {
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 15px;
}

.option-card:hover,
.checkbox-card:hover {
  border-color: var(--line-strong);
  background: #ffffff;
}

.option-card:active,
.checkbox-card:active {
  transform: scale(0.99);
}

.option-card input,
.checkbox-card input {
  accent-color: var(--accent);
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-list .option-card input {
  position: static;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  opacity: 1;
  pointer-events: auto;
}

.option-card:has(input:checked),
.checkbox-card:has(input:checked) {
  border-color: var(--accent);
  background: #f1f6f3;
}

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

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.consent-row input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-row--start {
  margin: -2px 0 34px;
  padding: 14px 0 0;
  border: 1px solid var(--line);
  border-width: 1px 0 0;
  border-radius: var(--radius-sm);
  background: transparent;
}

.form-alert {
  min-height: 24px;
  margin: 24px 0 0;
  color: var(--warning);
  font-weight: 700;
}

.wizard__controls {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.live-result {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 42px 28px;
  background: #fafbf8;
}

.live-result::before {
  content: "Resultado en vivo";
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-result__metric {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.live-result__metric strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 2.18rem;
  font-weight: 750;
  line-height: 1;
}

.live-result__metric span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.live-result__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 240ms var(--ease),
    transform 240ms var(--ease);
}

.live-result__help:hover {
  border-color: var(--accent);
}

.live-result__help:active {
  transform: translateY(1px);
}

.live-result__help span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow:
    0 1px 2px rgba(26, 37, 31, 0.14),
    inset 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-badge--green {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 5px),
    #88ad1d;
}

.icon-badge--blue {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 5px),
    #168db6;
}

.icon-badge--large {
  width: 60px;
  height: 60px;
  margin: 10px 0 10px;
}

.icon-badge--large svg {
  width: 32px;
  height: 32px;
}

.result-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto 96px;
  padding: 0 0 28px;
  border: 1px solid var(--line);
  border-width: 0 0 1px;
  border-radius: var(--radius);
  background: transparent;
}

.result-teaser[hidden],
.result-modal[hidden],
.calculator-modal[hidden] {
  display: none;
}

.result-teaser p:not(.eyebrow) {
  max-width: 60ch;
  margin: 10px 0 0;
  color: var(--muted);
}

.result-teaser h2 {
  font-size: 1.85rem;
}

.calculator-modal {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  padding: 24px;
}

.calculator-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 11, 0.36), rgba(8, 14, 11, 0.58)),
    rgba(10, 18, 14, 0.22);
  backdrop-filter: blur(8px);
}

.calculator-modal__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 1180px);
  max-height: min(90dvh, 960px);
  overflow-y: auto;
  padding: 32px 34px 34px;
  border: 1px solid rgba(18, 56, 45, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 246, 0.94)),
    #f8faf6;
  box-shadow:
    0 24px 90px rgba(8, 16, 12, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.calculator-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(86, 185, 141, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(242, 154, 77, 0.12), transparent 30%);
  pointer-events: none;
}

.calculator-modal__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px) auto;
  align-items: end;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
  padding: 2px 68px 22px 8px;
  border-bottom: 1px solid rgba(18, 56, 45, 0.1);
}

.calculator-modal__headline {
  display: grid;
  gap: 10px;
  align-self: start;
}

.calculator-modal__header .eyebrow {
  margin: 0;
}

.calculator-modal__header h2 {
  margin: 0;
  max-width: 8ch;
  color: var(--text);
  font-size: clamp(2.6rem, 3.7vw, 4.25rem);
  line-height: 0.92;
  text-wrap: balance;
}

.calculator-modal__summary {
  align-self: center;
  max-width: 34ch;
  margin: 0;
  color: #59665e;
  font-size: 1rem;
  line-height: 1.6;
}

.calculator-modal__close {
  position: absolute;
  top: 2px;
  right: 0;
  margin-top: 0;
}

.calculator-modal .calculator-section {
  padding: 0;
}

.calculator-modal .calculator-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  justify-items: start;
  gap: 16px;
  width: 100%;
  margin-top: 0;
  min-height: 0;
  overflow: visible;
}

.calculator-modal .calculator-shell__bar {
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: min(100%, 540px);
  min-height: 0;
  padding: 18px 20px;
  border: 1px solid rgba(18, 56, 45, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 247, 0.82)),
    #f7faf7;
}

.calculator-modal .calculator-shell__bar div {
  max-width: 34ch;
}

.calculator-modal .calculator-body {
  align-items: start;
  min-height: 0;
  height: auto;
  margin-top: 0;
  overflow: visible;
}

.calculator-modal .stepper {
  margin-top: 0;
  width: 100%;
}

.calculator-modal .wizard {
  overflow: visible;
  padding: 38px 40px 32px;
}

.calculator-modal .wizard__step.is-active {
  display: grid;
  align-content: start;
  gap: 0;
}

.calculator-modal .wizard__header {
  max-width: 34ch;
  margin-bottom: 28px;
  padding-bottom: 16px;
}

.calculator-modal .wizard__header h3 {
  font-size: 2rem;
}

.calculator-modal .wizard__controls {
  position: relative;
  margin-top: 34px;
  padding-top: 20px;
  padding-bottom: 0;
  background: transparent;
}

.calculator-modal .live-result {
  position: sticky;
  top: 0;
  align-self: start;
  padding: 36px 28px 24px;
}

.calculator-modal .live-result__metric {
  padding: 22px 0;
}

.calculator-modal .live-result__help {
  margin-top: 18px;
}

.calculator-modal .field-grid,
.calculator-modal .field-grid--single {
  margin-bottom: 28px;
}

.calculator-modal .question-group {
  margin-bottom: 26px;
}

.calculator-modal .consent-row--start {
  margin-bottom: 26px;
}

.calculator-modal.is-intro-step .calculator-shell {
  gap: 18px;
}

.calculator-modal.is-intro-step .calculator-shell__bar {
  width: min(100%, 640px);
}

.calculator-modal.is-intro-step .calculator-body {
  grid-template-columns: 1fr;
}

.calculator-modal.is-intro-step .wizard {
  max-width: 640px;
  margin: 0 auto;
  border-right: 0;
  padding-top: 44px;
  padding-bottom: 18px;
}

.calculator-modal.is-intro-step .wizard__controls {
  max-width: 220px;
  margin-left: auto;
  padding-top: 24px;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.result-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 37, 31, 0.38);
  backdrop-filter: blur(5px);
}

.result-modal__card {
  position: relative;
  width: min(100%, 720px);
  max-height: min(92dvh, 920px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(26, 37, 31, 0.18);
}

.methodology-card {
  width: min(100%, 860px);
}

.result-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.methodology-card__header {
  align-items: center;
  padding: 28px 34px;
}

.result-modal__header h2 {
  max-width: 620px;
  font-size: 2rem;
}

.methodology-card__header h2 {
  max-width: 680px;
  font-size: 1.58rem;
  letter-spacing: -0.01em;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transition:
    border-color 240ms var(--ease),
    color 240ms var(--ease),
    transform 240ms var(--ease);
}

.methodology-card .modal-close {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #6c726e;
  font-size: 3rem;
  font-weight: 400;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.modal-close:active {
  transform: scale(0.96);
}

.result-modal__body {
  display: grid;
  justify-items: center;
  padding: 32px 34px 36px;
  text-align: center;
}

.methodology-card__body {
  display: grid;
  gap: 22px;
  padding: 36px 54px 34px;
  text-align: left;
}

.methodology-note {
  display: grid;
  gap: 20px;
  padding: 30px 32px;
  border: 0;
  border-radius: var(--radius);
  background: #f6f7f4;
}

.methodology-note p {
  margin: 0;
  color: #2c3831;
  font-size: 1.12rem;
  line-height: 1.78;
}

.methodology-note strong {
  color: #202a25;
  font-weight: 800;
}

.methodology-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.result-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 600;
}

.result-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-pill {
  display: grid;
  grid-template-columns: 46px minmax(0, auto);
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  row-gap: 2px;
  min-height: 84px;
  padding: 18px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.impact-pill:last-child {
  border-right: 0;
}

.impact-pill strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.impact-pill small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

.equivalence-block {
  display: grid;
  justify-items: center;
  max-width: 460px;
  color: #2e3933;
}

.equivalence-block p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
}

.equivalence-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.equivalence-value span {
  font-variant-numeric: tabular-nums;
  font-size: 3.55rem;
  letter-spacing: -0.03em;
}

.equivalence-value small {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 650;
}

.equivalence-block span:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.equivalence-block--secondary {
  margin-top: 24px;
}

.equivalence-block--secondary .equivalence-value span {
  font-size: 3.2rem;
}

.modal-note {
  max-width: 590px;
  margin: 28px 0 0;
  color: #33433b;
  font-weight: 600;
}

.save-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.mini-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: left;
}

.mini-breakdown > div {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 13px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.mini-breakdown > div:last-child {
  border-right: 0;
}

.mini-breakdown span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.mini-breakdown strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 1.08rem;
}

.meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-muted);
}

.meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 380ms var(--ease);
}

.mini-breakdown > div:nth-child(2) .meter span {
  background: rgba(40, 120, 92, 0.72);
}

.mini-breakdown > div:nth-child(3) .meter span {
  background: rgba(40, 120, 92, 0.52);
}

.donation-suggestion {
  display: grid;
  gap: 7px;
  width: 100%;
  max-width: 520px;
  margin-top: 24px;
  border: 1px solid rgba(31, 111, 89, 0.18);
  border-radius: var(--radius-sm);
  background: #f8faf5;
  padding: 18px;
  text-align: left;
}

.donation-suggestion > span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.donation-suggestion strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 2.2rem;
  line-height: 1;
}

.donation-suggestion p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.donation-suggestion p span {
  color: var(--accent-dark);
  font-weight: 750;
}

.compensate-button {
  width: min(100%, 520px);
  min-height: 58px;
  margin-top: 16px;
  text-align: center;
  text-transform: none;
}

.result-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 30px;
  border-top: 1px solid var(--line);
  background: #fbfcfa;
}

.methodology-card .result-modal__footer {
  padding: 24px 34px 28px;
  background: #ffffff;
}

.methodology-card .result-modal__footer .button {
  margin-left: auto;
  min-width: 118px;
  background: #13814e;
}

.site-footer {
  background: #17251f;
  color: rgba(255, 255, 255, 0.72);
  padding: 36px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer span {
  margin-top: 4px;
  font-size: 0.94rem;
}

.site-footer a {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-footer a:hover {
  border-color: #ffffff;
}

.site-footer a:active {
  transform: translateY(1px);
}

.policy-page {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 18px 0 92px;
}

.policy-hero {
  padding: 14px 0 42px;
}

.policy-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 44px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfa;
  padding: clamp(28px, 5vw, 52px);
}

.policy-hero__copy {
  max-width: 62ch;
}

.policy-hero__lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-hero__facts {
  display: grid;
  align-content: start;
  gap: 0;
  border-left: 1px solid rgba(23, 61, 50, 0.12);
  padding-left: 32px;
}

.policy-fact {
  padding: 16px 0;
  border-top: 1px solid rgba(23, 61, 50, 0.12);
}

.policy-fact:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-fact span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-fact strong,
.policy-fact a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.policy-fact a:hover {
  text-decoration: underline;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 244px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 24px;
  padding-top: 4px;
}

.policy-toc__label {
  grid-column: 1 / -1;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-toc a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.policy-toc a:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-toc a:hover {
  color: var(--accent-dark);
  transform: translateX(2px);
}

.policy-surface {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.policy-block {
  display: grid;
  grid-template-columns: minmax(172px, 212px) minmax(0, 1fr);
  gap: 24px 34px;
  padding: 30px 34px;
  border-top: 1px solid var(--line);
}

.policy-block:first-child {
  border-top: 0;
}

.policy-block__kicker {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-block h2 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.policy-block__content {
  max-width: 68ch;
}

.policy-block__content p,
.policy-list {
  margin: 0;
  color: var(--muted);
}

.policy-block__content p + p,
.policy-note {
  margin-top: 14px;
}

.policy-block__content strong {
  color: var(--text);
}

.policy-block__content a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.policy-block__content a:hover {
  text-decoration: underline;
}

.policy-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.policy-note {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 14px 16px;
  color: var(--accent-dark);
  font-weight: 600;
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 60;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

body.is-modal-open .consent-banner {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.consent-banner__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1100px);
  margin: 0 auto;
  border: 1px solid rgba(19, 37, 31, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 18px;
  backdrop-filter: blur(12px);
}

.consent-banner p {
  max-width: 74ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.consent-banner a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.consent-banner a:hover {
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.donation-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 70px;
  width: min(calc(100% - 40px), var(--container));
  min-height: calc(100dvh - 68px);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.donation-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.beneficiary-card {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.beneficiary-card__header {
  display: grid;
  gap: 8px;
}

.beneficiary-card__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.beneficiary-card__header h2 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.06;
}

.beneficiary-card__layout {
  display: grid;
  grid-template-columns: minmax(176px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.beneficiary-card__mark {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfa;
  padding: 16px;
}

.beneficiary-card__mark svg {
  display: block;
  width: 100%;
  max-width: 188px;
  height: auto;
}

.beneficiary-card__content {
  display: grid;
  gap: 14px;
}

.beneficiary-card__content p,
.beneficiary-method p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.beneficiary-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.beneficiary-card__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(23, 61, 50, 0.12);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 12px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 650;
}

.beneficiary-method {
  display: grid;
  gap: 10px;
  border-left: 3px solid rgba(31, 111, 89, 0.18);
  background: #f8faf7;
  padding: 18px 18px 18px 20px;
}

.beneficiary-method h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.donation-panel {
  display: grid;
  gap: 18px;
  padding: 0 0 0 28px;
  border: 1px solid var(--line);
  border-width: 0 0 0 1px;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.donation-panel h2 {
  font-size: 1.8rem;
}

.donation-panel p,
.donation-form {
  margin: 0;
}

.donation-panel p {
  color: var(--muted);
}

.donation-form {
  display: grid;
  gap: 14px;
}

.donation-trip-summary {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(31, 111, 89, 0.18);
  border-radius: var(--radius-sm);
  background: #f8faf5;
  padding: 16px;
}

.donation-trip-summary[hidden] {
  display: none;
}

.donation-trip-summary span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.donation-trip-summary strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 1.45rem;
  line-height: 1.1;
}

.donation-trip-summary strong span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.donation-trip-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.donation-trip-summary p span {
  color: var(--accent-dark);
  font-weight: 750;
}

.donation-method {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8faf5;
  padding: 0 12px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.donation-amounts label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.donation-amounts label.is-recommended {
  border-color: var(--accent);
  background: #edf5f1;
}

.donation-amounts label em {
  margin-left: 6px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.donation-amounts input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.donation-amounts label:has(input:checked) {
  border-color: var(--accent);
  background: #edf5f1;
  color: var(--accent-dark);
}

.custom-donation {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.custom-donation[hidden] {
  display: none;
}

.custom-donation input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 0 14px;
  color: var(--text);
  font: inherit;
}

.custom-donation input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(31, 111, 89, 0.14);
}

.payment-status,
.payment-disabled {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8faf5;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.payment-status[data-state="success"] {
  border-color: rgba(31, 111, 89, 0.24);
  background: #edf5f1;
  color: var(--accent-dark);
}

.payment-status[data-state="failure"],
.payment-disabled {
  border-color: rgba(155, 77, 47, 0.22);
  background: #fff7f2;
  color: #8a442b;
}

.payment-error {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.payment-error section {
  width: min(100%, 520px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px;
}

.certificate-actions {
  display: grid;
  gap: 10px;
}

.certificate-actions[hidden] {
  display: none;
}

.certificate-body {
  background: #eef2ef;
}

.certificate-page {
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  padding: 30px 0 70px;
}

.certificate-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.certificate-toolbar form {
  margin: 0;
}

.certificate-flash {
  border: 1px solid rgba(31, 111, 89, 0.22);
  border-radius: var(--radius-sm);
  background: #edf5f1;
  padding: 12px 14px;
  color: var(--accent-dark);
  font-weight: 750;
}

.certificate-empty {
  width: min(100%, 560px);
  margin: 80px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px;
}

.certificate-empty h1 {
  font-size: 2rem;
}

.certificate-empty p:not(.eyebrow) {
  color: var(--muted);
}

.certificate-sheet {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 720px;
  border: 1px solid #cfd9d3;
  background: #f8fbfa;
  color: #17211d;
}

.certificate-rail {
  display: grid;
  align-content: space-between;
  gap: 40px;
  border-right: 1px solid #c8d3ce;
  background:
    linear-gradient(180deg, rgba(31, 111, 89, 0.08), rgba(31, 111, 89, 0)),
    #edf4f1;
  padding: 42px 34px;
}

.certificate-logo {
  display: block;
  width: min(100%, 168px);
  height: auto;
}

.certificate-rail h1 {
  max-width: 190px;
  border-top: 4px solid #5b8fbd;
  padding-top: 18px;
  color: #4a79a4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.certificate-content {
  display: grid;
  align-content: start;
  gap: 30px;
  padding: 42px 48px;
}

.certificate-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #2e3933;
}

.certificate-head strong,
.certificate-head span {
  display: block;
}

.certificate-head-logo {
  display: none;
}

.certificate-head strong {
  font-size: 1rem;
  font-weight: 850;
}

.certificate-head span {
  color: #5f6c65;
  font-size: 0.88rem;
}

.certificate-head > div:last-child {
  text-align: right;
  text-transform: uppercase;
}

.certificate-presented {
  margin-top: 54px;
}

.certificate-presented p,
.certificate-details span,
.certificate-impact span {
  margin: 0;
  color: #59655f;
  font-size: 0.94rem;
  font-weight: 700;
}

.certificate-presented h2 {
  margin: 4px 0 0;
  color: #17211d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.1;
}

.certificate-presented > span {
  display: block;
  margin-top: 8px;
  color: #59655f;
}

.certificate-details {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 4px solid #5b8fbd;
}

.certificate-details div {
  display: grid;
  gap: 3px;
}

.certificate-details strong {
  color: #17211d;
  font-size: 1.04rem;
}

.certificate-impact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cfd9d3;
  border-bottom: 1px solid #cfd9d3;
}

.certificate-impact div {
  display: grid;
  gap: 6px;
  padding: 20px 22px 20px 0;
}

.certificate-impact div + div {
  border-left: 1px solid #cfd9d3;
  padding-left: 22px;
}

.certificate-impact strong {
  color: #17211d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.certificate-impact small {
  color: #59655f;
  font-size: 0.9rem;
}

.certificate-copy {
  max-width: 680px;
  margin: 0;
  color: #29342f;
  font-size: 1.02rem;
  line-height: 1.72;
}

.certificate-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 12px;
  color: #59655f;
  font-size: 0.82rem;
}

.certificate-footer strong,
.certificate-footer span {
  display: block;
}

.certificate-footer strong {
  color: #17211d;
  font-size: 0.9rem;
}

.certificate-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .donation-page {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 420px;
  }

  .calculator-body {
    grid-template-columns: 1fr;
  }

  .wizard {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .live-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .live-result::before,
  .live-result__help {
    grid-column: 1 / -1;
  }

  .donation-panel {
    padding: 28px 0 0;
    border-width: 1px 0 0;
  }

  .beneficiary-card__layout {
    grid-template-columns: 1fr;
  }

  .beneficiary-card__mark {
    max-width: 220px;
  }

  .certificate-sheet {
    grid-template-columns: 1fr;
  }

  .certificate-rail {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid #c8d3ce;
  }

  .policy-hero__panel,
  .policy-layout,
  .policy-block {
    grid-template-columns: 1fr;
  }

  .policy-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    border-left: 0;
    border-top: 1px solid rgba(23, 61, 50, 0.12);
    padding-top: 24px;
    padding-left: 0;
  }

  .policy-fact {
    padding: 0;
    border-top: 0;
  }

  .policy-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .policy-toc a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    justify-content: center;
    gap: 0;
    width: min(calc(100% - 28px), var(--container));
    padding-top: 16px;
  }

  .brand__logo {
    width: 104px;
    max-width: 38vw;
  }

  .hero,
  .donation-page {
    width: min(calc(100% - 28px), var(--container));
    padding: 38px 0 64px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    width: min(calc(100% - 28px), var(--container));
  }

  .site-footer__links {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  h3,
  .wizard__header h3 {
    font-size: 1.34rem;
  }

  .hero__lead,
  .section-copy p:not(.eyebrow),
  .donation-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .hero__visual,
  .hero__visual img {
    min-height: 220px;
  }

  .intro,
  .calculator-section {
    padding: 52px 14px;
  }

  .intro {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .calculator-shell {
    margin-top: 28px;
  }

  .stepper {
    display: none;
  }

  .wizard {
    padding: 20px;
  }

  .result-teaser {
    padding: 0 0 24px;
  }

  .donation-panel {
    padding-top: 24px;
  }

  .beneficiary-card {
    gap: 18px;
    margin-top: 30px;
    padding-top: 24px;
  }

  .beneficiary-card__mark {
    max-width: none;
    padding: 12px;
  }

  .beneficiary-method {
    padding: 16px 14px 16px 16px;
  }

  .policy-page {
    padding: 10px 0 72px;
  }

  .policy-hero {
    padding: 8px 0 26px;
  }

  .policy-hero__panel {
    gap: 26px;
    border-radius: 14px;
    padding: 24px 20px;
  }

  .policy-hero__lead {
    font-size: 1rem;
  }

  .policy-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 18px;
  }

  .policy-fact {
    padding: 12px 0;
    border-top: 1px solid rgba(23, 61, 50, 0.12);
  }

  .policy-fact:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .policy-layout {
    gap: 24px;
  }

  .policy-toc {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-right: -6px;
    scrollbar-width: none;
  }

  .policy-toc::-webkit-scrollbar {
    display: none;
  }

  .policy-toc__label {
    flex: 0 0 100%;
    margin-bottom: 2px;
  }

  .policy-toc a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    padding: 10px 14px;
  }

  .policy-toc a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .policy-surface {
    border-radius: 14px;
  }

  .policy-block {
    gap: 12px;
    padding: 22px 20px;
  }

  .policy-note {
    padding: 13px 14px;
  }

  .field-grid,
  .field-grid--single,
  .option-grid,
  .option-grid--three,
  .checkbox-list,
  .mini-breakdown,
  .result-pills,
  .donation-amounts {
    grid-template-columns: 1fr;
  }

  .wizard__controls,
  .result-modal__footer,
  .result-teaser {
    align-items: stretch;
    flex-direction: column;
  }

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

  .live-result {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .result-modal {
    padding: 10px;
  }

  .result-modal__header,
  .result-modal__body,
  .methodology-card__body,
  .result-modal__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .methodology-card__body {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .methodology-note {
    gap: 16px;
    padding: 22px;
  }

  .methodology-note p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .result-modal__header h2 {
    font-size: 1.65rem;
  }

  .impact-pill {
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-pill:last-child {
    border-bottom: 0;
  }

  .mini-breakdown > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-breakdown > div:last-child {
    border-bottom: 0;
  }

  .equivalence-value span {
    font-size: 3.05rem;
  }

  .equivalence-block--secondary .equivalence-value span {
    font-size: 2.85rem;
  }

  .certificate-content {
    padding: 28px 22px;
  }

  .certificate-head,
  .certificate-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .certificate-head > div:last-child {
    text-align: left;
  }

  .certificate-head-logo {
    display: block;
    width: 120px;
    height: auto;
    margin-bottom: 10px;
  }

  .certificate-impact,
  .certificate-footer {
    grid-template-columns: 1fr;
  }

  .certificate-impact div + div {
    border-left: 0;
    border-top: 1px solid #cfd9d3;
    padding-left: 0;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .consent-banner__inner,
  .consent-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* 2026 Redesign overrides */

:root {
  --page: #f3f3ed;
  --surface: #fcfcf8;
  --surface-muted: #edf1e8;
  --text: #15211c;
  --muted: #5f6a63;
  --soft: #7a857d;
  --accent: #1f7d60;
  --accent-dark: #12382d;
  --accent-soft: #e7f3ec;
  --line: #d6ddd4;
  --line-strong: #aab7ad;
  --warning: #8c472f;
  --radius: 10px;
  --radius-sm: 8px;
  --container: 1220px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(31, 125, 96, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f7f1 0%, #f3f3ed 100%);
  color: var(--text);
}

::selection {
  background: rgba(31, 125, 96, 0.16);
}

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

.site-header {
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(18, 56, 45, 0.1);
}

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

.brand__logo {
  width: 92px;
  max-width: none;
}

.site-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-header__meta span {
  white-space: nowrap;
}

.site-header__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 14px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-header__meta a:hover {
  border-color: rgba(18, 56, 45, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.site-header__meta a:active {
  transform: translateY(1px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.97;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: start;
  gap: 72px;
  width: min(calc(100% - 48px), var(--container));
  padding: 38px 0 72px;
}

.hero__content {
  max-width: 760px;
  padding-top: 32px;
}

.hero__lead {
  max-width: 50ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
}

.button,
.compensate-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.button--primary,
.compensate-button {
  background: var(--accent-dark);
}

.button--primary:hover,
.compensate-button:hover {
  background: var(--accent);
}

.button--ghost {
  border-color: rgba(18, 56, 45, 0.16);
  background: rgba(255, 255, 255, 0.66);
}

.button--ghost:hover {
  border-color: rgba(18, 56, 45, 0.3);
  background: rgba(255, 255, 255, 0.94);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(18, 56, 45, 0.12);
  list-style: none;
}

.hero__meta li {
  display: grid;
  gap: 6px;
}

.hero__meta strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.hero__meta span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__aside {
  align-self: stretch;
}

.hero__launch {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(31, 125, 96, 0.1), rgba(31, 125, 96, 0.02)),
    rgba(252, 252, 248, 0.96);
}

.hero__launch-head,
.hero__launch-copy {
  display: grid;
  gap: 8px;
}

.hero__launch-head p,
.hero__launch-copy span {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__launch-head strong {
  max-width: 18ch;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.04;
}

.hero__visual {
  padding: 12px;
  border: 1px solid rgba(18, 56, 45, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.hero__visual img {
  min-height: 286px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(33, 151, 200, 0.14), rgba(31, 125, 96, 0.12)),
    #f7fbf9;
  filter: saturate(1.06) contrast(1.02);
}

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

.hero__launch-list li {
  display: grid;
  gap: 2px;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(18, 56, 45, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__launch-list strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.hero__launch-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.hero__launch-button {
  min-height: 54px;
}

.intro {
  padding: 0 20px 20px;
  border: 0;
}

.intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 54px;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(18, 56, 45, 0.1);
  border-bottom: 1px solid rgba(18, 56, 45, 0.1);
}

.section-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.intro__rail {
  display: grid;
}

.intro__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(18, 56, 45, 0.1);
}

.intro__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.intro__item > span {
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.intro__item div {
  display: grid;
  gap: 6px;
}

.intro__item strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.intro__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.calculator-section {
  padding-top: 78px;
  padding-bottom: 120px;
}

.calculator-shell {
  margin-top: 36px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.calculator-shell__bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18, 56, 45, 0.12);
}

.calculator-shell__bar div {
  display: grid;
  gap: 6px;
}

.calculator-shell__bar span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-shell__bar strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.calculator-shell__bar p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.stepper {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.stepper__item {
  min-height: 76px;
  padding: 15px 18px;
  border-color: rgba(18, 56, 45, 0.08);
}

.stepper__item::after {
  right: 16px;
  bottom: 10px;
  left: 16px;
  height: 3px;
}

.stepper__item span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.stepper__item strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.stepper__item.is-active::after {
  background: #2bb673;
}

.calculator-body {
  grid-template-columns: minmax(0, 1fr) 336px;
  min-height: 620px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(252, 252, 248, 0.96);
}

.wizard {
  padding: 40px 42px 36px;
  border-right: 1px solid rgba(18, 56, 45, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.wizard__header {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18, 56, 45, 0.08);
}

.wizard__header p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-grid {
  gap: 20px 24px;
}

.field-card span,
.option-card span,
.checkbox-card span {
  font-size: 0.95rem;
  font-weight: 700;
}

.field-card small {
  font-size: 0.8rem;
  line-height: 1.45;
}

.field-card input,
.field-card select,
.custom-donation input {
  min-height: 48px;
  border-color: rgba(18, 56, 45, 0.13);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
}

.field-card input:focus,
.field-card select:focus,
.custom-donation input:focus {
  border-color: rgba(31, 125, 96, 0.6);
  background: #ffffff;
}

.question-group {
  margin-bottom: 32px;
}

.question-group legend {
  margin-bottom: 14px;
  font-size: 1.02rem;
  font-weight: 750;
}

.option-grid,
.checkbox-list {
  gap: 10px;
}

.option-list {
  border-color: rgba(18, 56, 45, 0.12);
  background: transparent;
}

.option-card,
.checkbox-card {
  min-height: 60px;
  border-color: rgba(18, 56, 45, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.option-card:hover,
.checkbox-card:hover {
  border-color: rgba(18, 56, 45, 0.28);
  background: #ffffff;
}

.option-card:has(input:checked),
.checkbox-card:has(input:checked) {
  border-color: rgba(31, 125, 96, 0.44);
  background: var(--accent-soft);
}

.consent-row {
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent-row--start {
  margin-bottom: 34px;
  padding-top: 18px;
}

.wizard__controls {
  margin-top: 40px;
  padding-top: 24px;
}

.live-result {
  position: relative;
  align-content: start;
  gap: 0;
  padding: 30px 26px 26px;
  background:
    linear-gradient(180deg, rgba(31, 125, 96, 0.12), rgba(31, 125, 96, 0.03)),
    #eef6f2;
}

.live-result::before {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-result__metric {
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  padding: 24px 0;
  border-color: rgba(18, 56, 45, 0.12);
}

.live-result__metric strong {
  font-size: 2.65rem;
}

.live-result__metric span:last-child {
  font-size: 0.92rem;
}

.live-result__help {
  justify-content: flex-start;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 14px;
  border-color: rgba(18, 56, 45, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.live-result__help:hover {
  border-color: rgba(18, 56, 45, 0.3);
}

.icon-badge {
  width: 44px;
  height: 44px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.icon-badge--green {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 5px),
    #86b117;
}

.icon-badge--blue {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 5px),
    #2197c8;
}

.icon-badge--large {
  width: 74px;
  height: 74px;
  margin: 8px 0 12px;
}

.icon-badge--large svg {
  width: 38px;
  height: 38px;
}

.result-teaser {
  align-items: end;
  gap: 24px;
  margin: 0 auto 106px;
  padding: 26px 0 0;
  border-width: 1px 0 0;
}

.result-teaser h2 {
  font-size: 2rem;
}

.result-modal {
  padding: 20px;
}

.result-modal__backdrop {
  background: rgba(16, 24, 20, 0.44);
  backdrop-filter: blur(10px);
}

.result-modal__card {
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: 14px;
  background: rgba(252, 252, 248, 0.98);
  box-shadow: 0 24px 80px rgba(16, 24, 20, 0.14);
}

.result-modal__header {
  padding: 28px 30px 20px;
  border-bottom-color: rgba(18, 56, 45, 0.12);
  background: linear-gradient(180deg, rgba(31, 125, 96, 0.06), rgba(31, 125, 96, 0));
}

.result-modal__header h2 {
  font-size: 2.15rem;
}

.methodology-card__header h2 {
  font-size: 1.7rem;
}

.result-modal__body {
  padding: 28px 30px 34px;
}

.methodology-card__body {
  gap: 20px;
  padding: 30px 34px 32px;
}

.methodology-note {
  padding: 28px 30px;
  border: 1px solid rgba(18, 56, 45, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.methodology-note p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.result-kicker {
  font-size: 0.98rem;
}

.result-pills {
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.impact-pill {
  min-height: 96px;
  padding: 22px 18px;
  border-right-color: rgba(18, 56, 45, 0.1);
}

.impact-pill strong {
  font-size: 2.3rem;
}

.impact-pill small {
  font-size: 0.92rem;
}

.equivalence-block {
  width: 100%;
  max-width: 100%;
  padding: 22px 0 0;
  border-top: 1px solid rgba(18, 56, 45, 0.1);
}

.equivalence-block p {
  font-size: 1.02rem;
}

.equivalence-value {
  gap: 10px;
  margin-top: 2px;
}

.equivalence-value span {
  font-size: 4.2rem;
}

.equivalence-value small {
  font-size: 0.98rem;
  font-weight: 700;
}

.equivalence-block span:last-child {
  max-width: 34ch;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.equivalence-block--secondary {
  margin-top: 28px;
}

.equivalence-block--secondary .equivalence-value span {
  font-size: 3.8rem;
}

.modal-note {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 56, 45, 0.1);
}

.save-status {
  min-height: 24px;
  margin-top: 14px;
}

.mini-breakdown {
  overflow: hidden;
  margin-top: 30px;
  border-color: rgba(18, 56, 45, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.mini-breakdown > div {
  min-height: 100px;
  padding: 16px;
  border-right-color: rgba(18, 56, 45, 0.1);
}

.mini-breakdown span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-breakdown strong {
  font-size: 1.2rem;
}

.meter {
  height: 10px;
}

.donation-suggestion {
  margin-top: 26px;
  border-color: rgba(31, 125, 96, 0.2);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
}

.donation-suggestion > span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-suggestion strong {
  font-size: 2.45rem;
}

.donation-suggestion p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.compensate-button {
  width: 100%;
  min-height: 56px;
}

.result-modal__footer {
  padding: 20px 30px 26px;
  border-top-color: rgba(18, 56, 45, 0.12);
  background: transparent;
}

.site-footer {
  padding: 34px 0 40px;
  background: #14211c;
}

.site-footer__inner {
  width: min(calc(100% - 48px), var(--container));
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer strong {
  font-size: 1.02rem;
}

.site-footer span {
  max-width: 36ch;
  line-height: 1.55;
}

.site-footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.94rem;
}

.donation-page {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 388px);
  align-items: start;
  gap: 80px;
  width: min(calc(100% - 48px), var(--container));
  min-height: auto;
  padding: 42px 0 108px;
}

.donation-copy {
  padding-top: 22px;
}

.donation-copy p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.68;
}

.donation-copy__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 56, 45, 0.12);
}

.donation-copy__points div {
  display: grid;
  gap: 6px;
}

.donation-copy__points span {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-copy__points strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.38;
}

.beneficiary-card {
  gap: 24px;
  margin-top: 42px;
  padding-top: 32px;
  border-top-color: rgba(18, 56, 45, 0.12);
}

.beneficiary-card__header {
  gap: 10px;
}

.beneficiary-card__header h2 {
  max-width: 16ch;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.beneficiary-card__layout {
  gap: 32px;
}

.beneficiary-card__mark {
  align-self: start;
  border-color: rgba(18, 56, 45, 0.12);
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
}

.beneficiary-card__content p,
.beneficiary-method p {
  line-height: 1.65;
}

.beneficiary-card__pills span {
  min-height: 36px;
  border-color: rgba(18, 56, 45, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.beneficiary-method {
  gap: 12px;
  border-left: 0;
  border-top: 2px solid rgba(18, 56, 45, 0.6);
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 22px;
}

.donation-panel {
  position: sticky;
  top: 24px;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(18, 56, 45, 0.12);
  border-width: 1px;
  background: rgba(252, 252, 248, 0.96);
}

.donation-panel h2 {
  font-size: 1.72rem;
}

.donation-trip-summary,
.payment-status,
.payment-disabled {
  border-color: rgba(18, 56, 45, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.donation-method {
  min-height: 36px;
  border-color: rgba(18, 56, 45, 0.12);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.donation-amounts {
  gap: 12px;
}

.donation-amounts label {
  min-height: 62px;
  border-color: rgba(18, 56, 45, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.donation-amounts label.is-recommended,
.donation-amounts label:has(input:checked) {
  border-color: rgba(31, 125, 96, 0.34);
  background: var(--accent-soft);
}

.policy-page {
  width: min(calc(100% - 48px), var(--container));
  padding: 24px 0 90px;
}

.policy-hero {
  padding: 18px 0 34px;
}

.policy-hero__panel {
  gap: 48px;
  border-color: rgba(18, 56, 45, 0.12);
  border-radius: 14px;
  background: rgba(252, 252, 248, 0.94);
}

.policy-hero__lead {
  max-width: 56ch;
  line-height: 1.68;
}

.policy-hero__facts {
  border-left-color: rgba(18, 56, 45, 0.1);
}

.policy-fact {
  border-top-color: rgba(18, 56, 45, 0.1);
}

.policy-layout {
  gap: 46px;
}

.policy-toc a {
  border-color: rgba(18, 56, 45, 0.1);
}

.policy-surface {
  border-color: rgba(18, 56, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-block {
  gap: 22px 32px;
  padding: 30px 32px;
  border-top-color: rgba(18, 56, 45, 0.1);
}

.policy-note {
  border-left-color: rgba(31, 125, 96, 0.62);
  background: var(--accent-soft);
}

.consent-banner__inner {
  width: min(100%, 920px);
  border-color: rgba(18, 56, 45, 0.12);
  border-radius: 12px;
  background: rgba(252, 252, 248, 0.96);
  padding: 14px 16px;
}

.certificate-body {
  background: linear-gradient(180deg, #f0f4f1 0%, #e8eeeb 100%);
}

.certificate-toolbar {
  margin-bottom: 20px;
}

.certificate-flash,
.certificate-empty,
.payment-error section {
  border-color: rgba(18, 56, 45, 0.12);
}

.certificate-sheet {
  border-color: rgba(18, 56, 45, 0.14);
  background: #f8fbfa;
}

@media (max-width: 1180px) {
  .hero,
  .donation-page {
    gap: 54px;
  }

  .calculator-body {
    grid-template-columns: minmax(0, 1fr) 316px;
  }

  .donation-copy__points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header__inner,
  .hero,
  .donation-page,
  .policy-page,
  .site-footer__inner {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header__meta {
    display: none;
  }

  .hero,
  .intro__layout,
  .donation-page,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__content,
  .donation-copy {
    padding-top: 0;
  }

  .hero__meta,
  .donation-copy__points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .calculator-shell__bar {
    align-items: start;
    flex-direction: column;
  }

  .calculator-body {
    grid-template-columns: 1fr;
  }

  .wizard {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 56, 45, 0.1);
  }

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

  .live-result::before,
  .live-result__help {
    grid-column: 1 / -1;
  }

  .live-result__help {
    justify-content: center;
  }

  .donation-panel {
    position: static;
  }

  .policy-hero__panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .policy-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    border-top: 1px solid rgba(18, 56, 45, 0.1);
    border-left: 0;
    padding-top: 22px;
    padding-left: 0;
  }

  .policy-fact {
    padding: 0;
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header__inner,
  .hero,
  .donation-page,
  .policy-page,
  .site-footer__inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    padding: 14px 0 14px;
  }

  .brand__logo {
    width: 86px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero,
  .donation-page {
    padding: 26px 0 62px;
  }

  .hero__lead,
  .section-copy p:not(.eyebrow),
  .donation-copy p:not(.eyebrow),
  .policy-hero__lead {
    font-size: 1rem;
  }

  .hero__meta {
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero__visual {
    padding: 12px;
  }

  .hero__visual img {
    min-height: 236px;
  }

  .hero__panel,
  .donation-panel {
    padding: 20px;
  }

  .intro,
  .calculator-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .intro__layout {
    gap: 24px;
    padding: 26px 0 30px;
  }

  .calculator-section {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .calculator-shell {
    margin-top: 28px;
  }

  .calculator-shell__bar {
    gap: 14px;
    padding-bottom: 16px;
  }

  .stepper {
    display: none;
  }

  .wizard {
    padding: 22px 20px 24px;
  }

  .field-grid,
  .field-grid--single,
  .option-grid,
  .option-grid--three,
  .checkbox-list,
  .mini-breakdown,
  .result-pills,
  .donation-amounts {
    grid-template-columns: 1fr;
  }

  .live-result {
    grid-template-columns: 1fr;
    padding: 22px 20px 20px;
  }

  .live-result__metric strong {
    font-size: 2.3rem;
  }

  .wizard__controls,
  .result-modal__footer,
  .result-teaser {
    align-items: stretch;
    flex-direction: column;
  }

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

  .result-teaser {
    padding-top: 18px;
    padding-bottom: 0;
  }

  .result-modal {
    padding: 10px;
  }

  .result-modal__header,
  .result-modal__body,
  .methodology-card__body,
  .result-modal__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .result-modal__header h2 {
    font-size: 1.65rem;
  }

  .methodology-card__header h2 {
    font-size: 1.5rem;
  }

  .methodology-note {
    padding: 20px;
  }

  .impact-pill {
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 56, 45, 0.1);
  }

  .impact-pill:last-child,
  .mini-breakdown > div:last-child {
    border-bottom: 0;
  }

  .mini-breakdown > div {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 56, 45, 0.1);
  }

  .equivalence-value span {
    font-size: 3.2rem;
  }

  .equivalence-block--secondary .equivalence-value span {
    font-size: 2.9rem;
  }

  .beneficiary-card {
    margin-top: 32px;
    padding-top: 26px;
  }

  .beneficiary-card__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .beneficiary-card__mark {
    max-width: 220px;
    padding: 14px;
  }

  .beneficiary-method {
    padding: 18px;
  }

  .policy-page {
    padding: 12px 0 72px;
  }

  .policy-hero {
    padding: 8px 0 24px;
  }

  .policy-hero__panel {
    gap: 24px;
    padding: 24px 20px;
  }

  .policy-hero__actions {
    flex-direction: column;
  }

  .policy-hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 18px;
  }

  .policy-fact {
    padding: 12px 0;
    border-top: 1px solid rgba(18, 56, 45, 0.1);
  }

  .policy-fact:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .policy-layout {
    gap: 24px;
  }

  .policy-toc {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-right: -6px;
    scrollbar-width: none;
  }

  .policy-toc::-webkit-scrollbar {
    display: none;
  }

  .policy-toc__label {
    flex: 0 0 100%;
    margin-bottom: 2px;
  }

  .policy-toc a {
    flex: 0 0 auto;
    border: 1px solid rgba(18, 56, 45, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 14px;
  }

  .policy-block {
    gap: 12px;
    padding: 22px 20px;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .site-footer__links {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .consent-banner__inner,
  .consent-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
}

.home-page .site-header__inner {
  justify-content: center;
  border-bottom: 0;
  padding-top: 28px;
  padding-bottom: 0;
}

.home-page .hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 28px;
  overflow: hidden;
  background: #223427;
}

.home-page .hero__backdrop,
.home-page .hero__overlay {
  position: absolute;
  inset: 0;
}

.home-page .hero__backdrop {
  background:
    linear-gradient(180deg, rgba(14, 24, 18, 0.28), rgba(14, 24, 18, 0.42)),
    radial-gradient(circle at 70% 18%, rgba(255, 214, 122, 0.5), transparent 24%),
    radial-gradient(circle at 25% 62%, rgba(141, 103, 52, 0.38), transparent 32%),
    linear-gradient(180deg, rgba(136, 104, 58, 0.18), rgba(42, 61, 36, 0.62)),
    url("img/chile-travel.svg") center 62% / 1180px no-repeat;
  filter: blur(18px) saturate(0.88) brightness(0.92);
  transform: scale(1.08);
}

.home-page .hero__overlay {
  background:
    linear-gradient(180deg, rgba(10, 18, 14, 0.52), rgba(10, 18, 14, 0.26) 30%, rgba(10, 18, 14, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 40%, rgba(0, 0, 0, 0.24));
}

.home-page .hero__center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(100%, 860px);
  padding: 120px 0 72px;
  color: #ffffff;
  text-align: center;
}

.home-page .hero__bubble {
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 22px;
  color: #34423a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(18, 28, 22, 0.18);
}

.home-page .hero__badge {
  display: grid;
  place-items: center;
  width: 184px;
  height: 184px;
  margin: 8px 0 10px;
}

.home-page .hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(10, 18, 14, 0.34));
}

.home-page .hero .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.home-page .hero h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  line-height: 0.96;
  text-shadow: 0 10px 24px rgba(10, 18, 14, 0.24);
}

.home-page .hero__duration {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
}

.home-page .hero__duration::after {
  content: "";
  display: block;
  width: 132px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #f29a4d;
}

.home-page .hero__lead {
  max-width: 48ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-page .hero__sections {
  max-width: 34ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.55;
}

.home-page .hero__selector {
  display: flex;
  justify-content: center;
  width: min(100%, 360px);
  margin-top: 26px;
}

.home-page .hero__launch-button {
  width: 100%;
  min-height: 58px;
  border-radius: 10px;
  background: #56b98d;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 750;
}

.home-page .hero__launch-button:hover {
  background: #49ac80;
}

.home-page .hero__meta {
  display: none;
}

.home-page .calculator-modal .calculator-section {
  padding: 0;
}

.home-page .calculator-section > .section-copy {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.home-page .calculator-section > .section-copy h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
}

.home-page .calculator-shell__bar {
  align-items: center;
}

.home-page .calculator-shell__bar strong {
  max-width: 18ch;
  font-size: 1.45rem;
  line-height: 1.04;
}

.home-page .calculator-shell__bar p {
  max-width: 34ch;
  font-size: 0.98rem;
}

.home-page .stepper {
  background: rgba(255, 255, 255, 0.94);
}

.home-page .stepper__item {
  min-height: 80px;
}

.home-page .stepper__item.is-active {
  background: rgba(43, 182, 115, 0.08);
}

.home-page .calculator-body {
  background: rgba(255, 255, 255, 0.95);
}

.home-page .wizard {
  padding: 46px 48px 40px;
}

.home-page .wizard__header {
  max-width: 38ch;
}

.home-page .wizard__header h3 {
  font-size: 1.98rem;
  line-height: 1;
}

.home-page .field-card span,
.home-page .question-group legend {
  font-size: 1rem;
}

.home-page .live-result {
  padding-top: 34px;
}

.home-page .live-result__metric strong {
  font-size: 3rem;
}

.home-page .result-teaser {
  margin-top: 18px;
}

.home-page .intro {
  padding-top: 0;
  padding-bottom: 0;
  background: #4d906d;
}

.home-page .intro__layout {
  gap: 56px;
  padding: 52px 0;
  border-top: 0;
  border-bottom: 0;
}

.home-page .intro .eyebrow,
.home-page .intro__item > span {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .intro h2,
.home-page .intro__item strong {
  color: #ffffff;
}

.home-page .intro .section-copy p:not(.eyebrow),
.home-page .intro__item p {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .intro__item {
  border-top-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 980px) {
  .calculator-modal {
    padding: 18px;
  }

  .calculator-modal__panel {
    width: min(100%, 1040px);
    gap: 16px;
    padding: 24px 22px 24px;
    border-radius: 28px;
  }

  .calculator-modal__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px 18px;
    padding: 2px 60px 18px 4px;
  }

  .calculator-modal__header h2 {
    max-width: 9ch;
    font-size: clamp(2.1rem, 5vw, 3rem);
  }

  .calculator-modal__summary {
    grid-column: 1 / -1;
    max-width: 52ch;
    font-size: 0.98rem;
  }

  .calculator-modal .calculator-shell__bar {
    min-height: 0;
    padding: 18px 20px;
  }

  .calculator-modal .calculator-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .calculator-modal .live-result {
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    padding: 22px 22px 20px;
    border-radius: 24px;
  }

  .calculator-modal .live-result::before,
  .calculator-modal .live-result__help {
    grid-column: 1 / -1;
  }

  .calculator-modal .live-result__help {
    margin-top: 8px;
  }

  .calculator-modal.is-intro-step .calculator-shell__bar,
  .calculator-modal.is-intro-step .wizard {
    max-width: 100%;
  }

  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero__center {
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .home-page .calculator-shell__bar {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .calculator-modal {
    padding: 0;
  }

  .calculator-modal__panel {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    gap: 14px;
    padding: 72px 14px 18px;
    border: 0;
    border-radius: 0;
  }

  .calculator-modal__header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 14px;
    padding: 2px 54px 14px 2px;
  }

  .calculator-modal__header h2 {
    max-width: 8ch;
    font-size: 2rem;
  }

  .calculator-modal__summary {
    grid-column: 1 / -1;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .calculator-modal .calculator-shell__bar {
    padding: 16px 16px 14px;
    border-radius: 18px;
    width: 100%;
  }

  .calculator-modal .calculator-shell__bar strong {
    font-size: 1.1rem;
  }

  .calculator-modal .calculator-body {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .calculator-modal .wizard {
    padding: 24px 18px 20px;
  }

  .calculator-modal .wizard__header h3 {
    font-size: 1.62rem;
  }

  .calculator-modal .wizard__context {
    font-size: 0.94rem;
  }

  .calculator-modal .live-result {
    order: -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .calculator-modal .live-result__help {
    margin-top: 14px;
  }

  .calculator-modal .live-result__metric {
    padding: 16px 0;
  }

  .calculator-modal .wizard__controls {
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
  }

  .calculator-modal.is-intro-step .wizard {
    padding-top: 20px;
  }

  .calculator-modal.is-intro-step .wizard__controls {
    max-width: none;
    margin-left: 0;
  }

  .home-page .hero {
    padding: 0 18px;
  }

  .home-page .hero__center {
    width: min(100%, 420px);
    padding-top: 88px;
    padding-bottom: 208px;
  }

  .home-page .hero__bubble {
    margin-bottom: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .home-page .hero__badge {
    width: 136px;
    height: 136px;
    margin-bottom: 2px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .home-page .hero__duration {
    font-size: 1.15rem;
  }

  .home-page .hero__lead,
  .home-page .hero__sections {
    font-size: 0.98rem;
  }

  .home-page .hero__selector {
    width: 100%;
  }

  .home-page .calculator-modal .calculator-section {
    padding: 0;
  }

  .home-page .wizard {
    padding: 26px 20px 28px;
  }

  .home-page .wizard__header h3 {
    font-size: 1.5rem;
  }

  .home-page .calculator-shell__bar strong {
    font-size: 1.18rem;
  }

  .home-page .live-result__metric strong {
    font-size: 2.35rem;
  }

  .home-page .intro__layout {
    gap: 28px;
    padding: 32px 0;
  }
}

@media print {
  @page {
    margin: 12mm;
    size: landscape;
  }

  body {
    background: #ffffff !important;
  }

  .no-print,
  .site-header,
  .site-footer {
    display: none !important;
  }

  .certificate-page {
    width: 100%;
    padding: 0;
  }

  .certificate-sheet {
    min-height: calc(100vh - 24mm);
    border-color: #b9c6bf;
    box-shadow: none;
    page-break-inside: avoid;
  }
}
