:root {
  color-scheme: dark;
  --black: #030605;
  --ink: #07100d;
  --charcoal: #111614;
  --panel: rgba(7, 15, 12, 0.82);
  --panel-solid: #0a1110;
  --steel: #87928d;
  --steel-bright: #d7dfda;
  --muted: #9aa49c;
  --green: #78b82a;
  --green-hot: #b6ff2e;
  --green-deep: #254b13;
  --cyan: #2fd9ff;
  --amber: #f7b54c;
  --red: #f03526;
  --red-deep: #7c0d0d;
  --line: rgba(126, 188, 47, 0.28);
  --line-strong: rgba(182, 255, 46, 0.7);
  --shadow: rgba(0, 0, 0, 0.72);
  --max: 1760px;
  --edge: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(120, 184, 42, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(120, 184, 42, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(83, 138, 34, 0.18), transparent 34rem),
    #030605;
  background-size: 88px 88px, 88px 88px, auto;
  color: #f3f7f2;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  min-width: 320px;
}

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

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

.site-frame {
  overflow: hidden;
  position: relative;
}

.site-frame::before {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(120, 184, 42, 0.55) 0 18px,
      transparent 18px 40px
    );
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 64px;
  z-index: 15;
}

.content-rail {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: var(--edge);
  width: 100%;
}

.section-band {
  position: relative;
}

.section-band[id] {
  scroll-margin-top: 120px;
}

.nav-bar {
  align-items: center;
  background: #030605;
  border-bottom: 1px solid rgba(240, 53, 38, 0.36);
  display: grid;
  gap: 16px;
  grid-template-columns: 370px 1fr 280px;
  left: 0;
  padding: 14px var(--edge);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand-lockup img {
  height: 82px;
  object-fit: contain;
  object-position: left center;
  width: 365px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-links a,
.nav-emergency span {
  color: #f5f8f4;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 1;
  padding-block: 8px;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  background: var(--green-hot);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.is-current::after {
  transform: scaleX(1);
}

.nav-emergency {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-self: end;
  white-space: nowrap;
}

.nav-emergency strong {
  color: #ff5146;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.35rem;
  text-shadow: 0 0 16px rgba(240, 53, 38, 0.55);
}

.nav-emergency span {
  color: #ff5146;
  text-shadow: 0 0 12px rgba(240, 53, 38, 0.35);
}

.hero-section {
  isolation: isolate;
  min-height: 980px;
  padding: 138px 0 28px;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.86;
  position: absolute;
  width: 100%;
  z-index: -5;
}

.hero-section::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 34%, rgba(0, 0, 0, 0.1) 66%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), #030605 98%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -4;
}

.fog-layer {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(196, 217, 210, 0.18), transparent 36rem),
    radial-gradient(ellipse at 70% 28%, rgba(117, 140, 135, 0.18), transparent 34rem);
  filter: blur(14px);
  height: 42%;
  left: -12%;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  right: -12%;
  z-index: -1;
}

.fog-one {
  animation: fogDrift 24s ease-in-out infinite alternate;
  top: 24%;
}

.fog-two {
  animation: fogDrift 29s ease-in-out infinite alternate-reverse;
  bottom: 6%;
}

.hero-grid-overlay {
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(126, 188, 47, 0.08) 50%, transparent 51%),
    linear-gradient(transparent 0 49%, rgba(126, 188, 47, 0.08) 50%, transparent 51%);
  background-size: 120px 120px;
  inset: 0;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-content {
  align-items: stretch;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1rem;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.red {
  color: #ff5146;
}

h1,
h2,
h3 {
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  color: #f4f5f1;
  font-size: 6.8rem;
  max-width: 900px;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.42), 0 0 34px rgba(120, 184, 42, 0.24);
}

h1::first-line {
  color: var(--green);
}

.hero-lede {
  color: #e2e7e2;
  font-size: 1.24rem;
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid rgba(126, 188, 47, 0.55);
  display: inline-flex;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1rem;
  gap: 12px;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--green-hot);
  box-shadow: 0 0 26px rgba(126, 188, 47, 0.36);
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #78b82a, #3f7818);
  color: #f7fff0;
}

.button-ghost {
  background: rgba(5, 10, 8, 0.66);
  color: #f7fff0;
}

