:root {
  color-scheme: light;
  --paper: #ffffff;
  --paper-warm: #fbfdf8;
  --field: #eef7ed;
  --mist: #e7f1ef;
  --ink: #11231a;
  --ink-soft: #3e574c;
  --muted: #6a7b72;
  --line: #d7e4d8;
  --line-strong: #aec7af;
  --sage: #668f68;
  --sage-deep: #245b3d;
  --leaf: #0f7a48;
  --citrus: #d7ff52;
  --cornflower: #5b9db4;
  --clay: #b96f50;
  --gold: #d59f3a;
  --shadow: 0 24px 70px rgba(43, 76, 54, 0.14);
  --shadow-paper: 0 16px 42px rgba(43, 76, 54, 0.1);
  --radius: 8px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 35, 26, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(17, 35, 26, 0.028) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper-warm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  color: var(--ink);
  transform: translateX(-50%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px 0;
  z-index: -1;
  border: 1px solid rgba(174, 199, 175, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(43, 76, 54, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 820;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 91, 61, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--field));
  color: var(--sage-deep);
  box-shadow: inset 0 -8px 14px rgba(102, 143, 104, 0.12);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 5px;
  height: 20px;
  border-radius: 999px 999px 0 0;
  background: currentColor;
  transform-origin: bottom center;
}

.brand-mark::before {
  left: 11px;
  transform: rotate(-18deg);
}

.brand-mark span {
  left: 17px;
}

.brand-mark::after {
  left: 23px;
  transform: rotate(18deg);
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-text strong,
.site-footer .brand > span:last-child {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 720;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--leaf);
}

.header-cta,
.button,
.task-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 830;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary,
.task-done {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(17, 35, 26, 0.18);
}

.header-cta {
  min-width: 112px;
  padding: 0 18px;
}

.button {
  min-width: 146px;
  padding: 0 22px;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button:hover,
.header-cta:hover,
.task-done:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 78px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(251, 253, 248, 0.96) 0%, rgba(251, 253, 248, 0.88) 42%, rgba(251, 253, 248, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(251, 253, 248, 0.16) 64%, rgba(251, 253, 248, 1) 100%),
    url("./assets/first-mow-hero.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -86px;
  z-index: -1;
  height: 230px;
  background: var(--paper-warm);
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 118px;
  z-index: -1;
  width: 320px;
  height: 190px;
  border: 1px solid rgba(102, 143, 104, 0.2);
  background:
    linear-gradient(105deg, transparent 44%, rgba(36, 91, 61, 0.11) 45% 55%, transparent 56%) 0 0 / 48px 78px,
    linear-gradient(75deg, transparent 44%, rgba(36, 91, 61, 0.09) 45% 55%, transparent 56%) 0 0 / 48px 78px;
  opacity: 0.74;
  transform: rotate(-6deg);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.9fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100svh - 196px);
}

.hero-copy {
  max-width: 720px;
  padding-top: 22px;
}

h1 {
  max-width: 9.8ch;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8.8vw, 8.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.04rem;
  font-weight: 830;
  line-height: 1.2;
}

.hero-kicker {
  max-width: 620px;
  margin-top: 24px;
  color: var(--sage-deep);
  font-size: clamp(1.4rem, 2.8vw, 2.45rem);
  font-weight: 780;
  line-height: 1.08;
}

.hero-lede {
  max-width: 650px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.free-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 680;
}

.free-note span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(15, 122, 72, 0.28);
  border-radius: 50%;
  background: var(--field);
}

.free-note span::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 36px 0 0;
}

.hero-proof div {
  min-height: 86px;
  border: 1px solid rgba(174, 199, 175, 0.64);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-paper);
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  color: var(--sage-deep);
  font-size: 0.85rem;
  font-weight: 850;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.product-stage {
  position: relative;
  justify-self: end;
  width: min(520px, 100%);
  min-height: 690px;
}

.ambient-card {
  position: absolute;
  z-index: 2;
  width: 212px;
  border: 1px solid rgba(174, 199, 175, 0.74);
  border-radius: var(--radius);
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: var(--shadow-paper);
  backdrop-filter: blur(16px);
  animation: floatSoft 7s ease-in-out infinite;
}

.ambient-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 830;
  text-transform: uppercase;
}

.ambient-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
}

.ambient-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-weather {
  left: -56px;
  top: 108px;
}

.card-product {
  right: -22px;
  top: 250px;
  animation-delay: -2s;
}

