/* 21st Animated Beam (dillionverma) — coal/crimson, homepage pillars only */
.pillars[data-co-beam] {
  position: relative;
}
.pillar-connector {
  display: none !important;
}
.mission-wave {
  min-height: 0 !important;
  height: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
  pointer-events: none;
  background: transparent;
}
#mission-wave-canvas,
.mission-wave canvas {
  display: none !important;
}
.co-beam-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.pillar {
  z-index: 1;
}
.co-beam-node {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #f06a52;
  box-shadow: 0 0 0 4px rgba(196, 42, 48, 0.18), 0 0 18px rgba(240, 106, 82, 0.85);
  pointer-events: none;
  z-index: 2;
  animation: co-beam-pulse 2.4s ease-in-out infinite;
}
.co-beam-node.is-navy {
  background: #8eb4ff;
  box-shadow: 0 0 0 4px rgba(61, 90, 158, 0.22), 0 0 18px rgba(142, 180, 255, 0.75);
  animation-delay: 1.1s;
}
@keyframes co-beam-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.72;
  }
}
@media (max-width: 900px) {
  .co-beam-svg {
    min-height: 120px;
  }
}
