:root {
  --onyx: #0a0b0d;
  --coal: #111317;
  --graphite: #1a1d22;
  --slate: #232830;
  --steel: #565e69;
  --steel-2: #7a828f;
  --steel-3: #a5adb8;
  --bone: #e7e9ec;
  --paper: #f4f5f7;
  --white: #ffffff;
  --accent: #bd4514;
  --accent-deep: #862908;
  --accent-soft: #da6f42;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", Consolas, "Liberation Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--onyx);
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark-text {
  font-size: 22px;
}

.wordmark-x {
  width: 22px;
  height: 22px;
  transform: translateY(3px);
}

.wordmark-x path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 9;
  stroke-linecap: square;
}

.nav {
  display: flex;
  gap: 32px;
  color: var(--steel-3);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 80ms ease, background 150ms ease, border-color 150ms ease;
}

.btn::after {
  content: "->";
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent-soft);
  letter-spacing: 0.2em;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 span,
.final-cta h2 span {
  color: var(--accent);
}

h2 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.hero-sub,
.lead,
.section-sub {
  max-width: 58ch;
  color: var(--steel-3);
  font-size: 18px;
  line-height: 1.55;
}

.hero-sub {
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.readout {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--graphite), var(--coal));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.readout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--coal);
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-soft);
}

.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.readout-map {
  aspect-ratio: 720 / 440;
  background: #0e1014;
  overflow: hidden;
  position: relative;
}

.readout-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(241, 138, 82, 0) 0%,
    rgba(241, 138, 82, 0.06) 38%,
    rgba(241, 138, 82, 0.34) 49%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(241, 138, 82, 0.2) 52%,
    rgba(241, 138, 82, 0) 62%
  );
  opacity: 0.68;
  transform: translateX(-100%);
  animation: panelSweep 4.2s linear infinite;
}

.readout-map::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: 2px;
  pointer-events: none;
  background: rgba(241, 138, 82, 0.7);
  box-shadow: 0 0 18px rgba(241, 138, 82, 0.55);
  opacity: 0.72;
  animation: horizontalSweep 3.8s linear infinite;
}