.card-calendar {
  left: -16px;
  bottom: 112px;
  animation-delay: -4s;
}

.phone-preview {
  position: absolute;
  top: 20px;
  right: 48px;
  width: min(390px, 82vw);
  filter: drop-shadow(0 30px 65px rgba(43, 76, 54, 0.26));
}

.phone-shell {
  border: 9px solid #19281f;
  border-radius: 38px;
  background: #f9fcf6;
  color: var(--ink);
  padding: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    0 0 0 1px rgba(43, 76, 54, 0.08);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.phone-status strong {
  color: var(--leaf);
  font-size: 0.9rem;
  text-transform: none;
}

.task-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(17, 35, 26, 0.025) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(rgba(17, 35, 26, 0.022) 1px, transparent 1px) 0 0 / 22px 22px,
    #ffffff;
  padding: 22px;
}

.task-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.task-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  border: 1px solid rgba(213, 159, 58, 0.2);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(213, 159, 58, 0.09);
  color: #a56b10;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.confidence {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.task-checkbox,
.detail-box {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
}

.task-card h2 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(1.42rem, 2vw, 1.82rem);
  line-height: 1.12;
}

.task-card > p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.44;
}

.task-detail-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdf8;
}

.task-detail-list section {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 14px;
}

.task-detail-list section + section {
  border-top: 1px solid var(--line);
}

.detail-box {
  margin-top: 4px;
  color: var(--leaf);
}

.task-detail-list h3,
.why-row h3 {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.task-detail-list p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.32;
}

.task-detail-list strong {
  color: var(--ink);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.why-row > div {
  border: 1px solid rgba(91, 157, 180, 0.24);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(223, 242, 246, 0.55);
}

.why-row p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.32;
}

.task-done {
  width: 100%;
  margin-top: 16px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transform: translateX(-50%);
  box-shadow: var(--shadow-paper);
}

.scroll-cue span {
  width: 17px;
  height: 17px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.section-label {
  margin-bottom: 16px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 860;
  text-transform: uppercase;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading > p:last-child,
.answers-copy p,
.pricing-copy p,
.coverage-copy p,
.signal-copy p,
.faq-list p,
.price-card p,
.journey-step p,
.answer-grid p,
.map-card p {
  margin-top: 12px;
  color: var(--muted);
}

.journey {
  padding: 98px 0 106px;
  background: linear-gradient(180deg, var(--paper-warm) 0%, #ffffff 100%);
}

.journey-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.journey-rail::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(36, 91, 61, 0), rgba(36, 91, 61, 0.24), rgba(36, 91, 61, 0));
}

.journey-step {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 253, 248, 0.94));
  box-shadow: var(--shadow-paper);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 91, 61, 0.18);
  border-radius: var(--radius);
  background: var(--field);
  color: var(--sage-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.mini-ui {
  min-height: 112px;
  margin: 24px 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
}

.mini-ui span {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.profile-ui span {
  background:
    linear-gradient(var(--sage-deep), var(--sage-deep)) 10px 21px / 20px 3px no-repeat,
    linear-gradient(90deg, var(--sage-deep), var(--sage-deep)) 19px 10px / 3px 24px no-repeat,
    var(--field);
}

.signal-ui span {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 10px, var(--cornflower) 11px 13px, transparent 14px),
    var(--sky);
}

.task-ui span {
  background:
    linear-gradient(var(--sage-deep), var(--sage-deep)) 10px 12px / 20px 4px no-repeat,
    linear-gradient(var(--sage-deep), var(--sage-deep)) 10px 22px / 15px 4px no-repeat,
    var(--field);
}

.product-ui span {
  background:
    radial-gradient(circle at 50% 22%, var(--clay) 0 4px, transparent 5px),
    linear-gradient(180deg, transparent 20%, var(--clay) 21% 78%, transparent 79%),
    #f7e8e1;
}

.mini-ui strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.mini-ui p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.answers {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
  padding: 16px 0 108px;
}

.answers-copy p {
  max-width: 560px;
  font-size: 1.04rem;
}

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

.answer-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}

.answer-icon,
.engine-node span {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: var(--radius);
}

.answer-icon.action {
  background:
    linear-gradient(var(--sage-deep), var(--sage-deep)) 11px 12px / 20px 3px no-repeat,
    linear-gradient(var(--sage-deep), var(--sage-deep)) 11px 21px / 16px 3px no-repeat,
    var(--field);
}

