.hero-mesh {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.34), transparent 30rem),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.12), transparent 24rem),
    linear-gradient(145deg, #050816 0%, #111827 50%, #15120f 100%);
}

.hero-mesh::before,
.hero-mesh::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.hero-mesh::before {
  width: min(42vw, 34rem);
  aspect-ratio: 1;
  right: -12rem;
  top: 8%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 68%);
  filter: blur(18px);
}

.hero-mesh::after {
  width: min(58vw, 42rem);
  aspect-ratio: 1;
  left: -18rem;
  bottom: -24rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
}

.grid-pattern {
  display: none;
}

.hero-shell {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.hero-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 48rem;
}

.hero-title {
  text-wrap: balance;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 100%;
}

.hero-visual {
  width: 100%;
}

.hero-map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.hero-map-media {
  position: relative;
  min-height: clamp(16rem, 48vw, 24rem);
  background: #dbe4ef;
}

.hero-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-map-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 6, 24, 0.02), rgba(2, 6, 24, 0.34));
}

.hero-map-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(2, 6, 24, 0.74);
  padding: 0.6rem 0.9rem;
  color: #ffedd5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-live-dot {
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 0.32rem rgba(249, 115, 22, 0.18);
  flex: 0 0 auto;
}

.hero-dispatch-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  color: #e2e8f0;
}

.hero-dispatch-card h2 {
  margin-top: 0.35rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-dispatch-card p {
  margin-top: 0.85rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-kicker {
  margin: 0;
  color: #fdba74 !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.hero-status-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-status-grid div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
}

.hero-status-grid span {
  display: block;
  color: #fdba74;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-status-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-service-badges span {
  border: 1px solid rgba(253, 186, 116, 0.24);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.5rem 0.75rem;
  color: #fed7aa;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (min-width: 40rem) {
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
  }

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

@media (min-width: 64rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(24rem, 0.94fr);
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 39.98rem) {
  .hero-map-card {
    border-radius: 1.1rem;
  }

  .hero-map-badge {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}
