:root {
  --green: #0b9f36;
  --green-strong: #07872e;
  --green-dark: #075626;
  --green-soft: #eaf8ee;
  --green-wash: #f4faf6;
  --ink: #0f1512;
  --ink-soft: #39433d;
  --muted: #646d68;
  --line: #e6ebe7;
  --line-soft: #eef2ef;
  --surface: #ffffff;
  --surface-soft: #fafcfb;
  --shadow-lg: 0 32px 80px rgba(15, 38, 23, 0.10);
  --shadow: 0 18px 44px rgba(15, 38, 23, 0.06);
  --shadow-sm: 0 4px 14px rgba(15, 38, 23, 0.04);
  --radius-lg: 32px;
  --radius: 22px;
  --radius-sm: 16px;
  --shell: 1180px;
  --gutter: 22px;
  --header-h: 82px;
  --ease: cubic-bezier(.22, .72, .26, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-strong); }
h1, h2, h3 { text-wrap: balance; }

:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid rgba(11, 159, 54, .38);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  transform: translateY(-200%);
  background: var(--ink); color: #fff;
  padding: 12px 16px; border-radius: 12px; font-weight: 700;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

.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;
}

/* ---------- layout primitives ---------- */

.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.section { padding: clamp(76px, 11vw, 124px) 0; scroll-margin-top: calc(var(--header-h) + 12px); }
.section-soft { background: var(--surface-soft); }

.icon { width: 22px; height: 22px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow, .kicker {
  margin: 0 0 16px;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-strong);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: none; letter-spacing: 0; font-weight: 700; font-size: 13px;
  color: var(--ink-soft);
  background: var(--green-soft);
  padding: 7px 14px 7px 11px; border-radius: 999px;
}
.eyebrow i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(11,159,54,.16);
}

h1 { margin: 0; font-size: clamp(36px, 8.2vw, 54px); line-height: 1.04; letter-spacing: -.042em; font-weight: 800; }
h1 strong, h2 strong { color: var(--green); font-weight: inherit; }

.section-intro { max-width: 44ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-intro h2, .city-copy h2, .waitlist-copy h2, .partner-copy h2, .final-copy h2 {
  margin: 0; font-size: clamp(28px, 4.6vw, 46px); line-height: 1.08; letter-spacing: -.035em; font-weight: 800;
}
.section-intro p, .city-copy p, .waitlist-copy p, .partner-copy p {
  margin: 16px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65;
}
.section-intro .kicker, .city-copy .kicker, .waitlist-copy .kicker, .partner-copy .kicker {
  margin: 0 0 16px; color: var(--green-strong); font-size: 12px; line-height: 1.4;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  border-bottom-color: rgba(15,21,18,.07);
  box-shadow: 0 6px 24px rgba(15,21,18,.04);
}
.nav { min-height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; padding: 6px 0; }
.brand img { width: 198px; height: auto; }
.nav-links { display: none; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; }
.nav-links a { color: var(--ink-soft); transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--green-strong); }

/* ---------- buttons ---------- */

.button {
  position: relative;
  appearance: none; border: 0; cursor: pointer;
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--green); color: #fff;
  font-weight: 800; font-size: 15px; line-height: 1;
  box-shadow: 0 8px 22px rgba(11,159,54,.22);
  transition: background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.button .arrow { transition: transform .22s var(--ease); }
.button:hover { background: var(--green-strong); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,159,54,.26); }
.button:hover .arrow { transform: translateX(3px); }
.button:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(11,159,54,.2); }
.button[disabled] { cursor: progress; opacity: .92; transform: none; }
.button-compact { min-height: 44px; padding: 12px 18px; font-size: 14px; white-space: nowrap; }
.button-dark { background: var(--ink); box-shadow: 0 8px 22px rgba(15,21,18,.16); }
.button-dark:hover { background: #1d2b23; box-shadow: 0 14px 30px rgba(15,21,18,.2); }
.button-block { width: 100%; }

.button.is-loading { color: transparent; }
.button.is-loading .arrow { opacity: 0; }
.button.is-loading::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.42); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- hero ---------- */

