:root {
  --tanne: #1f3d2e;
  --tanne-2: #143326;
  --forest: #3e5f4a;
  --salbei: #e8f0eb;
  --salbei-2: #f3f7f4;
  --sand: #f7f4ef;
  --gold: #d6a23a;
  --gold-2: #bf8714;
  --text: #102019;
  --muted: #68736c;
  --line: rgba(31, 61, 46, .12);
  --line-soft: rgba(31, 61, 46, .07);
  --shadow: 0 24px 60px rgba(31, 61, 46, .10);
  --shadow-soft: 0 12px 34px rgba(31, 61, 46, .075);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 7%, rgba(232, 240, 235, .92), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #fffdf9 52%, #fbfaf6 100%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.section-shell {
  width: min(calc(100% - 72px), var(--max));
  margin-inline: auto;
}

.site-header {
  width: min(calc(100% - 72px), var(--max));
  margin: 0 auto;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--tanne);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle:nth-of-type(2),
.brand-mark svg circle:last-child {
  fill: currentColor;
}

.brand-word {
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -.04em;
  color: var(--tanne);
}
.brand-word span { color: var(--gold); }

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #1f2a23;
  font-size: 14px;
  font-weight: 520;
}

.main-nav a { opacity: .9; transition: color .18s ease, opacity .18s ease; }
.main-nav a:hover { color: var(--forest); opacity: 1; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(180deg, #dfaa3b, #c88613);
  box-shadow: 0 12px 26px rgba(214, 162, 58, .26);
  font-weight: 670;
  font-size: 14px;
}

.nav-toggle { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
  gap: 54px;
  align-items: center;
  padding: 34px 0 94px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .09em;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--tanne);
  font-size: clamp(44px, 5vw, 73px);
  line-height: .99;
  letter-spacing: -.07em;
  font-weight: 820;
  max-width: 680px;
}

.hero-lead {
  color: #455149;
  font-size: 18px;
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--tanne), #123427);
  box-shadow: 0 16px 32px rgba(31, 61, 46, .2);
}
.btn-secondary {
  color: var(--tanne);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(31, 61, 46, .32);
}
.btn span { font-size: 22px; line-height: 1; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  gap: 15px;
  align-items: center;
}
.trust-item svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--tanne);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item strong { display: block; color: var(--tanne); font-size: 14px; margin-bottom: 3px; }
.trust-item span { display: block; color: var(--muted); font-size: 12px; }

.hero-visual {
  min-height: 590px;
  position: relative;
}

.lake-scene {
  position: absolute;
  inset: 8% -4% 10% 6%;
  opacity: .95;
  pointer-events: none;
}
.lake-scene:before {
  content: "";
  position: absolute;
  inset: 26% 0 0 0;
  background:
    linear-gradient(180deg, transparent, rgba(232, 240, 235, .45) 45%, rgba(255, 255, 255, .6)),
    radial-gradient(ellipse at 72% 62%, rgba(31, 61, 46, .16), transparent 32%),
    linear-gradient(90deg, transparent, rgba(31, 61, 46, .09), transparent);
  border-radius: 50%;
  filter: blur(.2px);
}
.mountains {
  position: absolute;
  inset: 16% 2% auto 0;
  height: 180px;
  background: linear-gradient(135deg, transparent 0 22%, rgba(31, 61, 46, .075) 22% 33%, transparent 33% 45%, rgba(31, 61, 46, .06) 45% 58%, transparent 58%);
  clip-path: polygon(0 82%, 14% 52%, 28% 76%, 46% 35%, 61% 78%, 78% 42%, 100% 84%, 100% 100%, 0 100%);
}
.forest {
  position: absolute;
  bottom: 25%;
  width: 190px;
  height: 190px;
  background: repeating-conic-gradient(from 45deg, rgba(31, 61, 46, .34) 0 9deg, transparent 9deg 22deg);
  clip-path: polygon(50% 0, 67% 30%, 58% 30%, 78% 62%, 64% 62%, 88% 100%, 12% 100%, 36% 62%, 22% 62%, 42% 30%, 33% 30%);
  opacity: .55;
}
.forest-one { right: 0; transform: scale(1.1); }
.forest-two { right: 130px; bottom: 28%; transform: scale(.64); opacity: .34; }
.boat {
  position: absolute;
  left: 18%;
  bottom: 36%;
  width: 96px;
  height: 36px;
  border-bottom: 8px solid rgba(31, 61, 46, .35);
  border-radius: 0 0 80px 80px;
}
.boat:before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 14px;
  width: 10px;
  height: 26px;
  border-radius: 20px 20px 0 0;
  background: rgba(31, 61, 46, .28);
}