.button-danger {
  background: linear-gradient(180deg, #f03526, #84130e);
  border-color: rgba(255, 81, 70, 0.65);
  color: #fff8f6;
  text-shadow: 0 0 12px rgba(255, 81, 70, 0.46);
}

.coverage-console,
.module-panel,
.contact-card,
.status-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(15, 28, 23, 0.94), rgba(3, 7, 6, 0.9));
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px var(--shadow), inset 0 0 30px rgba(126, 188, 47, 0.08);
  position: relative;
}

.module-panel::before,
.service-card::before,
.fleet-grid article::before {
  background:
    linear-gradient(90deg, transparent, var(--green-hot), transparent),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 200ms ease;
  z-index: 2;
}

.module-panel:hover::before,
.service-card:hover::before,
.fleet-grid article:hover::before {
  opacity: 0.28;
}

.coverage-console {
  display: grid;
  gap: 14px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  padding: 18px;
}

.coverage-console .live-dot {
  animation: none;
  opacity: 1;
  transform: none;
}

.console-topline,
.panel-header {
  align-items: center;
  color: var(--steel-bright);
  display: flex;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.95rem;
  gap: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.live-dot {
  animation: livePulse 1.2s ease-in-out infinite;
  background: var(--green-hot);
  border-radius: 999px;
  box-shadow: 0 0 20px var(--green-hot);
  display: inline-block;
  height: 9px;
  width: 9px;
}

.route-map {
  background: #020403;
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.route-map img {
  height: 100%;
  object-fit: contain;
  opacity: 0.96;
  width: 100%;
}

.route-map img.dispatch-map-image {
  object-fit: contain;
  object-position: center;
}

.route-map svg {
  inset: 0;
  position: absolute;
}

.route {
  animation: routeDash 4s linear infinite;
  fill: none;
  stroke: var(--green-hot);
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(182, 255, 46, 0.7));
}

.route-b {
  animation-delay: 700ms;
  stroke: var(--cyan);
}

.route-c {
  animation-delay: 1200ms;
}

.hub,
.node {
  animation: livePulse 1.8s ease-in-out infinite;
  fill: var(--green-hot);
  filter: drop-shadow(0 0 12px rgba(182, 255, 46, 0.8));
}

.console-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.console-stats div,
.metric-card,
.ops-legend span {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(126, 188, 47, 0.2);
  padding: 14px;
}

.console-stats span,
.metric-card span,
.status-card span,
.fleet-grid p,
.service-card p,
.industry-stack p,
.process-grid p,
.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.console-stats strong,
.metric-card strong,
.status-card strong,
.contact-card strong {
  color: var(--green-hot);
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
  margin-top: 4px;
  text-transform: uppercase;
}

.hero-bottom {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 322px) minmax(0, 1fr);
  justify-content: start;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.hero-fleet-stack {
  display: grid;
  gap: 24px;
  grid-template-rows: minmax(0, 1fr) 128px;
  min-height: 0;
  width: 100%;
}

.metric-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
  width: 100%;
}

