: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;
  align-items: center;
  gap: 32px;
  color: var(--steel-3);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 6px;
  width: 384px;
  padding: 12px;
  background: rgba(10, 11, 13, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  color: var(--bone);
  font-size: 12px;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  border-color: rgba(218, 111, 66, 0.62);
  color: var(--white);
  background: rgba(189, 69, 20, 0.12);
}

.mobile-nav {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.mobile-nav summary {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.mobile-nav[open] summary {
  border-color: rgba(218, 111, 66, 0.78);
  background: rgba(189, 69, 20, 0.16);
}

.mobile-nav-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  padding: 18px 24px 24px;
  background: rgba(10, 11, 13, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.mobile-nav-primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-primary a,
.mobile-industry-grid a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--bone);
  font-size: 13px;
  font-weight: 700;
}

.mobile-nav-primary a:hover,
.mobile-industry-grid a:hover,
.mobile-industry-grid a[aria-current="page"] {
  border-color: rgba(218, 111, 66, 0.62);
  color: var(--white);
  background: rgba(189, 69, 20, 0.12);
}

.mobile-nav-section {
  padding-top: 16px;
}

.mobile-nav-section > span {
  display: block;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.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 .target-dot {
  --dot-result: #22c55e;
  fill: #9ca3af;
  animation: dotVerdict 18s linear infinite;
}

.parcels .target-dot.bad {
  --dot-result: #ef4444;
}

.t1 {
  animation-delay: 0s;
}

.t2 {
  animation-delay: 2s;
}

.t3 {
  animation-delay: 4s;
}

.t4 {
  animation-delay: 6s;
}

.t5 {
  animation-delay: 8s;
}

.t6 {
  animation-delay: 10s;
}

.t7 {
  animation-delay: 12s;
}

.t8 {
  animation-delay: 14s;
}

.t9 {
  animation-delay: 16s;
}

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

.zoom-box.t1,
.parcels .target-dot.t1 {
  animation-delay: 0s;
}

.zoom-box.t2,
.parcels .target-dot.t2 {
  animation-delay: 2s;
}

.zoom-box.t3,
.parcels .target-dot.t3 {
  animation-delay: 4s;
}

.zoom-box.t4,
.parcels .target-dot.t4 {
  animation-delay: 6s;
}

.zoom-box.t5,
.parcels .target-dot.t5 {
  animation-delay: 8s;
}

.zoom-box.t6,
.parcels .target-dot.t6 {
  animation-delay: 10s;
}

.zoom-box.t7,
.parcels .target-dot.t7 {
  animation-delay: 12s;
}

.zoom-box.t8,
.parcels .target-dot.t8 {
  animation-delay: 14s;
}

.zoom-box.t9,
.parcels .target-dot.t9 {
  animation-delay: 16s;
}

.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(156, 163, 175, 0.58);
  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(156, 163, 175, 0.58);
  stroke-width: 1;
  animation: clusterDash 8s linear infinite, boxLockGlow 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 {
  --verdict-stroke: #22c55e;
  --verdict-fill: rgba(34, 197, 94, 0.12);
  fill: rgba(107, 114, 128, 0.08);
  stroke: rgba(156, 163, 175, 0.72);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  opacity: 0;
  animation: dotZoomVerdict 18s linear infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  vector-effect: non-scaling-stroke;
}

.zoom-box.bad {
  --verdict-stroke: #ef4444;
  --verdict-fill: rgba(239, 68, 68, 0.12);
}

.zoom-locks {
  pointer-events: none;
}

.site-lock {
  display: none;
}

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

.industry-card-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);
}

.industry-card {
  display: block;
  min-height: 184px;
  padding: 28px;
  background: var(--coal);
  transition: background 160ms ease, transform 160ms ease;
}

.industry-card:hover {
  background: var(--graphite);
  transform: translateY(-2px);
}

.industry-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-card h3 {
  margin-bottom: 14px;
}

.industry-card p {
  margin: 0;
  color: var(--steel-3);
  font-size: 14.5px;
  line-height: 1.55;
}

.industry-card-grid.compact .industry-card {
  min-height: 150px;
}

.vertical-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}

.vertical-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 88%);
}

.vertical-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.vertical-hero-grid > *,
.vertical-detail-grid > *,
.vertical-product-grid > * {
  min-width: 0;
}

.vertical-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.96;
}

.industry-hub-hero h1 {
  max-width: 940px;
}

