footer {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: var(--d);
}

#footer-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: none;
}

#footer-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.footer-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  pointer-events: none;
}

.footer-inner > * {
  pointer-events: auto;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-nm);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
  text-align: center;
  text-transform: uppercase;
  color: var(--l);
}

.footer-cta-heading {
  text-align: center;
  color: var(--l);
  mix-blend-mode: difference;
}

.footer-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 2.5rem;
  color: var(--l);
}

@media (max-width: 1000px) {
  footer h3 {
    font-size: 5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