.answer-icon.timing {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 10px, var(--cornflower) 11px 13px, transparent 14px),
    linear-gradient(45deg, transparent 49%, var(--cornflower) 50% 55%, transparent 56%),
    var(--sky);
}

.answer-icon.product {
  background:
    radial-gradient(circle at 50% 24%, var(--clay) 0 4px, transparent 5px),
    linear-gradient(180deg, transparent 22%, var(--clay) 23% 76%, transparent 77%),
    #f7e8e1;
}

.answer-icon.method {
  background:
    linear-gradient(135deg, transparent 0 42%, var(--leaf) 43% 57%, transparent 58%),
    radial-gradient(circle at 30% 72%, var(--leaf) 0 4px, transparent 5px),
    var(--field);
}

.signals {
  padding: 106px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 32px 32px,
    #244231;
  color: #ffffff;
}

.signal-engine {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.signals .section-label {
  color: var(--citrus);
}

.signal-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.engine-graphic {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.engine-graphic::before,
.engine-graphic::after {
  content: "";
  position: absolute;
  inset: 50% 18%;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 255, 82, 0), rgba(215, 255, 82, 0.64), rgba(215, 255, 82, 0));
  transform-origin: center;
}

.engine-graphic::after {
  transform: rotate(90deg);
}

.engine-node,
.engine-center {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.engine-node {
  width: 178px;
  padding: 17px;
}

.engine-node span {
  margin-bottom: 16px;
}

.engine-node strong,
.engine-center strong {
  display: block;
  color: #ffffff;
}

.engine-node p,
.engine-center p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.engine-node.weather {
  left: 32px;
  top: 36px;
}

.engine-node.soil {
  right: 32px;
  top: 56px;
}

.engine-node.grass {
  left: 52px;
  bottom: 44px;
}

.engine-node.rules {
  right: 44px;
  bottom: 40px;
}

.engine-node.weather span {
  background: radial-gradient(circle at 50% 32%, #bde9f3 0 5px, transparent 6px), rgba(189, 233, 243, 0.16);
  border: 1px solid rgba(189, 233, 243, 0.28);
}

.engine-node.soil span {
  background: radial-gradient(circle at 50% 50%, var(--citrus) 0 7px, transparent 8px), rgba(215, 255, 82, 0.16);
  border: 1px solid rgba(215, 255, 82, 0.32);
}

.engine-node.grass span {
  background:
    linear-gradient(105deg, transparent 44%, #bde7ad 45% 56%, transparent 57%),
    linear-gradient(75deg, transparent 44%, #bde7ad 45% 56%, transparent 57%),
    rgba(189, 231, 173, 0.16);
  border: 1px solid rgba(189, 231, 173, 0.3);
}

.engine-node.rules span {
  background:
    linear-gradient(var(--gold), var(--gold)) 12px 13px / 19px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 12px 22px / 14px 3px no-repeat,
    rgba(213, 159, 58, 0.14);
  border: 1px solid rgba(213, 159, 58, 0.3);
}

.engine-center {
  left: 50%;
  top: 50%;
  width: min(280px, calc(100% - 48px));
  padding: 22px;
  transform: translate(-50%, -50%);
  background: rgba(17, 35, 26, 0.56);
}

.engine-center span {
  display: block;
  color: var(--citrus);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.engine-center strong {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.18;
}

.coverage {
  padding: 106px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--field) 100%);
}

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 58px;
  align-items: center;
}

.coverage-copy p {
  max-width: 560px;
}

.coverage-stat {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}

.coverage-stat strong {
  color: var(--sage-deep);
  font-family: var(--display);
  font-size: 4.3rem;
  line-height: 0.88;
}

.coverage-stat span {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 830;
}

.map-card {
  border: 1px solid rgba(43, 76, 54, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.map-header span {
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-header strong {
  max-width: 410px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.state-map {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 35, 26, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(17, 35, 26, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--paper-warm);
  overflow: hidden;
}

.state-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 7%;
  top: 20%;
  bottom: 18%;
  background: linear-gradient(120deg, rgba(102, 143, 104, 0.13), rgba(102, 143, 104, 0.045));
  clip-path: polygon(7% 32%, 17% 20%, 31% 17%, 44% 10%, 61% 18%, 75% 18%, 90% 30%, 82% 45%, 90% 60%, 74% 70%, 66% 84%, 52% 79%, 39% 88%, 28% 78%, 14% 76%, 18% 60%, 5% 50%);
}

.state {
  position: absolute;
  display: grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(15, 122, 72, 0.26);
  border-radius: 5px;
  background: rgba(221, 242, 220, 0.82);
  color: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(43, 76, 54, 0.12);
}

.state.active {
  background: linear-gradient(180deg, #effbdd, #bfe6a8);
}

.ca { left: 12%; top: 48%; }
.or { left: 15%; top: 30%; }
.wa { left: 17%; top: 18%; }
.id { left: 26%; top: 27%; }
.nv { left: 23%; top: 45%; }
.ut { left: 34%; top: 47%; }
.az { left: 32%; top: 61%; }
.co { left: 44%; top: 47%; }
.tx { left: 51%; top: 72%; width: 46px; height: 34px; }
.al { left: 67%; top: 67%; }
.ms { left: 62%; top: 67%; }
.la { left: 60%; top: 77%; }
.fl { left: 77%; top: 79%; width: 46px; height: 30px; }
.ga { left: 72%; top: 66%; }
.sc { left: 78%; top: 61%; }
.nc { left: 82%; top: 54%; width: 44px; }
.va { left: 82%; top: 46%; }
.pa { left: 80%; top: 35%; }
.ny { left: 84%; top: 25%; }
.oh { left: 73%; top: 43%; }
.mi { left: 66%; top: 25%; }
.il { left: 63%; top: 47%; }

.map-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 10px rgba(15, 122, 72, 0.12);
  animation: pulseDot 2.5s ease-in-out infinite;
}

.dot-west {
  left: 20%;
  top: 36%;
}

.dot-south {
  left: 67%;
  top: 74%;
  animation-delay: -0.8s;
}

.dot-east {
  left: 85%;
  top: 40%;
  animation-delay: -1.6s;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 380px;
  gap: 54px;
  align-items: center;
  padding: 108px 0;
}

.pricing-copy p {
  max-width: 590px;
}

.price-card {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--sage-deep);
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
}

.price-card .button {
  width: 100%;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 112px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(43, 76, 54, 0.045);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--leaf);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-enabled .reveal.is-visible {
  animation: revealUp 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(15, 122, 72, 0.12);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(15, 122, 72, 0.04);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .signal-engine,
  .coverage-inner,
  .pricing,
  .faq,
  .answers {
    grid-template-columns: 1fr;
  }

  .product-stage {
    justify-self: center;
    width: min(560px, 100%);
  }

  .journey-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-rail::before {
    display: none;
  }

  .coverage-copy p,
  .pricing-copy p,
  .answers-copy p {
    max-width: 720px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav-links {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 76px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    width: 100%;
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(251, 253, 248, 0.98) 0%, rgba(251, 253, 248, 0.88) 58%, rgba(251, 253, 248, 1) 100%),
      url("./assets/first-mow-hero.png") 62% center / cover;
  }

  h1 {
    font-size: clamp(3.8rem, 19vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

  .hero-kicker {
    font-size: clamp(1.28rem, 7vw, 2rem);
  }

  .hero-proof,
  .journey-rail,
  .answer-grid,
  .why-row {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: 690px;
  }

  .ambient-card {
    display: none;
  }

  .phone-preview {
    top: 22px;
    left: 0;
    right: auto;
    width: 100%;
  }

  .phone-shell {
    border-width: 7px;
    border-radius: 30px;
    padding: 14px;
  }

  .task-card {
    border-radius: 22px;
    padding: 18px;
  }

  .task-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .task-detail-list section {
    grid-template-columns: 22px 1fr;
    gap: 11px;
    padding: 13px;
  }

  .journey,
  .signals,
  .coverage,
  .pricing {
    padding: 76px 0;
  }

  .answers {
    padding-bottom: 76px;
  }

  .engine-graphic {
    display: grid;
    min-height: auto;
    gap: 12px;
    padding: 14px;
  }

  .engine-graphic::before,
  .engine-graphic::after {
    display: none;
  }

  .engine-node,
  .engine-center {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto;
    transform: none;
  }

  .map-header {
    flex-direction: column;
  }

  .map-header strong {
    max-width: none;
    text-align: left;
  }

  .state-map {
    min-height: 300px;
  }

  .state {
    width: 31px;
    height: 25px;
    font-size: 0.62rem;
  }

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

@media (max-width: 430px) {
  .state-map {
    min-height: 280px;
  }

  .state {
    width: 28px;
    height: 23px;
  }

  .tx,
  .fl,
  .nc {
    width: 34px;
  }
}