.metric-card {
  border-color: rgba(126, 188, 47, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.metric-card::after {
  background: linear-gradient(90deg, transparent, rgba(182, 255, 46, 0.38), transparent);
  content: "";
  height: 2px;
  left: -80%;
  position: absolute;
  top: 0;
  width: 70%;
}

.metric-card.is-active::after {
  animation: scanAcross 2s ease-in-out infinite;
}

.emergency-metric strong {
  color: #ff5146;
  text-shadow: 0 0 18px rgba(240, 53, 38, 0.45);
}

.emergency-metric {
  border-color: rgba(240, 53, 38, 0.68);
  box-shadow: 0 0 30px rgba(240, 53, 38, 0.22), inset 0 0 24px rgba(240, 53, 38, 0.16);
}

.emergency-metric::after {
  background: linear-gradient(90deg, transparent, rgba(255, 81, 70, 0.68), transparent);
}

.hero-fleet-image {
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(126, 188, 47, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  margin-bottom: 26px;
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading .section-body {
  grid-column: 1;
}

.section-heading h2,
.compact h2,
.recovery-copy h2,
.emergency-copy h2,
.contact-layout h2 {
  color: #f2f5ef;
  font-size: 4.2rem;
  max-width: 960px;
}

.section-body {
  color: #d5ded7;
  font-size: 1.08rem;
  line-height: 1.58;
  margin: 0;
  max-width: 760px;
}

.section-link {
  align-self: center;
  border: 1px solid rgba(126, 188, 47, 0.32);
  color: var(--steel-bright);
  font-family: Impact, "Arial Black", sans-serif;
  padding: 14px 18px;
  text-transform: uppercase;
}

.services-section,
.about-section,
.industries-section,
.fleet-section {
  background:
    linear-gradient(180deg, #030605, #07100d 46%, #030605),
    radial-gradient(circle at 80% 15%, rgba(126, 188, 47, 0.14), transparent 34rem);
  padding: 78px 0 84px;
}

.about-section {
  padding: 72px 0 76px;
}

.about-layout {
  display: grid;
  gap: 22px;
  max-width: var(--max);
}

.about-layout > .eyebrow,
.about-layout > h2,
.about-layout > p {
  max-width: 980px;
}

.about-layout > h2 {
  color: #f2f5ef;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.about-layout > p {
  color: #d5ded7;
  font-size: 1.12rem;
  line-height: 1.58;
  margin: 0;
  max-width: 820px;
}

.about-leadership-graphic {
  margin: 18px 0 0;
  overflow: hidden;
}

.about-leadership-graphic img {
  height: auto;
  width: 100%;
}

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

.service-card {
  aspect-ratio: 16 / 9;
  background: #050807;
  border: 1px solid rgba(126, 188, 47, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.service-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 400ms ease, filter 400ms ease;
  width: 100%;
}

.service-card:hover img {
  filter: contrast(1.12) saturate(1.1);
  transform: scale(1.07);
}

.service-card::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.52) 43%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.emergency-card {
  border-color: rgba(240, 53, 38, 0.44);
}

.emergency-card .service-card-content h3 {
  color: #ff5a4f;
}

.card-scanline {
  animation: scanDown 4s linear infinite;
  background: linear-gradient(180deg, transparent, rgba(182, 255, 46, 0.22), transparent);
  height: 28%;
  inset-inline: 0;
  opacity: 0.6;
  position: absolute;
  top: -30%;
  z-index: 3;
}

.service-card-content {
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 4;
}

.service-number {
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1rem;
}

.service-card h3 {
  color: #f5f8f4;
  font-size: 2.35rem;
  max-width: 360px;
}

.service-card p {
  max-width: 360px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.icon-row span,
.check-list span {
  align-items: center;
  border: 1px solid rgba(126, 188, 47, 0.48);
  color: var(--green-hot);
  display: inline-flex;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.75rem;
  height: 34px;
  justify-content: center;
  min-width: 42px;
  padding: 0 9px;
}

.operations-section {
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.98), rgba(6, 19, 18, 0.96)),
    radial-gradient(circle at 55% 40%, rgba(47, 217, 255, 0.14), transparent 38rem);
  border-block: 1px solid rgba(126, 188, 47, 0.18);
  padding: 82px 0;
}

.operation-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.78fr 1.55fr 0.82fr;
}

.compact {
  align-self: center;
  display: block;
  margin: 0;
}

.compact h2 {
  font-size: 3.75rem;
}

.ops-map {
  min-height: 430px;
  padding: 18px;
}

.radar-field {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(90deg, rgba(47, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 217, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(182, 255, 46, 0.18), transparent 58%),
    #020605;
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
  position: relative;
}

.radar-ring {
  border: 1px solid rgba(47, 217, 255, 0.25);
  border-radius: 999px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  height: 38%;
  width: 24%;
}

.ring-two {
  height: 64%;
  width: 44%;
}

.ring-three {
  height: 90%;
  width: 64%;
}

.radar-sweep {
  animation: sweep 5s linear infinite;
  background: conic-gradient(from 0deg, rgba(182, 255, 46, 0.45), transparent 38deg);
  border-radius: 999px;
  height: 94%;
  left: 50%;
  opacity: 0.55;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
}

.map-node,
.route-wire {
  position: absolute;
}

.map-node {
  animation: livePulse 1.7s ease-in-out infinite;
  background: var(--green-hot);
  border-radius: 999px;
  box-shadow: 0 0 18px var(--green-hot);
  height: 10px;
  width: 10px;
}

.node-a {
  left: 24%;
  top: 52%;
}

.node-b {
  left: 48%;
  top: 31%;
}

.node-c {
  right: 20%;
  top: 62%;
}

.node-d {
  right: 30%;
  top: 24%;
}

.emergency-blip {
  animation: redPulse 1s ease-in-out infinite;
  background: #ff3024;
  box-shadow: 0 0 22px #ff3024, 0 0 42px rgba(240, 53, 38, 0.65);
  left: 57%;
  top: 48%;
}

.route-wire {
  animation: wirePulse 2.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--green-hot), transparent);
  height: 2px;
  left: 25%;
  top: 52%;
  transform: rotate(-18deg);
  transform-origin: left;
  width: 45%;
}

.wire-b {
  animation-delay: 650ms;
  left: 45%;
  top: 36%;
  transform: rotate(20deg);
  width: 34%;
}

.ops-legend {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.ops-dashboard {
  display: grid;
  gap: 14px;
}

.status-card {
  min-height: 132px;
  padding: 20px;
}

.status-card strong {
  font-size: 2.4rem;
}

.progress-line {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  margin-top: 18px;
}

.progress-line span {
  background: linear-gradient(90deg, var(--green), var(--green-hot));
  display: block;
  height: 100%;
}

.check-list {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.status-card.alert {
  border-color: rgba(240, 53, 38, 0.46);
}

.dispatch-lines {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.dispatch-lines a {
  color: #ffdbd8;
  font-size: 0.95rem;
}

.dispatch-lines .dispatch-phone-main {
  color: var(--green-hot);
  font-weight: 700;
}

.dispatch-lines .dispatch-emergency-link {
  color: #ff5146;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(240, 53, 38, 0.42);
}

.pulse-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.pulse-row i {
  animation: redPulse 1s ease-in-out infinite;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  display: block;
  height: 8px;
  width: 44px;
}

.pulse-row i:nth-child(2) {
  animation-delay: 160ms;
}

.pulse-row i:nth-child(3) {
  animation-delay: 320ms;
}

.industries-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.72fr 1.28fr;
}

.industry-stack {
  display: grid;
  gap: 10px;
}

.industry-stack article {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(126, 188, 47, 0.08), rgba(5, 12, 10, 0.82)),
    #060b09;
  border: 1px solid rgba(126, 188, 47, 0.28);
  display: grid;
  gap: 18px;
  grid-template-columns: 168px 1fr 84px;
  min-height: 122px;
  overflow: hidden;
  padding: 10px 16px 10px 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-stack article:hover {
  border-color: var(--green-hot);
  box-shadow: 0 0 26px rgba(126, 188, 47, 0.25);
  transform: translateX(6px);
}

.industry-stack img {
  aspect-ratio: 16 / 9;
  height: 92px;
  object-fit: cover;
  width: 164px;
}

.industry-stack img.coverage-thumbnail {
  background: #020403;
  filter: saturate(1.8) brightness(1.2) contrast(1.1);
  object-fit: contain;
  padding: 4px;
}

.industry-stack h3 {
  color: #f5f8f4;
  font-size: 2rem;
}

.industry-stack p {
  margin: 7px 0 0;
}

.industry-stack article > span {
  border-left: 1px solid rgba(126, 188, 47, 0.32);
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
  justify-self: stretch;
  padding-left: 18px;
  text-align: right;
}

.recovery-section {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.96), rgba(3, 6, 5, 0.68)),
    radial-gradient(circle at 38% 50%, rgba(126, 188, 47, 0.2), transparent 35rem);
  padding: 86px 0;
}

.recovery-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.recovery-image {
  overflow: hidden;
}

.recovery-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.recovery-options-panel {
  align-self: start;
  overflow: hidden;
}

.hero-recovery-options {
  align-self: stretch;
  justify-self: start;
  max-width: 322px;
  width: 100%;
}

.hero-recovery-options img {
  height: 100%;
  object-fit: cover;
}

.recovery-options-panel img {
  display: block;
  filter: none;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.recovery-options-panel::after {
  content: "";
  display: none;
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.recovery-copy p {
  color: #d5ded7;
  font-size: 1.08rem;
  line-height: 1.58;
}

.process-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.process-grid article {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(126, 188, 47, 0.24);
  min-height: 144px;
  padding: 18px;
}

.process-grid span {
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
}

.process-grid strong {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.emergency-section {
  background:
    linear-gradient(90deg, rgba(3, 5, 5, 0.95), rgba(12, 3, 3, 0.78)),
    radial-gradient(circle at 75% 42%, rgba(240, 53, 38, 0.18), transparent 34rem);
  border-block: 1px solid rgba(240, 53, 38, 0.24);
  padding: 86px 0;
}

.emergency-layout {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(300px, 0.66fr) minmax(620px, 1.34fr);
}

.emergency-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emergency-copy h2 {
  font-size: clamp(3.2rem, 4.8vw, 5.4rem);
  max-width: 600px;
}

.emergency-copy p {
  color: #d5ded7;
  font-size: 1.08rem;
  line-height: 1.58;
  max-width: 650px;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.emergency-visual {
  align-self: center;
  background: #020403;
  display: grid;
  overflow: hidden;
}

.emergency-visual img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.strobe {
  animation: strobeFlash 1.15s linear infinite;
  background: radial-gradient(circle, rgba(255, 31, 21, 0.9), transparent 66%);
  border-radius: 999px;
  height: 220px;
  position: absolute;
  width: 220px;
}

.strobe-one {
  right: 6%;
  top: 18%;
}

.strobe-two {
  animation-delay: 420ms;
  left: 12%;
  bottom: 14%;
}

.readiness-badge {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(240, 53, 38, 0.7);
  bottom: 22px;
  padding: 16px 20px;
  position: absolute;
  right: 22px;
}

.readiness-badge span {
  color: #f6c5c1;
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
}

.readiness-badge strong {
  color: #ff5146;
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3rem;
}

.fleet-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fleet-grid article {
  background: linear-gradient(180deg, rgba(15, 24, 21, 0.88), rgba(3, 6, 5, 0.94));
  border: 1px solid rgba(126, 188, 47, 0.25);
  min-height: 370px;
  overflow: hidden;
  position: relative;
}

.fleet-grid article.emergency-fleet {
  border-color: rgba(240, 53, 38, 0.78);
  box-shadow: 0 0 34px rgba(240, 53, 38, 0.28), inset 0 0 28px rgba(240, 53, 38, 0.16);
}

.fleet-grid article.emergency-fleet::before {
  background:
    linear-gradient(90deg, transparent, #ff5146, transparent),
    linear-gradient(180deg, transparent, rgba(255, 81, 70, 0.28), transparent);
}

.fleet-grid article.emergency-fleet:hover {
  border-color: #ff5146;
  box-shadow: 0 0 42px rgba(240, 53, 38, 0.42), inset 0 0 34px rgba(240, 53, 38, 0.22);
}

.fleet-grid article.emergency-fleet h3 {
  color: #ff5146;
  text-shadow: 0 0 18px rgba(240, 53, 38, 0.45);
}

.fleet-grid img {
  aspect-ratio: 16 / 10;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.fleet-grid h3 {
  color: var(--green-hot);
  font-size: 1.6rem;
  padding: 18px 18px 0;
}

.fleet-grid p {
  margin: 10px 18px 0;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(35, 75, 19, 0.45), rgba(3, 6, 5, 0.88)),
    url("./assets/earth-trucks.png") center / cover;
  padding: 72px 0;
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 420px;
}

.contact-card {
  padding: 26px;
}

.contact-card strong {
  color: #ff5146;
  text-shadow: 0 0 18px rgba(240, 53, 38, 0.45);
}

.contact-page-hero {
  isolation: isolate;
  min-height: 760px;
  padding: 150px 0 84px;
}

.contact-page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), #030605 98%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -4;
}

.contact-page-layout {
  align-items: stretch;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  position: relative;
  z-index: 2;
}

.contact-page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page-copy h1 {
  font-size: clamp(4.1rem, 9vw, 8.4rem);
  max-width: 1080px;
}

.contact-command-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-line-card {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(126, 188, 47, 0.24);
  padding: 20px;
}

.contact-line-card span,
.contact-command-panel address span {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-line-card a {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 0.95;
}

.contact-phone-green {
  color: var(--green-hot);
  text-shadow: 0 0 18px rgba(182, 255, 46, 0.28);
}

.contact-phone-red {
  color: #ff5146;
  text-shadow: 0 0 18px rgba(240, 53, 38, 0.45);
}

.emergency-line {
  border-color: rgba(240, 53, 38, 0.54);
  box-shadow: inset 0 0 24px rgba(240, 53, 38, 0.12);
}

.contact-command-panel address {
  border-top: 1px solid rgba(126, 188, 47, 0.22);
  color: #dce5dd;
  font-style: normal;
  line-height: 1.5;
  margin: 4px 0 0;
  padding-top: 18px;
}

.contact-detail-section {
  background:
    linear-gradient(180deg, #030605, #07100d 48%, #030605),
    radial-gradient(circle at 72% 16%, rgba(240, 53, 38, 0.14), transparent 34rem),
    radial-gradient(circle at 18% 44%, rgba(126, 188, 47, 0.14), transparent 30rem);
  padding: 84px 0 92px;
}

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

.contact-info-card {
  min-height: 250px;
  padding: 24px;
}

.contact-info-card span {
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
}

.contact-info-card h3 {
  color: #f5f8f4;
  font-size: 2.1rem;
  margin-top: 12px;
}

.contact-info-card p {
  color: #d5ded7;
  line-height: 1.55;
  margin: 16px 0 0;
}



.contact-request-form::before,
.contact-request-form:hover::before {
  display: none;
}

.contact-request-form {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  padding: 30px;
}

.form-heading {
  max-width: 840px;
}

.form-heading h2 {
  color: #f2f5ef;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.9;
  margin: 6px 0 12px;
  text-transform: uppercase;
}

.form-heading p:not(.eyebrow) {
  color: #dce5dd;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--green-hot);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  background: rgba(3, 7, 6, 0.74);
  border: 1px solid rgba(126, 188, 47, 0.34);
  color: #f5f8f4;
  font: inherit;
  min-height: 50px;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.field-group textarea {
  min-height: 150px;
  resize: vertical;
}

.field-group select option {
  background: #07100d;
  color: #f5f8f4;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--green-hot);
  box-shadow: 0 0 0 3px rgba(126, 188, 47, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .button {
  border-radius: 0;
}

.form-disclaimer {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.form-status {
  border: 1px solid rgba(126, 188, 47, 0.34);
  color: #f5f8f4;
  padding: 14px 16px;
}

.form-status-success {
  background: rgba(126, 188, 47, 0.14);
}

.form-status-error {
  background: rgba(240, 53, 38, 0.14);
  border-color: rgba(240, 53, 38, 0.46);
}

.form-hp {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.contact-checklist {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(300px, 0.55fr) 1fr;
  margin-top: 20px;
  padding: 30px;
}

.contact-checklist h2 {
  color: #f2f5ef;
  font-size: 4rem;
  max-width: 520px;
}

.contact-checklist ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-checklist li {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(126, 188, 47, 0.22);
  color: #dce5dd;
  line-height: 1.5;
  padding: 16px 18px;
}

.site-footer {
  background: #030605;
  border-top: 1px solid rgba(126, 188, 47, 0.22);
  color: #dce5dd;
  padding: 24px 0;
}

.footer-layout {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  line-height: 1.5;
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

.site-footer a.footer-phone-green {
  color: var(--green-hot);
}

.site-footer a.footer-phone-red {
  color: #ff5146;
}

.site-footer .footer-credit {
  color: rgba(220, 229, 221, 0.58);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 6px;
}

.site-footer .footer-credit a {
  color: inherit;
}

.site-footer .footer-credit a:hover {
  color: rgba(220, 229, 221, 0.82);
}

@keyframes fogDrift {
  from {
    transform: translateX(-4%);
  }

  to {
    transform: translateX(5%);
  }
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes scanAcross {
  to {
    left: 110%;
  }
}

@keyframes scanDown {
  to {
    top: 105%;
  }
}

@keyframes sweep {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes wirePulse {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes redPulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes softSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes strobeFlash {
  0%,
  42%,
  100% {
    opacity: 0.12;
    transform: scale(0.72);
  }

  48%,
  56% {
    opacity: 0.72;
    transform: scale(1);
  }
}


.hero-content-simple {
  grid-template-columns: minmax(0, 1fr);
}

.operation-layout-lean {
  align-items: center;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
}

.operation-layout-lean .ops-dashboard {
  align-self: stretch;
}
@media (max-width: 1280px) {
  :root {
    --edge: 22px;
  }

  .nav-bar {
    grid-template-columns: 300px 1fr 250px;
  }

  .brand-lockup img {
    height: 66px;
    width: 295px;
  }

  .nav-links {
    gap: 14px;
  }

  h1 {
    font-size: 5rem;
  }

  .hero-content,
  .contact-page-layout,
  .operation-layout,
  .industries-layout,
  .recovery-layout,
  .emergency-layout {
    grid-template-columns: 1fr;
  }

  .coverage-console {
    max-width: 760px;
  }

  .contact-command-panel {
    max-width: 760px;
  }

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

  .recovery-options-panel {
    max-width: 360px;
  }

  .recovery-image {
    align-self: stretch;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

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

  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --edge: 22px;
  }

  .site-frame::before {
    width: 18px;
  }

  .section-band[id] {
    scroll-margin-top: 154px;
  }

  .nav-bar {
    gap: 8px 12px;
    grid-template-areas:
      "brand emergency"
      "links links";
    grid-template-columns: 1fr auto;
    padding: 10px 18px 8px;
  }

  .brand-lockup {
    grid-area: brand;
  }

  .brand-lockup img {
    height: 46px;
    width: 216px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 16px;
    grid-area: links;
    justify-content: center;
    overflow: visible;
    padding: 2px 0 4px;
    white-space: normal;
  }

  .nav-links a,
  .nav-emergency span {
    font-size: 0.72rem;
  }

  .nav-links a {
    padding-block: 6px;
  }

  .nav-emergency {
    grid-area: emergency;
  }

  .nav-emergency span {
    display: none;
  }

  .nav-emergency strong {
    font-size: 1.05rem;
  }

  .hero-section {
    min-height: 0;
    padding: 154px 0 34px;
  }

  .contact-page-hero {
    min-height: auto;
    padding: 156px 0 62px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.55rem);
  }

  .contact-page-copy h1 {
    font-size: clamp(3.1rem, 14vw, 3.8rem);
  }

  .section-heading h2,
  .compact h2,
  .recovery-copy h2,
  .emergency-copy h2,
  .contact-layout h2,
  .contact-checklist h2 {
    font-size: clamp(2.45rem, 12vw, 2.9rem);
  }

  .hero-content {
    gap: 28px;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .coverage-console {
    padding: 16px;
  }

  .hero-bottom {
    gap: 18px;
    margin-top: 36px;
  }

  .hero-fleet-stack {
    gap: 14px;
    grid-template-rows: auto auto;
  }

  .hero-fleet-image {
    height: auto;
  }

  .metric-strip,
  .console-stats,
  .ops-legend,
  .process-grid,
  .contact-layout,
  .contact-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    height: auto;
  }

  .metric-card {
    min-height: 88px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
  }

  .industry-stack article {
    gap: 12px;
    grid-template-columns: 104px 1fr;
    min-height: 126px;
    padding: 10px;
  }

  .industry-stack img {
    height: 78px;
    width: 104px;
  }

  .industry-stack h3 {
    font-size: 1.45rem;
  }

  .industry-stack article > span {
    border-left: 0;
    grid-column: 1 / -1;
    padding-left: 0;
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .contact-command-panel,
  .contact-checklist,
  .contact-request-form,
  .contact-info-card {
    padding: 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  :root {
    --edge: 20px;
  }

  .brand-lockup img {
    height: 42px;
    width: 204px;
  }

  .nav-links {
    gap: 2px 12px;
  }

  .nav-emergency strong {
    font-size: 0.98rem;
  }

  .route-map img {
    height: auto;
  }

  .contact-line-card a {
    font-size: 2rem;
  }
}

@media (max-width: 370px) {
  :root {
    --edge: 18px;
  }

  .brand-lockup img {
    width: 184px;
  }

  .nav-emergency strong {
    font-size: 0.9rem;
  }

  .nav-links {
    gap: 12px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .section-heading h2,
  .compact h2,
  .recovery-copy h2,
  .emergency-copy h2,
  .contact-layout h2,
  .contact-checklist h2 {
    font-size: 2.28rem;
  }
}

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