.readout-map svg {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ticks,
.legend,
.cluster text {
  fill: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roads {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.roads path {
  animation: roadFloat 8.5s ease-in-out infinite alternate;
  transform-box: fill-box;
}

.roads path:nth-child(2),
.roads path:nth-child(5) {
  animation-delay: -2s;
}

.routes path {
  stroke: rgba(241, 138, 82, 0.76);
  stroke-width: 2;
  stroke-dasharray: 12 12;
  stroke-dashoffset: 96;
  animation: routeMarch 2.9s linear infinite;
}

.routes .route-b {
  animation-delay: -1.1s;
  opacity: 0.72;
}

.scan-sweep {
  animation: scanSweep 5.4s linear infinite;
}

.scan-sweep line {
  stroke: rgba(241, 138, 82, 0.52);
  stroke-width: 1;
}

.heat-fields ellipse {
  animation: heatPulse 4.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.heat-fields ellipse:nth-child(2) {
  animation-delay: -1.4s;
}

.heat-fields ellipse:nth-child(3) {
  animation-delay: -2.8s;
}

.heat-fields ellipse:nth-child(4) {
  animation-delay: -3.7s;
}

.parcels {
  fill: var(--accent);
}

.parcels circle {
  animation: parcelBlink 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.parcels circle:nth-child(3n) {
  animation-delay: -0.8s;
}

.parcels circle:nth-child(4n) {
  animation-delay: -1.6s;
}

.parcels circle:nth-child(5n) {
  animation-delay: -2.4s;
}

.parcels.muted {
  fill: var(--steel-2);
  opacity: 0.7;
}

.parcels.muted circle {
  animation: mutedBlink 4.8s ease-in-out infinite;
}

.cluster {
  transform-box: fill-box;
  transform-origin: center;
  animation: clusterAimA 6.8s cubic-bezier(0.5, 0, 0.18, 1) infinite;
}

.cluster-b {
  animation-name: clusterAimB;
  animation-delay: -1.5s;
}

.cluster-c {
  animation-name: clusterAimC;
  animation-delay: -3s;
}

.cluster > path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 1;
  stroke-dasharray: 8 6;
  animation: clusterDash 8s linear infinite, boxLockGlow 6.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.cluster-a > path {
  stroke: rgba(54, 255, 154, 0.52);
  stroke-width: 1.35;
  animation: clusterDash 8s linear infinite, foundBoxGlow 6.8s ease-in-out infinite;
}

.cluster-b > path {
  animation-delay: -1.5s;
}

.cluster-c > path {
  animation-delay: -3s;
}

.cluster text {
  fill: var(--white);
  font-weight: 600;
}

.zoom-box {
  fill: rgba(189, 69, 20, 0.05);
  stroke: rgba(241, 138, 82, 0.85);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  opacity: 0;
  animation: zoomTarget 6.8s cubic-bezier(0.48, 0, 0.16, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.cluster-a .zoom-box {
  fill: rgba(54, 255, 154, 0.11);
  stroke: rgba(54, 255, 154, 0.98);
  animation-name: zoomTargetFound;
}

.cluster-b .zoom-box {
  animation-delay: -1.5s;
}

.cluster-c .zoom-box {
  animation-delay: -3s;
}

.site-lock {
  fill: none;
  stroke: rgba(241, 138, 82, 0.82);
  stroke-width: 1.4;
  opacity: 0.2;
  animation: lockOn 6.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.site-lock circle:first-child {
  stroke-dasharray: 7 5;
  animation: lockRing 2.4s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.site-lock path {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.2;
  stroke-dasharray: none;
  animation: none;
}

.site-lock .lock-dot {
  fill: var(--accent-soft);
  stroke: none;
  filter: drop-shadow(0 0 7px rgba(241, 138, 82, 0.74));
}

.cluster-a .site-lock {
  stroke: rgba(54, 255, 154, 0.98);
  stroke-width: 1.8;
}

.cluster-a .site-lock .lock-dot {
  fill: #36ff9a;
  filter: drop-shadow(0 0 10px rgba(54, 255, 154, 0.9));
}

.cluster-b .site-lock {
  animation-delay: -1.5s;
}

.cluster-c .site-lock {
  animation-delay: -3s;
}

.cluster-ping {
  fill: none;
  stroke: rgba(241, 138, 82, 0.78);
  stroke-width: 2;
  animation: clusterPing 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.cluster-b .cluster-ping {
  animation-delay: -0.9s;
}

.cluster-c .cluster-ping {
  animation-delay: -1.8s;
}

.readout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.readout-stats div {
  padding: 18px;
  animation: statGlow 5.5s ease-in-out infinite;
}

.readout-stats div:nth-child(2) {
  animation-delay: -1.7s;
}

.readout-stats div:nth-child(3) {
  animation-delay: -3.4s;
}

.readout-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.readout-stats span {
  display: block;
  margin-bottom: 7px;
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readout-stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.readout-stats div:nth-child(-n + 2) strong {
  color: var(--accent-soft);
}

.section {
  padding: 110px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-coal {
  background: var(--coal);
}

.split-grid,
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.stat-stack {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  color: var(--accent);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.stat p {
  margin: 0;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.5;
}

.xray-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.xray-grid article {
  min-height: 220px;
  padding: 32px;
  background: var(--coal);
}

.xray-grid article.feature {
  background: var(--graphite);
}

.xray-grid article.wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.xray-grid span,
.steps span,
.price-grid span,
.panel-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.xray-grid p,
.steps p,
.price-grid p,
.request-panel p {
  margin-bottom: 0;
  color: var(--steel-3);
  font-size: 14.5px;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps article {
  padding: 32px 28px 30px;
}

.steps article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.steps svg {
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  overflow: visible;
}

.steps svg path,
.steps svg circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 6.6;
  stroke-linecap: square;
}

.steps svg circle {
  stroke-width: 2.8;
}

.steps svg rect {
  fill: var(--white);
}

.steps svg .accent-fill {
  fill: var(--accent);
  stroke: none;
}

.steps svg .frame {
  stroke-width: 3;
}

.steps span b {
  margin-right: 8px;
  color: var(--accent-soft);
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: var(--graphite);
  color: var(--bone);
  font-size: 15px;
  font-weight: 600;
}

.pill-row span.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.checklist {
  color: var(--steel-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.checklist div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist span {
  color: var(--accent-soft);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.price-grid article {
  padding: 32px;
  background: var(--onyx);
}

.price-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  transform: translate(30%, -30%);
  background: radial-gradient(circle, rgba(189, 69, 20, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .wrap {
  position: relative;
}

.request-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 44px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--graphite);
}

.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclosure {
  max-width: 92ch;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.disclosure strong {
  margin-right: 10px;
  color: var(--accent-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-wordmark {
  opacity: 0.85;
}

.footer-wordmark .wordmark-text {
  font-size: 16px;
}

.footer-wordmark .wordmark-x {
  width: 16px;
  height: 16px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(189, 69, 20, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(189, 69, 20, 0);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  8%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(900px);
    opacity: 0;
  }
}

@keyframes panelSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes horizontalSweep {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  12%,
  82% {
    opacity: 0.72;
  }
  100% {
    transform: translateY(440px);
    opacity: 0;
  }
}

@keyframes roadFloat {
  from {
    transform: translate3d(-4px, 0, 0);
  }
  to {
    transform: translate3d(4px, -3px, 0);
  }
}

@keyframes routeMarch {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes heatPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes parcelBlink {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }
  45%,
  55% {
    opacity: 1;
    transform: scale(1.24);
  }
}

@keyframes mutedBlink {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes clusterDash {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes clusterAimA {
  0% {
    transform: translate3d(-8px, 6px, 0) scale(1.04);
    opacity: 0.82;
  }
  28% {
    transform: translate3d(10px, -8px, 0) scale(1.08);
    opacity: 0.58;
  }
  48% {
    transform: translate3d(-3px, 4px, 0) scale(1.02);
    opacity: 0.78;
  }
  62%,
  86% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translate3d(-8px, 6px, 0) scale(1.04);
    opacity: 0.82;
  }
}

@keyframes clusterAimB {
  0% {
    transform: translate3d(9px, -4px, 0) scale(1.05);
    opacity: 0.76;
  }
  30% {
    transform: translate3d(-11px, 8px, 0) scale(1.09);
    opacity: 0.56;
  }
  50% {
    transform: translate3d(5px, -3px, 0) scale(1.02);
    opacity: 0.8;
  }
  64%,
  86% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translate3d(9px, -4px, 0) scale(1.05);
    opacity: 0.76;
  }
}

@keyframes clusterAimC {
  0% {
    transform: translate3d(-6px, -9px, 0) scale(1.05);
    opacity: 0.78;
  }
  26% {
    transform: translate3d(12px, 7px, 0) scale(1.1);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(-4px, 2px, 0) scale(1.02);
    opacity: 0.8;
  }
  64%,
  88% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translate3d(-6px, -9px, 0) scale(1.05);
    opacity: 0.78;
  }
}

@keyframes boxLockGlow {
  0%,
  54%,
  100% {
    stroke: rgba(255, 255, 255, 0.42);
    filter: none;
  }
  66%,
  84% {
    stroke: rgba(241, 138, 82, 0.86);
    filter: drop-shadow(0 0 6px rgba(241, 138, 82, 0.42));
  }
}

@keyframes foundBoxGlow {
  0%,
  38%,
  100% {
    stroke: rgba(54, 255, 154, 0.45);
    filter: drop-shadow(0 0 5px rgba(54, 255, 154, 0.22));
  }
  50%,
  90% {
    stroke: rgba(54, 255, 154, 1);
    filter: drop-shadow(0 0 13px rgba(54, 255, 154, 0.78));
  }
}

@keyframes zoomTarget {
  0%,
  40% {
    opacity: 0;
    transform: translate3d(-14px, 10px, 0) scale(5.4);
  }
  52% {
    opacity: 0.4;
    transform: translate3d(8px, -6px, 0) scale(3.2);
  }
  66% {
    opacity: 0.88;
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  78% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(0.62);
  }
  88% {
    opacity: 0.22;
    transform: translate3d(8px, -8px, 0) scale(2.8);
  }
  100% {
    opacity: 0;
    transform: translate3d(18px, -12px, 0) scale(5.4);
  }
}

@keyframes zoomTargetFound {
  0%,
  34% {
    opacity: 0;
    transform: translate3d(-14px, 10px, 0) scale(5.4);
    stroke: rgba(241, 138, 82, 0.78);
  }
  46% {
    opacity: 0.66;
    transform: translate3d(8px, -6px, 0) scale(3.2);
    stroke: rgba(54, 255, 154, 0.72);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
    stroke: rgba(54, 255, 154, 1);
  }
  70%,
  88% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.58);
    stroke: rgba(54, 255, 154, 1);
    filter: drop-shadow(0 0 13px rgba(54, 255, 154, 0.82));
  }
  94% {
    opacity: 0.38;
    transform: translate3d(8px, -8px, 0) scale(2.8);
    stroke: rgba(54, 255, 154, 0.8);
  }
  100% {
    opacity: 0;
    transform: translate3d(18px, -12px, 0) scale(5.4);
    stroke: rgba(54, 255, 154, 0.2);
  }
}

@keyframes lockOn {
  0%,
  48%,
  100% {
    opacity: 0.18;
    transform: scale(1.28);
  }
  62% {
    opacity: 1;
    transform: scale(0.84);
  }
  74%,
  86% {
    opacity: 0.95;
    transform: scale(1);
  }
}

@keyframes lockRing {
  to {
    stroke-dashoffset: -48;
    transform: rotate(360deg);
  }
}

@keyframes clusterPing {
  0% {
    opacity: 0.75;
    transform: scale(0.3);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes statGlow {
  0%,
  100% {
    background: transparent;
  }
  50% {
    background: rgba(189, 69, 20, 0.08);
  }
}

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

  .live-dot::before {
    animation: none;
    box-shadow: 0 0 0 4px rgba(189, 69, 20, 0.22);
  }

  .scan-sweep,
  .readout-map::before,
  .readout-map::after,
  .roads path,
  .routes path,
  .heat-fields ellipse,
  .parcels circle,
  .cluster,
  .cluster path,
  .zoom-box,
  .site-lock,
  .site-lock circle:first-child,
  .cluster-ping,
  .readout-stats div {
    animation: none;
  }
}

@media (max-width: 1099px) {
  .hero {
    padding: 68px 0 78px;
  }

  .hero-grid,
  .split-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .problem {
    padding-top: 20px;
  }

  .readout {
    max-width: 760px;
  }

  .readout-map {
    aspect-ratio: 16 / 9;
  }

  .readout-stats {
    display: none;
  }

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

  .xray-grid article.wide {
    grid-column: span 2;
  }

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

  .steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .steps article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 759px) {
  .wrap {
    padding: 0 24px;
  }

  .nav {
    display: none;
  }

  .header-inner {
    gap: 14px;
  }

  .wordmark-text {
    font-size: 20px;
  }

  .wordmark-x {
    width: 20px;
    height: 20px;
  }

  .btn-small {
    max-width: 168px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    padding: 34px 0;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 44px);
    line-height: 0.98;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.5;
  }

  .button-row .btn {
    width: 100%;
  }

  .button-row .btn-ghost {
    display: none;
  }

  .trust-row {
    display: none;
  }

  .readout-head,
  .readout-stats span {
    font-size: 9px;
  }

  .readout-stats div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 72px 0;
  }

  .problem {
    padding-top: 16px;
  }

  .stat {
    grid-template-columns: 84px 1fr;
    gap: 16px;
  }

  .stat strong {
    font-size: 36px;
  }

  .xray-grid,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .xray-grid article.wide {
    grid-column: span 1;
  }

  .steps article + article,
  .steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .request-panel .btn {
    width: 100%;
  }

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