:root {
  --blue: #4d94bd;
  --blue-dark: #2d6f96;
  --blue-pale: #e9f4fa;
  --green: #4b9b69;
  --green-pale: #eaf5ed;
  --orange: #d57a38;
  --red: #c75b4e;
  --ink: #244250;
  --muted: #607781;
  --cream: #f7f5ef;
  --white: #ffffff;
  --line: #dbe8e9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-rounded, "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header,
.hero,
.why,
.benefits,
.audience,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}
.brand-mark img { width: 78px; max-width: none; transform: translate(-10px, -3px); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--blue); font-size: 1.4rem; letter-spacing: -.035em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .72rem; }
.header-link {
  color: var(--blue-dark);
  font-weight: 750;
  padding: 10px 0;
  border-bottom: 2px solid var(--green);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
  padding: 72px 0 96px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.058em;
}
.lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}
.signup {
  max-width: 620px;
  padding: 19px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(77,148,189,.23);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(45,111,150,.08);
}
.signup label { display: block; margin-bottom: 11px; font-size: .91rem; font-weight: 800; }
.form-row { display: flex; gap: 9px; }
.form-row input {
  min-width: 0;
  flex: 1;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8dcdf;
  border-radius: 12px;
  font: inherit;
}
.form-row button {
  padding: 14px 19px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.form-row button:hover { background: var(--blue-dark); }
.form-row input:focus, .form-row button:focus-visible, .consent input:focus-visible {
  outline: 3px solid rgba(75,155,105,.28);
  outline-offset: 2px;
}
.signup > p { margin: 10px 2px 0; color: var(--muted); font-size: .72rem; }
.consent { display: flex !important; align-items: flex-start; gap: 9px; margin: 12px 2px 0 !important; color: var(--muted); font-size: .76rem !important; font-weight: 500 !important; line-height: 1.4; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--green); flex: 0 0 auto; }
.form-message { padding: 14px 16px; border-radius: 12px; line-height: 1.45; }
.form-message.success { color: #276a45; background: var(--green-pale); }
.form-message.error { margin-bottom: 11px; color: #8d3d34; background: #fae8e5; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.journey-wrap { position: relative; padding: 28px; }
.journey-wrap::before {
  content: "";
  position: absolute;
  inset: 2% -5% 0 -2%;
  background: var(--blue-pale);
  border-radius: 49% 51% 42% 58% / 52% 42% 58% 48%;
  transform: rotate(-4deg);
}
.journey-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(77,148,189,.22);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(37,79,100,.15);
}
.journey-top { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .8rem; font-weight: 700; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.journey-top .time { margin-left: auto; }
.journey-label { margin: 29px 0 9px; color: var(--green); font-size: .7rem; font-weight: 850; letter-spacing: .16em; }
.current-step { display: flex; align-items: center; gap: 14px; }
.current-step strong { display: block; font-size: 1.35rem; }
.current-step small { display: block; margin-top: 3px; color: var(--muted); }
.step-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; font-size: 1.45rem; }
.step-icon.blue { background: var(--blue-pale); }
.step-icon.orange { background: #fff0e5; }
.step-icon.green { background: var(--green-pale); }
.route { position: relative; height: 6px; margin: 28px 7px; background: #dfe9e8; border-radius: 999px; }
.route-done { display: block; width: 56%; height: 100%; background: var(--green); border-radius: inherit; }
.route-car { position: absolute; left: 53%; top: 50%; color: var(--blue); font-size: 1.25rem; transform: translateY(-54%); text-shadow: 0 0 0 4px #fff; }
.next-steps { display: grid; gap: 13px; }
.next-steps > div { display: flex; align-items: center; gap: 13px; padding: 12px 14px; background: #f8faf8; border-radius: 16px; }
.next-steps p { margin: 0; display: grid; gap: 2px; }
.next-steps small { color: var(--muted); font-size: .63rem; font-weight: 850; letter-spacing: .12em; }
.next-steps strong { font-size: .92rem; }
.calm-note { display: flex; align-items: center; gap: 11px; margin-top: 17px; padding: 13px 15px; color: #337c52; background: var(--green-pale); border-radius: 15px; }
.calm-note > span { display: grid; width: 24px; height: 24px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-weight: 900; }
.calm-note p { display: grid; margin: 0; }
.calm-note small { color: #568167; }
.decor-pin { position: absolute; z-index: 2; right: 2px; top: 2px; padding: 10px 13px; color: #fff; background: var(--red); border-radius: 18px 18px 18px 4px; font-size: .66rem; font-weight: 900; letter-spacing: .1em; transform: rotate(4deg); }

.why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(35px, 8vw, 100px);
  align-items: end;
  padding: 90px 0 46px;
  border-top: 1px solid var(--line);
}
h2 { color: var(--blue-dark); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -.045em; }
.why h2 { margin: 0; }
.why > p { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 32px 0 100px; }
.benefits article { min-height: 230px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.benefits article > span { display: grid; width: 36px; height: 36px; margin-bottom: 34px; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; font-weight: 900; }
.benefits article:nth-child(2) > span { background: var(--orange); }
.benefits article:nth-child(3) > span { background: var(--green); }
.benefits h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.15rem; }
.benefits p { margin: 0; color: var(--muted); line-height: 1.65; }
.audience { display: flex; gap: 25px; align-items: center; margin-bottom: 100px; padding: 40px; background: var(--blue-dark); border-radius: 30px; color: #fff; }
.audience-mark { display: grid; width: 62px; height: 62px; flex: 0 0 auto; place-items: center; background: rgba(255,255,255,.14); border-radius: 19px; }
.audience-mark svg { width: 34px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.audience h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.audience p { max-width: 790px; margin: 0; color: #dbeaf1; line-height: 1.65; }
footer { display: flex; justify-content: space-between; align-items: center; min-height: 130px; padding: 25px 0; border-top: 1px solid var(--line); }
footer > p { margin: 0; color: var(--muted); font-size: .8rem; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .journey-wrap { width: min(540px, 100%); margin-inline: auto; }
  .why { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { min-height: auto; }
  .benefits article > span { margin-bottom: 22px; }
}
@media (max-width: 580px) {
  .site-header, .hero, .why, .benefits, .audience, footer { width: min(100% - 28px, 1160px); }
  .site-header { min-height: 76px; }
  .brand-copy small { display: none; }
  .header-link { font-size: .78rem; }
  .hero { padding: 42px 0 72px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4rem); }
  .form-row { display: grid; }
  .journey-wrap { padding: 17px 4px; }
  .journey-card { padding: 20px 17px; border-radius: 25px; }
  .decor-pin { right: -5px; top: -8px; }
  .why { padding-top: 70px; }
  .benefits { padding-bottom: 70px; }
  .audience { align-items: flex-start; padding: 27px 23px; border-radius: 24px; }
  .audience-mark { width: 45px; height: 45px; border-radius: 14px; }
  .audience-mark svg { width: 25px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