.phone-stack {
  position: absolute;
  inset: 0;
}
.phone {
  width: 232px;
  height: 470px;
  background: #fff;
  border: 8px solid #17241d;
  border-radius: 35px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: absolute;
}
.phone:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 82px;
  height: 18px;
  transform: translateX(-50%);
  background: #17241d;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-top {
  height: 66px;
  padding: 28px 14px 0;
  color: #fff;
  background: linear-gradient(180deg, var(--tanne), #123427);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.phone-top strong { font-size: 14px; font-weight: 720; }
.phone-top em {
  justify-self: end;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  font-style: normal;
  font-weight: 800;
}
.phone-body {
  height: calc(100% - 106px);
  background: linear-gradient(180deg, #fff, #fbfaf7);
  padding: 14px 12px;
  overflow: hidden;
}
.phone-nav {
  height: 40px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 8px;
  color: var(--forest);
  background: #fff;
}
.phone-left { left: 64px; top: 120px; transform: rotate(-4deg); z-index: 1; }
.phone-center { left: 252px; top: 55px; transform: rotate(1deg); z-index: 3; }
.phone-right { right: 16px; top: 98px; transform: rotate(5deg); z-index: 2; }

.app-list { display: grid; gap: 9px; }
.app-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: #fff;
}
.app-list span { font-size: 10px; font-weight: 700; color: var(--text); }
.app-list strong { font-size: 11px; color: var(--tanne); }
.app-list small { grid-column: 1 / 3; color: var(--muted); font-size: 8px; }

.forecast-card { border: 1px solid var(--line-soft); border-radius: 17px; padding: 11px; background: #fff; }
.forecast-card small { color: var(--muted); font-weight: 650; font-size: 9px; }
.day-tabs { display: flex; gap: 6px; margin: 10px 0; font-size: 8px; }
.day-tabs b, .day-tabs span { padding: 5px 7px; border-radius: 99px; background: var(--salbei-2); }
.day-tabs b { background: var(--salbei); color: var(--tanne); }
.score-row { display: flex; align-items: center; gap: 12px; }
.score-row > strong {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 5px solid rgba(31, 61, 46, .2);
  color: var(--tanne);
  font-size: 15px;
}
.score-row b { display: block; font-size: 10px; color: var(--tanne); }
.score-row span { display: block; margin-top: 3px; font-size: 8px; color: var(--muted); }
.mini-landscape { height: 42px; margin: 10px 0; border-radius: 10px; background: linear-gradient(180deg, var(--salbei), #fff), radial-gradient(circle at 80% 60%, var(--forest), transparent 36%); }
.chart { width: 100%; height: 72px; fill: none; stroke: var(--forest); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.chart circle { fill: var(--gold); stroke: #fff; stroke-width: 3; }
.weather-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.weather-stats span { background: var(--salbei-2); border-radius: 8px; padding: 5px 2px; text-align: center; font-size: 8px; color: var(--tanne); font-weight: 700; }
.chat-preview small { display: block; color: var(--tanne); font-weight: 700; margin-bottom: 16px; }
.bubble { width: max-content; max-width: 80%; border-radius: 14px; padding: 9px 11px; font-size: 10px; margin: 0 0 12px; }
.bubble-in { background: var(--salbei-2); color: var(--text); }
.bubble-out { background: var(--tanne); color: #fff; margin-left: auto; }
.catch-photo { height: 118px; border-radius: 14px; margin-bottom: 10px; background: linear-gradient(135deg, rgba(31, 61, 46, .26), rgba(214, 162, 58, .2)), linear-gradient(180deg, #bfcfc3, #f7f4ef); position: relative; overflow: hidden; }
.catch-photo:before { content: ""; position: absolute; inset: 54% 0 0; background: linear-gradient(90deg, rgba(31,61,46,.44), transparent); }
.catch-photo span { position: absolute; left: 10px; bottom: 10px; color: #fff; font-size: 11px; font-weight: 800; }
.chat-input { margin-top: 22px; border: 1px solid var(--line-soft); color: #9aa39c; border-radius: 999px; padding: 9px 12px; font-size: 9px; }

.problem {
  margin-top: 8px;
  min-height: 420px;
  padding: 64px 52px 52px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.problem-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 79% 48%, rgba(31, 61, 46, .10), transparent 28%),
    linear-gradient(135deg, transparent 0 56%, rgba(232, 240, 235, .58)),
    linear-gradient(180deg, transparent 50%, rgba(31, 61, 46, .035));
}
.problem-bg:after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  width: 56%;
  height: 70%;
  background: linear-gradient(135deg, transparent 0 30%, rgba(31, 61, 46, .08) 30% 44%, transparent 44% 52%, rgba(31,61,46,.1) 52% 58%, transparent 58%), linear-gradient(180deg, transparent 44%, rgba(31,61,46,.06));
  clip-path: polygon(0 80%, 18% 50%, 33% 78%, 48% 42%, 62% 74%, 78% 36%, 100% 82%, 100% 100%, 0 100%);
  opacity: .8;
}
.problem-copy { position: relative; max-width: 560px; }
.problem h2, .features h2, .product h2, .waitlist h2 {
  color: var(--tanne);
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.05em;
  margin-bottom: 20px;
}
.problem p { color: #4f5b54; line-height: 1.7; font-size: 16px; }
.problem-cards {
  position: relative;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(31, 61, 46, .045);
}
.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--salbei-2);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon-circle svg, .spot-banner svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--tanne);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card h3 { color: var(--tanne); margin: 0 0 8px; font-size: 17px; }
.info-card p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted); }

.features { padding: 94px 0 58px; }
.centered { text-align: center; margin-bottom: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.feature-card {
  min-height: 238px;
  padding: 34px 24px;
  text-align: center;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(31, 61, 46, .04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: var(--tanne);
  background: var(--salbei-2);
  font-size: 31px;
  font-weight: 600;
}
.feature-card h3 { margin-bottom: 14px; color: var(--tanne); font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.spot-banner {
  margin-top: 28px;
  min-height: 170px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: .85fr 2.1fr 120px;
  align-items: center;
  gap: 28px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 56%, rgba(255,255,255,.09), transparent 9rem),
    linear-gradient(135deg, var(--tanne), #0f3023);
  box-shadow: 0 18px 45px rgba(31, 61, 46, .16);
  position: relative;
  overflow: hidden;
}
.spot-banner:after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 48% 52% 46% 54%;
  box-shadow: inset 0 0 0 28px rgba(255,255,255,.035), inset 0 0 0 58px rgba(255,255,255,.028), inset 0 0 0 88px rgba(255,255,255,.02);
}
.spot-title h2 { color: #fff; margin: 0; font-size: clamp(28px, 2.7vw, 40px); line-height: 1.08; letter-spacing: -.05em; }
.spot-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.spot-points article { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); }
.spot-points svg { stroke: #fff; opacity: .98; margin-bottom: 12px; }
.spot-points h3 { color: #fff; font-size: 15px; margin: 0 0 7px; }
.spot-points p { color: rgba(255,255,255,.74); font-size: 12px; line-height: 1.45; margin: 0; }
.lock-graphic { position: relative; z-index: 2; display: grid; place-items: center; }
.lock-graphic span { width: 74px; height: 74px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; position: relative; }
.lock-graphic span:before { content: ""; position: absolute; left: 25px; top: 20px; width: 24px; height: 28px; border: 3px solid rgba(255,255,255,.8); border-radius: 6px; }
.lock-graphic span:after { content: ""; position: absolute; left: 29px; top: 10px; width: 16px; height: 19px; border: 3px solid rgba(255,255,255,.8); border-bottom: none; border-radius: 16px 16px 0 0; }

.product {
  padding: 86px 0 70px;
  display: grid;
  grid-template-columns: minmax(500px, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 76px;
}
.product-screens {
  min-height: 500px;
  position: relative;
}
.product-phone {
  position: absolute;
  width: 218px;
  height: 444px;
  box-shadow: 0 22px 44px rgba(31, 61, 46, .16);
}
.mini-one { left: 0; bottom: 20px; }
.mini-two { left: 205px; top: 0; }
.mini-three { right: 0; bottom: 20px; }
.forecast-card.compact .weather-stats { grid-template-columns: repeat(3, 1fr); }
.product-copy { position: relative; }
.product-copy h2 { font-size: clamp(42px, 4.6vw, 64px); max-width: 560px; }
.product-copy > p:not(.eyebrow) { color: #4f5b54; font-size: 18px; line-height: 1.75; max-width: 610px; margin-bottom: 30px; }
.check-list { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 18px; }
.check-list li { color: #2f4037; font-size: 15px; display: flex; gap: 12px; align-items: center; }
.check-list li:before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: var(--tanne); border: 1px solid rgba(31,61,46,.26); font-weight: 800; font-size: 13px; }

.waitlist {
  margin-top: 18px;
  margin-bottom: 70px;
  padding: 42px;
  display: grid;
  grid-template-columns: .78fr 1.6fr;
  gap: 38px;
  align-items: start;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.waitlist-copy p { color: var(--muted); line-height: 1.7; }
.waitlist-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.waitlist-form label { display: grid; gap: 7px; color: var(--tanne); font-size: 12px; font-weight: 650; }
.waitlist-form input[type="text"], .waitlist-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.waitlist-form input:focus { border-color: rgba(31,61,46,.42); box-shadow: 0 0 0 4px rgba(232,240,235,.8); }
.waitlist-form fieldset { margin: 0; border: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.waitlist-form legend { grid-column: 1 / 3; color: var(--tanne); font-size: 12px; font-weight: 650; margin-bottom: 7px; }
.radio-pill {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px !important;
  background: #fff;
  color: var(--muted) !important;
  cursor: pointer;
}
.radio-pill:has(input:checked) { border-color: rgba(31,61,46,.42); background: var(--salbei); color: var(--tanne) !important; }
.checkbox { grid-column: 1 / 3; display: flex !important; align-items: center; gap: 9px !important; color: var(--muted) !important; font-weight: 500 !important; }
.waitlist-form .btn { grid-column: 3 / 4; min-height: 50px; width: 100%; }
.form-message { grid-column: 1 / 4; margin: 0; color: var(--forest); font-size: 13px; min-height: 18px; }

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 28px; }
.footer-brand .brand-word { font-size: 26px; }
.footer-brand .brand-mark { width: 46px; height: 46px; }
.footer-brand p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; padding-left: 28px; border-left: 1px solid var(--line); }
.site-footer nav { display: flex; justify-content: center; gap: 58px; color: var(--muted); font-size: 14px; }
.site-footer nav a:hover { color: var(--tanne); }
.copyright { margin: 0; color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }

@media (max-width: 1100px) {
  .section-shell, .site-header { width: min(calc(100% - 44px), var(--max)); }
  .main-nav { gap: 22px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 70px; }
  .hero-visual { min-height: 560px; }
  .phone-left { left: 8%; }
  .phone-center { left: 36%; }
  .phone-right { right: 5%; }
  .problem-cards, .spot-points { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .spot-banner { grid-template-columns: 1fr; }
  .lock-graphic { display: none; }
  .product { grid-template-columns: 1fr; gap: 40px; }
  .product-screens { min-height: 520px; max-width: 720px; }
  .waitlist { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: auto auto; min-height: 84px; }
  .brand-word { font-size: 25px; }
  .brand-mark { width: 44px; height: 44px; }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  .nav-toggle span { width: 18px; height: 2px; background: var(--tanne); border-radius: 3px; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--line-soft);
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-soft);
  }
  .main-nav a { padding: 16px; border-radius: 12px; }
  .main-nav.is-open { display: flex; }
  .header-cta { display: none; }
  h1 { font-size: clamp(40px, 11vw, 58px); }
  .hero { gap: 16px; padding-top: 24px; }
  .hero-visual { min-height: 440px; }
  .phone { width: 185px; height: 382px; border-width: 6px; border-radius: 28px; }
  .phone-left { left: 0; top: 90px; }
  .phone-center { left: 30%; top: 32px; }
  .phone-right { right: 0; top: 92px; }
  .phone-top { height: 58px; padding-top: 24px; }
  .phone-body { height: calc(100% - 94px); }
  .problem { padding: 42px 24px 28px; }
  .problem-cards { gap: 14px; }
  .info-card { align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .spot-banner { padding: 30px 24px; }
  .product-screens { min-height: 420px; }
  .product-phone { width: 166px; height: 340px; }
  .mini-one { left: 0; }
  .mini-two { left: 31%; }
  .mini-three { right: 0; }
  .waitlist { padding: 28px 20px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .waitlist-form fieldset, .checkbox, .waitlist-form .btn, .form-message { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-brand p { padding-left: 0; border-left: 0; }
  .site-footer nav { justify-content: flex-start; gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .section-shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .hero-actions { margin-bottom: 34px; }
  .btn { width: 100%; }
  .trust-row { gap: 20px; }
  .hero-visual { min-height: 385px; transform: scale(.92); transform-origin: top center; }
  .phone-left { left: -10px; }
  .phone-center { left: 26%; }
  .phone-right { right: -10px; }
  .problem { margin-top: 0; }
  .product-screens { min-height: 360px; transform: scale(.9); transform-origin: top center; }
  .mini-two { left: 28%; }
  .product { padding-top: 64px; }
}

/* Legal pages */
.legal-body {
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 240, 235, .95), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #fffdf9 100%);
}

.legal-main {
  padding: 40px 0 90px;
  max-width: 940px;
}

.legal-main h1 {
  font-size: clamp(42px, 5vw, 68px);
  max-width: 850px;
  margin-bottom: 18px;
}

.legal-intro {
  color: #4f5b54;
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 34px;
}

.legal-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 30px 34px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(31, 61, 46, .035);
}

.legal-card h2 {
  color: var(--tanne);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.035em;
  margin: 0 0 14px;
}

.legal-card p {
  color: #4f5b54;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--tanne); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(31,61,46,.25); text-underline-offset: 3px; }
.legal-note { color: var(--forest) !important; background: var(--salbei-2); border: 1px solid var(--line-soft); border-radius: 14px; padding: 14px 16px; }

@media (max-width: 820px) {
  .legal-main { padding: 24px 0 60px; }
  .legal-card { padding: 24px 20px; border-radius: 18px; }
}

/* Mobile refinement after first live test */
@media (max-width: 560px) {
  .site-header { min-height: 76px; }
  .hero {
    padding-top: 16px;
    padding-bottom: 46px;
    gap: 28px;
  }
  h1 {
    font-size: clamp(36px, 10.6vw, 48px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-visual {
    min-height: 320px;
    transform: none;
    overflow: hidden;
  }
  .lake-scene { inset: 0 -30% 0 -20%; opacity: .55; }
  .phone {
    width: 145px;
    height: 300px;
    border-width: 5px;
    border-radius: 24px;
  }
  .phone:before { width: 58px; height: 13px; }
  .phone-top {
    height: 48px;
    padding: 20px 10px 0;
    font-size: 8px;
  }
  .phone-top strong { font-size: 11px; }
  .phone-top em { width: 16px; height: 16px; font-size: 10px; }
  .phone-body {
    height: calc(100% - 78px);
    padding: 9px 8px;
  }
  .phone-nav { height: 30px; font-size: 6px; }
  .phone-left { left: -8px; top: 38px; transform: rotate(-5deg); }
  .phone-center { left: 50%; top: 6px; transform: translateX(-50%) rotate(0deg); z-index: 3; }
  .phone-right { right: -8px; top: 40px; transform: rotate(5deg); }
  .app-list { gap: 5px; }
  .app-list div { padding: 6px; border-radius: 9px; }
  .app-list span, .score-row b, .bubble { font-size: 8px; }
  .app-list strong { font-size: 8px; }
  .app-list small, .score-row span, .phone-nav, .weather-stats span { font-size: 6px; }
  .score-row > strong { width: 40px; height: 40px; border-width: 4px; font-size: 11px; }
  .mini-landscape { height: 28px; }
  .chart { height: 44px; }
  .catch-photo { height: 72px; }
  .problem {
    padding: 34px 18px 22px;
    min-height: auto;
    border-radius: 22px;
  }
  .problem h2, .features h2, .waitlist h2 {
    font-size: 30px;
  }
  .problem p { font-size: 14px; }
  .info-card {
    min-height: auto;
    padding: 18px;
  }
  .icon-circle { width: 46px; height: 46px; }
  .icon-circle svg, .spot-banner svg { width: 22px; height: 22px; }
  .features { padding-top: 58px; }
  .feature-card { min-height: auto; padding: 26px 20px; }
  .spot-banner { margin-top: 18px; }
  .product {
    padding-top: 58px;
    gap: 18px;
  }
  .product-screens {
    min-height: 310px;
    transform: none;
    overflow: hidden;
  }
  .product-phone {
    width: 132px;
    height: 270px;
  }
  .mini-one { left: -4px; bottom: 18px; }
  .mini-two { left: 50%; top: 0; transform: translateX(-50%); z-index: 3; }
  .mini-three { right: -4px; bottom: 18px; }
  .product-copy h2 { font-size: 38px; }
  .product-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.65; }
  .waitlist { margin-bottom: 44px; }
}

@media (max-width: 380px) {
  h1 { font-size: 34px; }
  .hero-visual { min-height: 294px; }
  .phone { width: 130px; height: 270px; }
  .product-phone { width: 120px; height: 246px; }
  .product-screens { min-height: 282px; }
}
