.cyber-pulse {
  background: #03121d;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cyber-pulse:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 35%, #0b5bd32b, transparent 38%),
    linear-gradient(#16b8d408 1px, transparent 1px),
    linear-gradient(90deg, #16b8d408 1px, transparent 1px);
  background-size:
    auto,
    42px 42px,
    42px 42px;
  pointer-events: none;
}
.cyber-pulse .container {
  position: relative;
}
.cyber-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.cyber-heading h2 {
  font-size: clamp(40px, 5vw, 61px);
  color: #fff;
}
.cyber-heading > p {
  color: #a9bbc6;
  margin: 0;
  max-width: 520px;
}
.threat-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  border: 1px solid #16415a;
  background: #061a28;
  box-shadow: 0 30px 80px #0006;
}
.threat-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background-color: #020912;
  background-image:
    linear-gradient(#02101c22, #02101c55), url("/cyber-world-night-v2.webp");
  background-position: center;
  background-size: 100% 100%;
}
.cyber-canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #02111a44,
    transparent 30%,
    transparent 70%,
    #02111a44
  );
}
.map-status {
  position: absolute;
  left: 18px;
  top: 17px;
  color: #89a9ba;
  font:
    600 10px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 1.6px;
}
.map-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31e69c;
  box-shadow: 0 0 12px #31e69c;
  margin-right: 8px;
  animation: cyber-blink 1.3s infinite;
}
.threat-side {
  padding: 24px;
  border-left: 1px solid #16415a;
  background: #04131e;
}
.threat-metric {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #17384a;
}
.threat-metric span,
.threat-metric small {
  display: block;
  color: #7995a5;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.threat-metric strong {
  display: block;
  color: #5de4ef;
  font:
    600 25px/1.3 "Space Grotesk",
    sans-serif;
  letter-spacing: 1px;
  margin: 3px 0;
}
.threat-feed {
  display: grid;
  gap: 10px;
}
.feed-event {
  font:
    500 10px/1.35 "Space Grotesk",
    sans-serif;
  color: #98adba;
  border-left: 2px solid #16b8d4;
  padding-left: 9px;
  animation: feed-in 0.35s ease;
}
.feed-event b {
  color: #fff;
}
.feed-event em {
  color: #e16a82;
  font-style: normal;
}
.cyber-note {
  font-size: 12px;
  color: #7895a5;
  margin-top: 18px;
}
.cyber-note strong {
  color: #b8cbd5;
}
.cyber-note a {
  color: #5de4ef;
}
.cyber-note a:hover {
  color: #fff;
}
@keyframes cyber-blink {
  50% {
    opacity: 0.3;
  }
}
@keyframes feed-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
}
@media (max-width: 800px) {
  .cyber-heading,
  .threat-console {
    grid-template-columns: 1fr;
  }
  .cyber-heading {
    gap: 24px;
  }
  .threat-map {
    min-height: 360px;
  }
  .threat-side {
    border-left: 0;
    border-top: 1px solid #16415a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .threat-feed {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .threat-map {
    min-height: 300px;
  }
  .threat-side {
    grid-template-columns: 1fr;
  }
  .threat-feed {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .map-status i,
  .feed-event {
    animation: none;
  }
}