.mini-readout {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--coal);
}

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

.mini-readout svg {
  width: 100%;
  height: auto;
}

.mini-readout rect:first-child {
  fill: #0e1014;
}

.mini-road {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  stroke-linecap: round;
}

.mini-road.alt {
  stroke: rgba(255, 255, 255, 0.15);
}

.mini-heat {
  fill: rgba(189, 69, 20, 0.18);
}

.mini-heat.alt {
  fill: rgba(218, 111, 66, 0.14);
}

.mini-dots {
  fill: var(--accent-soft);
}

.mini-target rect:first-child {
  fill: none;
  stroke: rgba(156, 163, 175, 0.65);
  stroke-width: 1;
  stroke-dasharray: 7 6;
}

.mini-target .found {
  fill: rgba(34, 197, 94, 0.1);
  stroke: #22c55e;
  stroke-width: 1.3;
  stroke-dasharray: 5 4;
}

.mini-target path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 1.2;
}

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

.vertical-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.vertical-detail-grid article {
  padding: 36px;
  background: var(--coal);
}

.vertical-product {
  display: grid;
  gap: 34px;
}

.vertical-product-header {
  max-width: 920px;
}

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

.vertical-product-grid article {
  min-height: 248px;
  padding: 30px;
  background: var(--coal);
}

.vertical-product-grid strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 12px;
  border: 1px solid rgba(241, 138, 82, 0.34);
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.vertical-product-grid h3 {
  margin-bottom: 14px;
}

.vertical-product-grid p,
.vertical-proof {
  margin: 0;
  color: var(--steel-3);
  font-size: 15px;
  line-height: 1.55;
}

.vertical-proof {
  max-width: 760px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.storm-window-section {
  background:
    linear-gradient(180deg, rgba(11, 14, 18, 0.98), rgba(14, 16, 20, 1)),
    var(--coal);
}

.storm-window-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 54px;
  align-items: center;
}

.storm-window-copy {
  min-width: 0;
}

.storm-window-copy h2 {
  max-width: 760px;
}

.storm-window-note {
  max-width: 680px;
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid #38bdf8;
  color: var(--steel-3);
  font-size: 15.5px;
  line-height: 1.55;
}

.storm-window-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.storm-window-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 0 12px;
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.storm-map-panel {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: #080b0f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.storm-map-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.storm-map {
  display: block;
  width: 100%;
  height: auto;
}

.storm-map-bg {
  fill: #0b1117;
}

.storm-grid path {
  fill: none;
  stroke: rgba(148, 163, 184, 0.08);
  stroke-width: 1;
}

.storm-roads path {
  fill: none;
  stroke: rgba(226, 232, 240, 0.28);
  stroke-width: 3;
  stroke-linecap: round;
}

.storm-swath path {
  stroke-width: 1.4;
}

.swath-outer {
  fill: rgba(250, 204, 21, 0.13);
  stroke: rgba(250, 204, 21, 0.42);
}

.swath-mid {
  fill: rgba(249, 115, 22, 0.18);
  stroke: rgba(249, 115, 22, 0.54);
}

.swath-core {
  fill: rgba(239, 68, 68, 0.24);
  stroke: rgba(248, 113, 113, 0.68);
}

.storm-parcels circle {
  fill: #e2e8f0;
  stroke: rgba(8, 11, 15, 0.86);
  stroke-width: 1.2;
}

.storm-campaign-cell rect {
  fill: rgba(56, 189, 248, 0.08);
  stroke: rgba(56, 189, 248, 0.78);
  stroke-width: 1.6;
  stroke-dasharray: 8 7;
}

.storm-campaign-cell text,
.storm-event-callout text {
  fill: #e5e7eb;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.storm-campaign-cell text + text,
.storm-event-callout text + text {
  fill: var(--steel-3);
  font-size: 12px;
}

.storm-event-callout line {
  stroke: rgba(56, 189, 248, 0.8);
  stroke-width: 1.4;
}

.storm-event-callout rect {
  fill: rgba(8, 11, 15, 0.92);
  stroke: rgba(56, 189, 248, 0.48);
  stroke-width: 1;
}

.storm-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.storm-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.storm-map-legend i {
  width: 18px;
  height: 10px;
  display: inline-block;
  border-radius: 2px;
}

.legend-yellow {
  background: rgba(250, 204, 21, 0.55);
}

.legend-orange {
  background: rgba(249, 115, 22, 0.62);
}

.legend-red {
  background: rgba(239, 68, 68, 0.68);
}

.enhancement-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(148, 163, 184, 0.12);
}

