:root {
  color-scheme: light;
  --ink: #11100f;
  --muted: #6f5b4a;
  --paper: #f6f2ea;
  --warm: #0f70b7;
  --surface: #fffdf8;
  --line: #d7c7b6;
  --teal: #1e88c8;
  --teal-dark: #0d4f7a;
  --coral: #8a5a3b;
  --blue: #0f70b7;
  --cyan: #dceef9;
  --gold: #b98a5a;
  --magenta: #4d3325;
  --lime: #ffffff;
  --shadow: 0 22px 60px rgba(17, 16, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(15, 112, 183, 0.08), transparent 340px),
    #0f70b7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(15, 112, 183, 0.9);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  backdrop-filter: blur(18px);
}

.site-header > * {
  flex-shrink: 0;
}

.brand-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fffdf8;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: block;
  width: 34px;
  height: 34px;
  color: #11100f;
  background: #fffdf8;
  border: 2px solid rgba(255, 253, 248, 0.7);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(17, 16, 15, 0.18);
}

.brand-dog {
  animation: dog-bob 3.4s ease-in-out infinite;
  transform-origin: 50% 84%;
}

.dog-face,
.dog-ear,
.dog-patch,
.dog-eye,
.dog-snout,
.dog-nose {
  position: absolute;
  display: block;
}

.dog-face {
  inset: 4px 5px 3px;
  z-index: 1;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(77, 51, 37, 0.25);
  border-radius: 50% 50% 47% 47%;
}

.dog-ear {
  top: 5px;
  z-index: 0;
  width: 12px;
  height: 15px;
  background: #b9865e;
  border: 1px solid rgba(77, 51, 37, 0.22);
  border-radius: 8px 8px 10px 10px;
}

.dog-ear-left {
  left: 2px;
  transform: rotate(-28deg);
}

.dog-ear-right {
  right: 3px;
  transform: rotate(24deg);
}

.dog-patch {
  background: #b9865e;
  opacity: 0.96;
}

.dog-patch-left {
  top: 5px;
  left: 1px;
  width: 10px;
  height: 12px;
  border-radius: 60% 45% 48% 52%;
  transform: rotate(-18deg);
}

.dog-patch-right {
  top: 6px;
  right: 2px;
  width: 12px;
  height: 14px;
  border-radius: 52% 58% 45% 55%;
  transform: rotate(18deg);
}

.dog-eye {
  top: 11px;
  z-index: 2;
  width: 5px;
  height: 5px;
  border: 1px solid #11100f;
  border-radius: 50%;
  animation: dog-blink 5.8s ease-in-out infinite;
}

.dog-eye::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 1px;
  height: 1px;
  background: #fffdf8;
  border-radius: 50%;
}

.dog-eye-left {
  left: 7px;
  background: #9fd5f5;
}

.dog-eye-right {
  right: 7px;
  background: #8a5a3b;
}

.dog-snout {
  left: 50%;
  bottom: 4px;
  z-index: 3;
  width: 12px;
  height: 9px;
  background: #fff6ee;
  border-radius: 50%;
  transform: translateX(-50%);
}

.dog-nose {
  left: 50%;
  bottom: 9px;
  z-index: 4;
  width: 7px;
  height: 5px;
  background: #7a4037;
  border-radius: 50% 50% 45% 45%;
  transform: translateX(-50%);
}

@keyframes dog-bob {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(-1px);
  }
}

@keyframes dog-blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-dog,
  .dog-eye {
    animation: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links::before,
.nav-links a + a::before {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(255, 253, 248, 0.34);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 0 16px;
}

.nav-links a + a {
  gap: 16px;
  padding-left: 16px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fffdf8;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 4px;
  background: rgba(255, 253, 248, 0.14);
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 8px;
}

.language-button {
  min-height: 34px;
  padding: 0 11px;
  color: rgba(255, 253, 248, 0.78);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
}

.language-button.active {
  color: var(--ink);
  background: #fffdf8;
}

.language-button:focus-visible {
  outline: 3px solid rgba(255, 253, 248, 0.34);
  outline-offset: 2px;
}

.language-globe {
  position: relative;
  display: none;
  width: 38px;
  height: 38px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, transparent 0 50%, #c60b1e 50% 100%);
  border: 2px solid rgba(255, 253, 248, 0.84);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(17, 16, 15, 0.18);
  cursor: pointer;
}

.language-globe::before,
.language-globe::after {
  content: "";
  position: absolute;
  inset: 0;
}

.language-globe::before {
  inset: 0 auto 0 0;
  width: 100%;
  background: repeating-linear-gradient(180deg, #b22234 0 3px, #fffdf8 3px 6px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.language-globe::after {
  inset: 0 0 0 auto;
  width: 100%;
  background: linear-gradient(180deg, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.usa-canton {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 25%;
  height: 42%;
  background: #3c3b6e;
}

.language-globe:focus-visible {
  outline: 3px solid rgba(255, 253, 248, 0.42);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(40px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(120px, 16vw, 190px);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 253, 248, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), transparent 62%),
    var(--warm);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 253, 248, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(17, 16, 15, 0.1), transparent 18% 82%, rgba(138, 90, 59, 0.18)),
    linear-gradient(0deg, rgba(17, 16, 15, 0.12), transparent 22%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 38px;
  left: clamp(22px, 5vw, 72px);
  z-index: 1;
  height: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.28) 0 3px, transparent 3px 8px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.45), rgba(138, 90, 59, 0.9), rgba(17, 16, 15, 0.78), rgba(255, 253, 248, 0.36));
  border: 2px solid rgba(255, 253, 248, 0.14);
  border-radius: 999px;
  opacity: 0.72;
}

