:root {
  color-scheme: light;
  --ink: #17313b;
  --muted: #5d727a;
  --teal: #087d78;
  --teal-dark: #05635f;
  --soft: #e8f6f4;
  --line: #d8e4e6;
  --canvas: #f6faf9;
  --surface: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--canvas); line-height: 1.55; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; text-decoration: none; }
.nav-link { color: var(--muted); font-weight: 650; text-decoration: none; }
.hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 48px; align-items: center; padding: 70px 0 54px; }
.eyebrow { color: var(--teal); font-size: .82rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1 { margin: 12px 0 18px; max-width: 760px; font-size: clamp(2.55rem, 6vw, 4.85rem); line-height: .98; letter-spacing: -.055em; }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid var(--teal); border-radius: 12px; background: var(--teal); color: #fff; font-weight: 800; text-decoration: none; cursor: pointer; }
.button:hover { background: var(--teal-dark); }
.button.secondary { background: transparent; color: var(--teal); }
.proof-card, .panel { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 22px 70px rgba(23,49,59,.08); }
.proof-card { padding: 28px; }
.proof-card ol { margin: 20px 0 0; padding-left: 22px; }
.proof-card li { margin: 12px 0; }
.proof-chip { display: inline-block; padding: 7px 11px; border-radius: 999px; background: var(--soft); color: var(--teal-dark); font-size: .82rem; font-weight: 800; }
.section { padding: 58px 0; }
.section h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.035em; }
.section-intro { max-width: 720px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.panel { padding: 24px; box-shadow: none; }
.panel h3 { margin-top: 0; }
.panel p { margin-bottom: 0; color: var(--muted); }
.pilot { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; padding-bottom: 80px; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: .9rem; font-weight: 750; }
label.full, .form-status, form .button { grid-column: 1 / -1; }
input, select { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font: inherit; }
input:focus, select:focus { outline: 3px solid rgba(8,125,120,.16); border-color: var(--teal); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { min-height: 24px; margin: 0; color: var(--muted); }
.fine { color: var(--muted); font-size: .88rem; }
footer { border-top: 1px solid var(--line); padding: 24px 0 40px; color: var(--muted); }
@media (max-width: 800px) {
  .hero, .pilot { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  form { grid-template-columns: 1fr; }
  label { grid-column: 1 / -1; }
  .button { width: 100%; }
}
