#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.95;
  pointer-events: all;
}

.home-hero {
  grid-template-columns: 1fr;
  align-content: center;
}

.home-hero .hero-copy {
  max-width: 1120px;
}

.home-hero .lead {
  max-width: 840px;
}

.marquee-container {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(58, 222, 120, 0.14);
  border-bottom: 1px solid rgba(58, 222, 120, 0.14);
  background: rgba(11, 31, 20, 0.72);
  padding: 18px 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.marquee-content span::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 40px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 32px rgba(58, 222, 120, 0.4);
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 520px) {
  .marquee-container {
    margin-top: 28px;
  }
}