.hero > *:not(.flag-background) {
  position: relative;
  z-index: 2;
}

.flag-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flag-card {
  position: absolute;
  display: block;
  width: clamp(122px, 10.5vw, 168px);
  aspect-ratio: 5 / 3;
  border: 2px solid rgba(255, 253, 248, 0.36);
  border-radius: 4px;
  box-shadow: 0 18px 32px rgba(17, 16, 15, 0.22);
  opacity: 0.96;
  transform: rotate(var(--rotate)) skewY(var(--skew, 0deg));
  transform-origin: 8% 100%;
}

.flag-card::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -112px;
  width: 6px;
  height: 140px;
  background: rgba(255, 253, 248, 0.98);
  border-radius: 999px;
  box-shadow: 3px 4px 12px rgba(23, 35, 33, 0.18);
}

.flag-card::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12%;
  aspect-ratio: 1;
  background: rgba(201, 153, 64, 0.86);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.flag-guatemala {
  --rotate: -10deg;
  --skew: 2deg;
  left: 6%;
  bottom: -16px;
  background: linear-gradient(90deg, #4997d0 0 33.333%, #fffdf8 33.333% 66.666%, #4997d0 66.666% 100%);
}

.flag-el-salvador {
  --rotate: 7deg;
  --skew: -2deg;
  left: 23%;
  bottom: -32px;
  background: linear-gradient(180deg, #0047ab 0 33.333%, #fffdf8 33.333% 66.666%, #0047ab 66.666% 100%);
}

.flag-honduras {
  --rotate: 11deg;
  --skew: 2deg;
  right: 8%;
  bottom: -18px;
  background: linear-gradient(180deg, #18a6e0 0 33.333%, #fffdf8 33.333% 66.666%, #18a6e0 66.666% 100%);
}

.flag-honduras::after {
  width: 7%;
  background: #18a6e0;
  box-shadow:
    -13px -7px 0 -2px #18a6e0,
    13px -7px 0 -2px #18a6e0,
    -13px 7px 0 -2px #18a6e0,
    13px 7px 0 -2px #18a6e0;
}

.flag-nicaragua {
  --rotate: -7deg;
  --skew: -2deg;
  left: 42%;
  bottom: -44px;
  background: linear-gradient(180deg, #0067c6 0 33.333%, #fffdf8 33.333% 66.666%, #0067c6 66.666% 100%);
}

.flag-costa-rica {
  --rotate: -13deg;
  --skew: 1deg;
  right: 25%;
  bottom: -52px;
  background: linear-gradient(180deg, #002b7f 0 16%, #fffdf8 16% 32%, #ce1126 32% 68%, #fffdf8 68% 84%, #002b7f 84% 100%);
}

.flag-costa-rica::after {
  left: 34%;
  width: 11%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 35, 33, 0.16);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #fffdf8;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-definition {
  max-width: 620px;
  margin-bottom: 30px;
  color: #fffdf8;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 820;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fffdf8;
  background: #11100f;
  box-shadow: 0 16px 34px rgba(17, 16, 15, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #2b211b;
}

.button.secondary {
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.34);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.signal-row span {
  padding: 9px 12px;
  color: #fffdf8;
  background: rgba(17, 16, 15, 0.18);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  margin: 0;
}

.split-preview {
  width: min(100%, 430px);
  transform: rotate(1.5deg);
}

.preview-kicker {
  margin: 0 0 8px 8px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
}

.preview-main {
  overflow: hidden;
  background: #fffdf8;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 14px 18px 0 rgba(27, 21, 19, 0.16);
}

.preview-main::before {
  display: none;
}

.preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: end;
  padding: 20px 22px;
  border-bottom: 2px solid rgba(23, 35, 33, 0.16);
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row span {
  grid-column: 1 / -1;
  color: #5a665d;
  font-size: 0.9rem;
  font-weight: 800;
}

.preview-row strong {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.preview-row em {
  align-self: center;
  padding: 8px 11px;
  color: var(--ink);
  background: #f4eddc;
  border: 1px solid rgba(23, 35, 33, 0.16);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 850;
}

.preview-row.accent {
  background: #dceef9;
}

.preview-row.accent strong {
  color: var(--teal-dark);
}

.preview-note {
  width: 84%;
  margin: 18px auto 0;
  padding: 18px;
  color: #fffdf8;
  background: rgba(17, 16, 15, 0.28);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(23, 35, 33, 0.08);
  font-weight: 760;
  line-height: 1.45;
}

.band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.band,
.trust {
  position: relative;
}

.band::before,
.trust::before {
  display: none;
}

.waitlist,
.trust {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.trust-copy p,
.waitlist-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(15, 112, 183, 0.14), transparent 42%),
    #f6f2ea;
}

.impact-panel {
  display: grid;
  gap: 16px;
}

.slider-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fffdf8;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-top: 8px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.range-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.range-label strong {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  min-height: auto;
  padding: 0;
  accent-color: var(--blue);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.range-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.impact-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.impact-results div {
  min-height: 132px;
  padding: 18px;
  background: #f6f2ea;
  border: 1px solid rgba(17, 16, 15, 0.1);
  border-radius: 8px;
}

.impact-results span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 850;
}

.impact-results strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.impact-disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.goal-grid article {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 112px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(17, 16, 15, 0.1);
  border-radius: 8px;
  text-align: center;
}

.goal-grid span {
  font-size: 1.6rem;
}

.goal-grid strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.waitlist-problem {
  max-width: 680px;
  margin: clamp(28px, 5vw, 54px) 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1.08;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fffdf8;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signup-form::before {
  display: none;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: #4d3f35;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid #c9b9aa;
  border-radius: 8px;
  font: inherit;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(88px, 0.32fr) minmax(0, 1fr);
  gap: 10px;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 112, 183, 0.14);
  outline: none;
}

.checkbox {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox input {
  min-height: 18px;
  margin-top: 2px;
}

.submit {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #66736f;
  background:
    linear-gradient(90deg, rgba(15, 112, 183, 0.26), transparent 30% 70%, rgba(138, 90, 59, 0.2)),
    var(--ink);
}

.site-footer p {
  max-width: 820px;
  margin: 0;
  color: #c4d3ce;
  line-height: 1.45;
}

.text-button {
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.admin-only {
  display: none;
}

body.admin .admin-only {
  display: inline-block;
}

@media (max-width: 960px) {
  .hero,
  .trust,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .goal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .goal-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px 12px;
  }

  .goal-grid article:last-child {
    grid-column: 1 / -1;
  }

  .goal-grid span {
    font-size: 1.25rem;
  }

  .goal-grid strong {
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 112px;
  }

  .flag-card {
    width: 116px;
  }

  .flag-el-salvador {
    left: 18%;
  }

}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-nav {
    min-width: 0;
    justify-content: flex-start;
    gap: 10px;
  }

  .trust,
  .waitlist {
    scroll-margin-top: 0;
  }

  .nav-links {
    font-size: 0.86rem;
  }

  .nav-links a,
  .nav-links a + a {
    gap: 10px;
    padding-left: 10px;
  }

  .language-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .language-button {
    display: none;
  }

  .language-globe {
    display: block;
  }

  .flag-card {
    width: 82px;
    opacity: 0.92;
  }

  .flag-guatemala {
    left: 7%;
    right: auto;
    bottom: -6px;
  }

  .flag-el-salvador,
  .flag-costa-rica {
    display: none;
  }

  .flag-honduras {
    right: 5%;
    bottom: -4px;
  }

  .flag-nicaragua {
    left: 42%;
    bottom: -22px;
  }

  .split-preview {
    width: min(100%, 360px);
    transform: none;
  }

  .hero-definition {
    margin-bottom: 22px;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .signal-row {
    gap: 8px;
  }

  .preview-row {
    padding: 16px 18px;
  }

  .preview-note {
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
  }

  .trust {
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .trust h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  .trust-copy p {
    line-height: 1.42;
  }

  .impact-panel {
    gap: 10px;
  }

  .slider-card {
    padding: 18px;
    border-top-width: 6px;
  }

  .range-label {
    margin-bottom: 12px;
  }

  .range-label strong {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .range-ticks {
    margin-top: 6px;
  }

  .impact-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .impact-results div {
    min-height: 112px;
    padding: 12px;
  }

  .impact-results span {
    margin-bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .impact-results strong {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .impact-disclaimer {
    margin-top: 12px;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .button {
    width: 100%;
  }

  .signal-row span {
    width: 100%;
    border-radius: 8px;
    white-space: normal;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