.hero { padding: clamp(28px, 5vw, 56px) 0 clamp(64px, 9vw, 104px); }
.hero-grid { display: grid; gap: clamp(40px, 6vw, 60px); align-items: center; }
.hero-copy h1 { margin-top: 20px; max-width: 16ch; }
.hero-lead { max-width: 48ch; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.68; }

.hero-media {
  position: relative; margin: 0; justify-self: center;
  width: min(100%, 460px);
}
.hero-media img {
  position: relative; z-index: 1; width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-halo {
  position: absolute; z-index: 0; inset: -8% -6% auto -6%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(11,159,54,.16), rgba(11,159,54,0) 66%);
}
.hero-media figcaption {
  position: absolute; z-index: 2; right: 14px; bottom: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  padding: 8px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}

.signup-form { display: grid; gap: 12px; margin-top: 30px; max-width: 560px; }
.email-field { position: relative; }
.email-field .icon {
  position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: #97a19b; pointer-events: none;
  transition: color .2s var(--ease);
}
.email-field input { padding-left: 48px; }
.email-field:focus-within .icon { color: var(--green); }

input, textarea {
  width: 100%; min-height: 54px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; padding: 15px 17px;
  font-size: 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
textarea { min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9ba49f; }
input:focus, textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11,159,54,.12);
}
input:user-invalid { border-color: #c9564c; }

.field-label { display: grid; gap: 9px; font-size: 14px; font-weight: 800; }
.field-label > span.hint { color: #8b948f; font-weight: 600; }
.field-label .hint { display: inline; }

.form-status { margin: 0; font-size: 14px; font-weight: 700; color: var(--green-dark); }
.form-status:empty { display: none; }
.form-status.is-error { color: #b03a30; }
.microcopy { margin: 10px 0 0; color: #8b948f; font-size: 14px; line-height: 1.5; }

.hero-points {
  display: grid; gap: 14px; margin-top: 34px;
  font-size: 14px; font-weight: 700; color: var(--ink-soft);
}
.hero-points > div { display: flex; align-items: center; gap: 12px; }
.mini-icon {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-strong);
}

/* ---------- feature cards ---------- */

.feature-grid { display: grid; gap: 14px; }
.feature-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--line); box-shadow: var(--shadow); }
.feature-icon, .step-icon, .request-note-icon {
  flex: none; width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-strong);
}
.feature-card h3 { margin: 22px 0 8px; font-size: 18px; letter-spacing: -.01em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- steps ---------- */

.steps { display: grid; gap: 14px; }
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.step:hover { border-color: var(--line); box-shadow: var(--shadow); }
.step-top { display: flex; align-items: center; gap: 14px; }
.step-num {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-strong);
  font-size: 15px; font-weight: 800; letter-spacing: .02em;
}
.step-icon { width: 44px; height: 44px; background: transparent; color: var(--ink); }
.step h3 { margin: 18px 0 8px; font-size: 18px; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- Bogotá + location request ---------- */

.city { background: var(--surface-soft); }
.city-grid { display: grid; gap: clamp(28px, 4vw, 40px); align-items: start; }
.city-copy { max-width: 42ch; }
.city-image {
  position: relative;
  margin: clamp(28px, 4vw, 36px) 0 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.city-image::after {
  content: ""; position: absolute; inset: 40% 0 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(6,14,9,.52), rgba(6,14,9,0));
}
.city-script {
  position: absolute; z-index: 2; right: clamp(18px, 4%, 30px); bottom: clamp(16px, 4%, 26px);
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: clamp(26px, 4.6vw, 38px); font-weight: 600; line-height: 1.08;
  color: #fff; text-align: right; letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(6,14,9,.45);
}
.city-underline { display: block; width: clamp(120px, 62%, 190px); height: 10px; margin: 4px 0 0 auto; fill: none; stroke: #4fd07a; stroke-width: 2.6; stroke-linecap: round; }
.city-image img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 58%; }

.request-note {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 16px; padding: 22px;
  background: var(--green-wash); border: 1px solid #dcefe1; border-radius: var(--radius);
}
.request-note-icon { width: 42px; height: 42px; border-radius: 14px; background: #fff; }
.request-note h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -.01em; }
.request-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.request-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 24px;
  display: grid; gap: 18px;
}
.request-card > .kicker { margin: 0; }
.request-card h3 { margin: 0; font-size: clamp(22px, 3.2vw, 28px); line-height: 1.15; letter-spacing: -.028em; }
.request-lead { margin: -10px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.two-fields { display: grid; gap: 16px; }

fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; margin-bottom: 12px; font-size: 14px; font-weight: 800; }
.radio-grid { display: grid; gap: 10px; }
.radio-option {
  display: flex; align-items: center; gap: 12px;
  min-height: 52px; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
  font-size: 15px; font-weight: 600;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.radio-option:hover { border-color: #c9d7cd; background: var(--surface-soft); }
.radio-option input {
  appearance: none; -webkit-appearance: none;
  flex: none; width: 22px; height: 22px; min-height: 0; margin: 0; padding: 0;
  border: 1.5px solid #c2ccc6; border-radius: 50%; background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.radio-option input:checked { border-color: var(--green); box-shadow: inset 0 0 0 5px var(--green); }
.radio-option:has(input:checked) { border-color: var(--green); background: var(--green-wash); box-shadow: 0 0 0 1px var(--green); }
.radio-option:has(input:focus-visible) { outline: 3px solid rgba(11,159,54,.38); outline-offset: 2px; }

/* ---------- waitlist ---------- */

.waitlist-grid { display: grid; gap: clamp(28px, 4vw, 48px); align-items: center; }
.waitlist-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 24px;
  display: grid; gap: 16px;
}
.waitlist-success {
  display: grid; gap: 12px; justify-items: start;
  margin-top: 16px; padding: 22px;
  background: var(--green-wash); border: 1px solid #d5ecdc; border-radius: var(--radius);
}
.waitlist-success[hidden] { display: none; }
.waitlist-success .check {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center;
}
.waitlist-success .check .icon { stroke-width: 2.6; width: 22px; height: 22px; }
.waitlist-success h3 { margin: 0; font-size: 17px; color: var(--green-dark); letter-spacing: -.01em; }
.waitlist-success p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.waitlist-success.is-in .check { animation: pop .45s var(--ease) both; }
.waitlist-success.is-in { animation: fade-up .45s var(--ease) both; }
@keyframes pop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fade-up { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- FAQ ---------- */

.faq { background: var(--surface-soft); }
.faq-grid { display: grid; gap: 12px; }
.faq-column { display: grid; gap: 12px; align-content: start; }
.faq-item {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.faq-item[open], .faq-item:hover { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 60px; padding: 16px 20px;
  font-size: 16px; font-weight: 700; line-height: 1.4; letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none; width: 20px; height: 20px; color: var(--muted);
  transition: transform .3s var(--ease), color .2s var(--ease);
}
.faq-item[open] summary { color: var(--green-dark); }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--green); }
.faq-answer { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 20px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 62ch; }

/* ---------- partner ---------- */

.partner-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.partner-copy { padding: 28px; }
.partner-copy .button { margin-top: 26px; }
.partner-card img { width: 100%; height: 240px; object-fit: cover; object-position: 50% 50%; }

/* ---------- final CTA ---------- */

.final-cta {
  position: relative; display: flex; align-items: flex-end;
  min-height: 400px; margin-bottom: clamp(56px, 8vw, 88px);
  border-radius: var(--radius-lg); overflow: hidden;
  background: #07100b; color: #fff; isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.final-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(4,11,7,.96) 8%, rgba(4,11,7,.72) 52%, rgba(4,11,7,.22) 100%);
}
.final-copy { padding: clamp(26px, 4vw, 48px); max-width: 640px; }
.final-copy h2 { color: #fff; }
.final-copy p { margin: 14px 0 24px; color: #cfdbd4; font-size: 16px; line-height: 1.6; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 64px) 0 48px; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand img { width: 225px; height: auto; }
.footer-brand p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 26ch; }
.footer-links { display: grid; gap: 12px; align-content: start; font-size: 14px; }
.footer-links a, .footer-links button {
  border: 0; background: none; padding: 0; text-align: left; cursor: pointer;
  font: inherit; color: var(--ink-soft); transition: color .2s var(--ease);
  justify-self: start;
}
.footer-links a:hover, .footer-links button:hover { color: var(--green-strong); }
.copyright { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ---------- partner dialog ---------- */

.partner-dialog {
  width: min(100% - 20px, 720px); max-height: min(92dvh, 860px);
  margin: auto; padding: 0; border: 0; border-radius: 26px;
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
  overflow: hidden;
}
.partner-dialog::backdrop { background: rgba(5,12,8,.55); backdrop-filter: blur(6px); }
.partner-dialog[open] { animation: dialog-in .3s var(--ease); }
@keyframes dialog-in { from { opacity: 0; transform: translateY(14px) scale(.985); } }
.partner-form {
  position: relative; padding: 28px 22px 26px;
  max-height: min(92dvh, 860px); overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  display: grid; gap: 16px;
}
.partner-form h2 { margin: 0; font-size: clamp(24px, 4vw, 32px); letter-spacing: -.03em; line-height: 1.1; padding-right: 48px; }
.partner-form > .kicker { margin: 0; padding-right: 48px; }
.dialog-close {
  position: sticky; top: 0; float: right;
  width: 44px; height: 44px; margin: -6px -4px 0 0;
  border: 0; border-radius: 50%; background: #f2f5f3; color: var(--ink-soft);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease);
}
.dialog-close:hover { background: #e6ebe7; }
.partner-fields { display: grid; gap: 14px; }
.partner-message { grid-column: 1 / -1; }

/* ---------- motion ---------- */

.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-img img { transform: scale(.985); }
.reveal-img img { transition: transform .7s var(--ease); }
.reveal-img.is-visible img { transform: none; }

/* ---------- breakpoints ---------- */

@media (max-width: 400px) {
  :root { --gutter: 20px; --header-h: 74px; }
  .nav { gap: 6px; }
  .brand img { width: 174px; }
  .button-compact { padding: 12px 10px; }
  .feature-card, .step { padding: 22px; }
  .request-card, .waitlist-card { padding: 20px; }
  .partner-copy { padding: 24px; }
  .final-copy { padding: 24px; }
}

@media (min-width: 600px) {
  .hero-points { grid-template-columns: repeat(3, max-content); gap: 26px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .two-fields { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .partner-fields { grid-template-columns: 1fr 1fr; }
  .partner-form { padding: 32px; }
  .request-card, .waitlist-card { padding: 30px; }
  .waitlist-success, .request-note { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 94px; }
  .nav-links { display: flex; }
  .brand img { width: 234px; }
  .hero { padding: clamp(40px, 4vw, 64px) 0 clamp(88px, 8vw, 116px); }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 64px; }
  .hero-media { justify-self: end; width: min(100%, 440px); }
  h1 { font-size: clamp(42px, 4.3vw, 58px); }
  .feature-card { padding: 30px 28px 32px; }
  .step { padding: 28px; }
  .city-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 48px; }
  .city-image { margin-top: 32px; }
  .city-image img { aspect-ratio: 16 / 10; }
  .waitlist-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .faq-item summary { padding: 20px 24px; min-height: 68px; }
  .faq-answer p { padding: 0 24px 24px; }
  .partner-card { display: grid; grid-template-columns: 1.06fr .94fr; align-items: stretch; }
  .partner-copy { padding: 48px; }
  .partner-card img { height: 100%; min-height: 340px; }
  .final-cta { align-items: center; min-height: 380px; }
  .final-cta::after { background: linear-gradient(90deg, rgba(4,11,7,.96) 0%, rgba(4,11,7,.76) 46%, rgba(4,11,7,.16) 100%); }
  .footer-grid { grid-template-columns: 1.3fr .8fr .9fr .8fr; gap: 40px; }
}

@media (min-width: 1080px) {
  .signup-form { grid-template-columns: minmax(240px, 1fr) auto; align-items: start; }
  .signup-form .form-status, .signup-form .microcopy { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; z-index: 1; top: 48px; right: -13px;
    width: 8px; height: 8px; border-top: 1.5px solid #bfcdc4; border-right: 1.5px solid #bfcdc4;
    transform: rotate(45deg);
  }
}

@media (min-width: 1180px) {
  h1 { font-size: 66px; }
  .two-fields { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-img img { transform: none; }
}

/* Cloudflare Turnstile is rendered lazily only when a form is submitted.
   In interaction-only mode most visitors never see it; suspected bots get the challenge here. */
.turnstile-slot {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-column: 1 / -1;
}
.turnstile-slot:empty { display: none; }
