:root {
  --black: #030708;
  --deep: #07100d;
  --panel: #0b1211;
  --panel-2: #101917;
  --green: #7fd957;
  --green-2: #63c83e;
  --green-dark: #183b22;
  --line: rgba(127, 217, 87, 0.28);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f7fbf6;
  --muted: #b4bdb6;
  --soft: #e8eee8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 15%, rgba(127, 217, 87, 0.12), transparent 34%),
    radial-gradient(circle at 80% 68%, rgba(127, 217, 87, 0.09), transparent 28%),
    linear-gradient(135deg, #020607 0%, #07100d 48%, #020403 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  display: none;
  height: 0;
  content: "";
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell,
.site-header,
.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.header-logo {
  height: 50px;
  max-width: 185px;
}

.app-logo {
  height: 34px;
  max-width: 126px;
}

.dashboard-logo {
  height: 24px;
  max-width: 92px;
}

.footer-logo {
  height: 34px;
  max-width: 130px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 68px;
  padding: 8px max(24px, calc((100vw - 1360px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 16, 18, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-actions {
  gap: 24px;
  font-weight: 700;
}

.watch-demo-button {
  min-height: 42px;
  padding: 0;
  border: 0;
  color: var(--soft);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.watch-demo-button:hover {
  color: var(--green);
}

.header-cta,
.button,
.panel-button,
.email-capture button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  color: #071007;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.header-cta {
  min-height: 48px;
  padding: 0 22px;
}

.header-cta:hover,
.button:hover,
.panel-button:hover,
.email-capture button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.48fr;
  gap: 42px;
  align-items: start;
  min-height: auto;
  padding: 42px 0 44px;
}

.hero h1 {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: clamp(3.05rem, 4.55vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-subheadline {
  max-width: 500px;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 1.14rem;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 500px;
  margin-bottom: 22px;
}

.value-row div {
  min-width: 0;
}

.value-icon {
  display: block;
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.value-row strong {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.email-capture {
  display: grid;
  grid-template-columns: 1fr 210px;
  max-width: 500px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.email-capture input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  border: 0;
  color: var(--text);
  background: transparent;
  outline: 0;
}

.email-capture input::placeholder {
  color: #a7aea9;
}

.email-capture button {
  min-height: 58px;
  border-radius: 0;
}

.email-capture button span {
  padding-left: 10px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.microcopy::before {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #071007;
  background: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.product-app {
  min-width: 0;
}

.app-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 13, 12, 0.88);
  box-shadow: var(--shadow);
}

.app-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
}

.address-chip {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.address-chip span {
  color: var(--green);
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.topbar-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.topbar-actions .new-quote-button {
  border-color: transparent;
  color: #061006;
  background: var(--green);
  font-weight: 850;
}

.app-body {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 250px;
  min-height: 430px;
}

.tool-rail {
  display: grid;
  align-content: start;
  gap: 2px;
  padding-top: 12px;
  border-right: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}

.tool-rail button {
  min-height: 48px;
  border: 0;
  color: var(--soft);
  background: transparent;
  font-size: 0.75rem;
  cursor: pointer;
}

.tool-rail button.active {
  color: var(--green);
  background: rgba(127, 217, 87, 0.12);
}

.property-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #17241e;
}

.google-map,
.fallback-map {
  position: absolute;
  inset: 0;
}

.google-map {
  z-index: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.fallback-map {
  z-index: 1;
}

.property-map.google-ready .google-map {
  opacity: 1;
}

.property-map.google-ready .fallback-map {
  opacity: 0;
  pointer-events: none;
}

.satellite-layer,
.map-vignette,
.work-zone {
  position: absolute;
}

.satellite-layer {
  inset: 0;
  background: url("assets/satellite-yard.png") center / 100% 100% no-repeat;
  filter: saturate(0.92) contrast(1.04);
}

.satellite-layer::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.04);
}

.satellite-layer::after {
  display: none;
}

.map-vignette {
  inset: 0;
  box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 5;
}

.work-zone {
  display: grid;
  place-items: center;
  border: 3px solid rgba(127, 217, 87, 0.98);
  color: #081009;
  cursor: grab;
  touch-action: none;
  user-select: none;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75), 0 16px 38px rgba(0, 0, 0, 0.18);
  z-index: 4;
}

.work-zone span {
  z-index: 2;
  padding: 8px 10px;
  border-radius: 4px;
  color: #101410;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
}

.work-zone i {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.78);
  pointer-events: none;
}

.work-zone.dragging {
  cursor: grabbing;
  filter: brightness(1.15);
}

.grass-selection {
  left: 12%;
  top: 20%;
  width: 48%;
  height: 44%;
  clip-path: polygon(8% 20%, 51% 5%, 88% 18%, 96% 54%, 69% 90%, 18% 78%);
}

.work-zone.active {
  outline: 0;
}

.product-hero {
  display: block;
  width: 100%;
  min-height: calc(100vh - 68px);
  padding: 0;
  background: #0a0f11;
}

.product-shell {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: calc(100vh - 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b1113;
  overflow: hidden;
}

.app-icon-rail {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 17, 19, 0.98);
}

.app-icon-rail button {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  color: #aeb7b4;
  background: transparent;
  padding: 0 9px;
  font-size: 0.76rem;
  font-weight: 820;
  cursor: pointer;
  text-align: left;
}

.app-icon-rail button span {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
}

.app-icon-rail button strong {
  min-width: 0;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.12;
}

.app-icon-rail button.active {
  color: var(--green);
  background: rgba(127, 217, 87, 0.13);
}

.job-panel {
  position: relative;
  z-index: 6;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(24, 31, 34, 0.98), rgba(15, 22, 24, 0.98));
  box-shadow: 16px 0 38px rgba(0, 0, 0, 0.28);
}

.job-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}

.job-panel-head strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.job-panel-head button {
  width: 32px;
  height: 32px;
  border: 0;
  color: #c9d0cc;
  background: transparent;
  font-size: 1.55rem;
  cursor: pointer;
}

.mini-map-card {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: url("assets/new-hero.png") center / cover no-repeat;
}

.mini-map-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.18);
}

.mini-map-card span {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 2;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-map-line {
  position: absolute;
  left: 15%;
  top: 25%;
  z-index: 2;
  width: 64%;
  height: 52%;
  border: 1px solid rgba(127, 217, 87, 0.95);
  clip-path: polygon(4% 32%, 88% 8%, 98% 78%, 36% 98%);
  filter: none;
}

.job-panel label {
  display: grid;
  gap: 7px;
  color: #aab3b0;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-status {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.demo-status div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.demo-status span {
  color: #aab3b0;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-status strong {
  color: #f8fbf6;
  font-size: 0.82rem;
  text-align: right;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.service-tabs button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #dfe7e2;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.service-tabs button.active {
  border-color: rgba(127, 217, 87, 0.85);
  color: #071007;
  background: var(--green);
}

.job-panel select,
.panel-email input {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: #f8fbf6;
  background: #222a2d;
  padding: 0 12px;
  outline: 0;
}

.panel-email {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.panel-email button,
.outline-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 900;
}

.panel-email button {
  border: 0;
  color: #071007;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  cursor: pointer;
}

.outline-action {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eef5ef;
  background: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.workspace-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #070b0c;
}

.quote-panel {
  position: absolute;
  right: 24px;
  top: 50%;
  z-index: 9;
  display: grid;
  gap: 14px;
  width: min(318px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 15, 17, 0.9);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.quote-panel h2 {
  margin: 0;
  color: #f8fbf6;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.quote-panel-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.quote-panel-row span,
.quote-panel-status span {
  color: #aab3b0;
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.quote-panel-row strong {
  color: #fff;
  font-size: 0.88rem;
  text-align: right;
}

.quote-panel-status {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(127, 217, 87, 0.2);
  border-radius: 6px;
  background: rgba(127, 217, 87, 0.06);
}

.quote-panel-status p {
  margin: 0;
  color: #d6dfd8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.workspace-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(30, 37, 40, 0.92);
  backdrop-filter: blur(14px);
}

.workspace-toolbar div {
  display: grid;
  gap: 1px;
  align-content: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.workspace-toolbar span {
  color: #9aa5a0;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workspace-toolbar strong {
  color: #f8fbf6;
  font-size: 0.9rem;
}

.clearing-map {
  min-height: calc(100vh - 68px);
}

.clearing-map .satellite-layer {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1)),
    url("assets/new-hero.png");
  background-position: center;
  background-size: 100% 100%;
}

.clearing-map .map-vignette {
  box-shadow:
    inset 0 88px 100px rgba(0, 0, 0, 0.12),
    inset 0 -120px 150px rgba(0, 0, 0, 0.28),
    inset 100px 0 130px rgba(0, 0, 0, 0.18);
}

.work-area-badge {
  position: absolute;
  left: 50%;
  top: 51.5%;
  z-index: 6;
  display: grid;
  min-width: 256px;
  justify-items: center;
  padding: 26px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: #221c18;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
}

.work-area-badge span,
.work-area-badge em {
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-area-badge span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
}

.work-area-badge strong {
  color: var(--green);
  font-size: 3.1rem;
  line-height: 0.95;
}

.work-area-badge em {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.property-boundary {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
  filter: none;
}

.property-boundary path {
  fill: transparent;
  stroke: rgba(127, 217, 87, 0.88);
  stroke-width: 0.16;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.property-boundary circle {
  fill: rgba(127, 217, 87, 0.92);
  stroke: rgba(7, 12, 8, 0.92);
  stroke-width: 0.14;
}

.acreage-badge {
  position: absolute;
  left: 57%;
  top: 18%;
  z-index: 7;
  display: grid;
  gap: 4px;
  min-width: 156px;
  padding: 8px 10px;
  border: 1px solid rgba(127, 217, 87, 0.36);
  border-radius: 5px;
  color: #fff;
  background: rgba(11, 16, 18, 0.86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.acreage-badge span {
  color: #c8d4cd;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.acreage-badge strong {
  color: #fff;
  font-size: 1.04rem;
  line-height: 1;
}

.hero-copy {
  position: absolute;
  left: 32px;
  bottom: 100px;
  z-index: 6;
  width: min(560px, calc(100% - 410px));
}

.analysis-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid rgba(127, 217, 87, 0.35);
  border-radius: 999px;
  color: #d7ead0;
  background: rgba(6, 11, 12, 0.58);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.clearing-map h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 4.1vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
}

.clearing-map h1::before {
  display: none;
}

.clearing-map .hero-subheadline {
  position: absolute;
  left: 32px;
  bottom: 42px;
  z-index: 6;
  width: min(620px, calc(100% - 430px));
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.google-map-label {
  position: absolute;
  min-width: 82px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #151915;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.quote-summary {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-left: 1px solid var(--line-soft);
  background: rgba(7, 10, 10, 0.74);
}

.quote-summary h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.summary-lines {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.summary-line,
.summary-total div,
.material-card div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.summary-line {
  padding: 6px 0;
}

.summary-line span,
.summary-total span,
.material-card span {
  color: var(--soft);
  font-size: 0.78rem;
}

.summary-line small {
  display: block;
  margin-top: 2px;
  color: #9ba49f;
}

.summary-line strong,
.summary-total strong,
.material-card strong {
  font-size: 0.82rem;
  white-space: nowrap;
}

.summary-line.active span,
.summary-line.active strong {
  color: var(--green);
}

.summary-total {
  display: grid;
  gap: 7px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.grand-total strong {
  color: var(--green);
  font-size: 1.05rem;
}

.material-card {
  display: grid;
  gap: 7px;
  padding: 10px 0 12px;
}

.panel-button {
  width: 100%;
  margin-top: auto;
}

.feature-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at center, rgba(127, 217, 87, 0.14), transparent 54%),
    rgba(1, 5, 5, 0.52);
}

.feature-strip .section-shell {
  padding: 44px 0 54px;
}

.feature-strip h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip-grid article {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.strip-grid article:first-child {
  border-left: 0;
}

.strip-grid span {
  color: var(--green);
  font-size: 2rem;
}

.strip-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.02rem;
  line-height: 1.15;
}

.strip-grid p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.value-section,
.workflow,
.features,
.industries,
.signup {
  padding: 76px 0;
}

.value-section {
  padding-bottom: 18px;
}

.value-panel {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(127, 217, 87, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 22%, rgba(127, 217, 87, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.value-panel h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.value-panel p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.value-panel .button {
  width: fit-content;
  min-width: 190px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.wide {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.signup-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.workflow-showcase {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.workflow-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.workflow-copy ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-copy li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 0.7rem;
}

.mini-dashboard,
.mission-card,
.feature-card,
.signup-panel {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.mini-dashboard {
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.dashboard-top a {
  display: inline-flex;
  margin-left: auto;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  color: #061006;
  background: var(--green);
  font-weight: 850;
}

.quote-table {
  display: grid;
  padding: 14px 18px 18px;
}

.quote-table div {
  display: grid;
  grid-template-columns: 1fr auto 64px;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.88rem;
}

.quote-table em {
  color: var(--green);
  font-style: normal;
}

.mission-card {
  padding: 32px;
}

.mission-card span {
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
}

.mission-card p {
  color: var(--soft);
  font-size: 1.05rem;
}

.mission-card a {
  color: var(--green);
  font-weight: 850;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 190px;
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--soft);
}

.industry-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-marquee span {
  padding: 13px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 750;
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
}

.signup-panel p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--soft);
}

.development-note {
  margin-top: 12px;
  color: #d8e4d9;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line-soft);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer a:last-child {
  color: var(--green);
  font-weight: 850;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.demo-modal.is-open {
  display: grid;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(127, 217, 87, 0.35);
  border-radius: 10px;
  background: #050807;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.demo-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

body.modal-open {
  overflow: hidden;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (max-width: 1120px) {
  .hero:not(.product-hero) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-shell {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .quote-panel {
    width: 288px;
  }

  .hero-copy {
    width: min(500px, calc(100% - 360px));
  }

  .clearing-map .hero-subheadline {
    width: min(540px, calc(100% - 380px));
  }

  .workflow-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .watch-demo-button {
    display: none;
  }

  .app-body {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .quote-summary {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .strip-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid article:nth-child(odd) {
    border-left: 0;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }

  .product-shell {
    grid-template-columns: 1fr;
  }

  .job-panel {
    display: none;
  }

  .app-icon-rail {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 62px;
    max-height: 62px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .app-icon-rail button {
    flex: 0 0 auto;
    height: 40px;
    min-height: 40px;
    min-width: 118px;
  }

  .quote-panel {
    right: 18px;
    top: auto;
    bottom: 18px;
    width: min(318px, calc(100% - 36px));
    transform: none;
  }

  .clearing-map {
    min-height: 760px;
  }

  .work-area-badge {
    left: 50%;
    top: 46%;
  }

  .hero-copy {
    left: 22px;
    bottom: 250px;
    width: min(540px, calc(100% - 44px));
  }

  .clearing-map .hero-subheadline {
    left: 22px;
    bottom: 194px;
    width: min(540px, calc(100% - 44px));
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    min-height: 70px;
    gap: 10px;
    padding-inline: 14px;
  }

  .header-logo {
    height: 30px;
    max-width: 108px;
  }

  .nav-actions {
    gap: 0;
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero:not(.product-hero) h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .site-header {
    width: 100%;
  }

  .product-hero,
  .product-shell,
  .workspace-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .workspace-toolbar {
    display: none;
  }

  .clearing-map {
    min-height: 900px;
  }

  .clearing-map .satellite-layer {
    background-position: center top;
    background-size: auto 100%;
  }

  .analysis-kicker {
    min-height: 25px;
    margin-bottom: 9px;
    font-size: 0.64rem;
  }

  .work-area-badge {
    min-width: 232px;
    top: 54.7%;
    padding: 28px 20px 26px;
  }

  .work-area-badge span {
    font-size: 0.64rem;
  }

  .work-area-badge strong {
    font-size: 2.4rem;
  }

  .work-area-badge em {
    font-size: 0.78rem;
  }

  .clearing-map h1 {
    width: 100%;
    max-width: 330px;
    font-size: clamp(1.65rem, 7.6vw, 2.1rem);
    line-height: 1.08;
  }

  .hero-copy {
    left: 18px;
    top: 34px;
    bottom: auto;
    width: calc(100% - 36px);
  }

  .clearing-map .hero-subheadline {
    left: 18px;
    top: 190px;
    bottom: auto;
    width: calc(100% - 36px);
    max-width: 348px;
    font-size: 0.9rem;
  }

  .quote-panel {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: calc(100% - 28px);
    margin: 14px;
    padding: 14px;
    gap: 7px;
    transform: none;
  }

  .quote-panel-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 7px 0;
  }

  .quote-panel-row strong {
    text-align: left;
  }

  .quote-panel-status {
    padding: 10px;
  }

  .quote-panel-status p {
    display: none;
  }

  .property-boundary {
    inset: 0;
  }

  .acreage-badge {
    left: 50%;
    top: 19%;
    transform: translateX(-50%);
  }

  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .email-capture {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .tool-rail {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .tool-rail button {
    min-width: 82px;
  }

  .property-map {
    min-height: 430px;
  }

  .property-map.clearing-map {
    min-height: 560px;
  }

  .strip-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
  }

  .strip-grid article:first-child {
    border-top: 0;
  }

  .quote-table div {
    grid-template-columns: 1fr;
  }

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