.enhancement-strip article {
  min-width: 0;
  padding: 26px;
  background: #0e1014;
}

.enhancement-strip strong {
  display: block;
  margin-bottom: 12px;
  color: #f8fafc;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.enhancement-strip p {
  margin: 0;
  color: var(--steel-3);
  font-size: 15px;
  line-height: 1.52;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--steel-3);
  font-size: 15.5px;
  line-height: 1.5;
}

.signal-list li {
  position: relative;
  padding-left: 20px;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.vertical-conversion {
  max-width: 860px;
}

.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 dotVerdict {
  0%,
  1.8% {
    fill: #9ca3af;
    opacity: 0.72;
    transform: scale(0.85);
  }
  3.8%,
  6.4% {
    fill: #6b7280;
    opacity: 1;
    transform: scale(1.15);
  }
  7% {
    fill: var(--dot-result);
    opacity: 1;
    transform: scale(1.7);
  }
  7.8% {
    fill: #9ca3af;
    opacity: 0.85;
    transform: scale(1.05);
  }
  8.6% {
    fill: var(--dot-result);
    opacity: 1;
    transform: scale(1.6);
  }
  10.8% {
    fill: #9ca3af;
    opacity: 0.68;
    transform: scale(0.9);
  }
  11.2%,
  100% {
    fill: #9ca3af;
    opacity: 0.68;
    transform: scale(0.82);
  }
}

@keyframes dotZoomVerdict {
  0% {
    fill: rgba(107, 114, 128, 0);
    stroke: rgba(156, 163, 175, 0);
    opacity: 0;
    transform: translate3d(-10px, 8px, 0) scale(5.2);
  }
  1.8% {
    fill: rgba(107, 114, 128, 0.08);
    stroke: rgba(156, 163, 175, 0.65);
    opacity: 0.58;
    transform: translate3d(5px, -4px, 0) scale(3.4);
  }
  4%,
  6.4% {
    fill: rgba(107, 114, 128, 0.1);
    stroke: rgba(156, 163, 175, 0.9);
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  7% {
    fill: var(--verdict-fill);
    stroke: var(--verdict-stroke);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.72);
    filter: drop-shadow(0 0 8px var(--verdict-stroke));
  }
  7.75% {
    fill: rgba(107, 114, 128, 0.1);
    stroke: rgba(156, 163, 175, 0.82);
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(0.98);
    filter: none;
  }
  8.55% {
    fill: var(--verdict-fill);
    stroke: var(--verdict-stroke);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.58);
    filter: drop-shadow(0 0 10px var(--verdict-stroke));
  }
  10.8% {
    fill: rgba(107, 114, 128, 0.02);
    stroke: rgba(156, 163, 175, 0.22);
    opacity: 0.22;
    transform: translate3d(10px, -8px, 0) scale(3.2);
    filter: none;
  }
  11.2%,
  100% {
    fill: rgba(107, 114, 128, 0);
    stroke: rgba(156, 163, 175, 0);
    opacity: 0;
    transform: translate3d(18px, -12px, 0) scale(5.2);
    filter: none;
  }
}

@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,
  .vertical-hero-grid,
  .storm-window-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,
  .industry-card-grid,
  .vertical-product-grid,
  .enhancement-strip,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical-detail-grid {
    grid-template-columns: 1fr;
  }

  .storm-map-panel {
    max-width: 820px;
  }

  .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 > .btn-small {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .vertical-hero {
    padding: 42px 0 52px;
  }

  .vertical-hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .vertical-hero h1 {
    font-size: 40px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

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

  .industry-card-grid,
  .xray-grid,
  .vertical-product-grid,
  .enhancement-strip,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .vertical-product-grid article,
  .vertical-detail-grid article,
  .enhancement-strip article {
    padding: 24px;
  }

  .storm-window-grid {
    gap: 30px;
  }

  .storm-window-tags span {
    min-height: 32px;
    font-size: 10px;
  }

  .storm-map-head,
  .storm-map-legend {
    align-items: flex-start;
    flex-direction: column;
  }

  .storm-map-panel {
    overflow: hidden;
  }

  .mobile-industry-grid {
    grid-template-columns: 1fr;
  }

  .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,
  .vertical-product-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;
  }
}
