.site-footer {
  position: relative;
  background: #000000;
  color: #ffffff;
}

.site-footer__art {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(138px, 16vw, 214px);
}

.site-footer__art-backdrop,
.site-footer__art-fallback,
.site-footer__spectrum {
  position: absolute;
  inset: 0;
}

.site-footer__art-backdrop {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 138, 61, 0.3), transparent 18%),
    radial-gradient(circle at 34% 78%, rgba(255, 91, 187, 0.24), transparent 20%),
    radial-gradient(circle at 62% 34%, rgba(82, 118, 255, 0.24), transparent 20%),
    radial-gradient(circle at 84% 70%, rgba(105, 255, 164, 0.18), transparent 18%),
    linear-gradient(180deg, #100711 0%, #170811 28%, #1e0c0a 56%, #07070a 100%);
}

.site-footer__art-fallback {
  background-image: url('../images/footer/footer-signal.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  opacity: 0.98;
  transition: opacity 0.28s ease;
}

.site-footer__spectrum {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-footer__art.is-live .site-footer__art-fallback {
  opacity: 0.1;
}

.site-footer__art.is-live .site-footer__spectrum {
  opacity: 1;
}

.site-footer__body {
  position: relative;
  margin-top: -1px;
  padding: 0 1.5rem 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
}

.site-footer__grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 2.4rem 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer__eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.site-footer__text,
.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer__links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.site-footer__links a,
.site-footer__powered a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__powered a:hover {
  color: #ffb8dc;
}

.site-footer__powered {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.site-footer__bottom {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
}

@media (max-width: 1080px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-footer__body {
    padding: 0 1rem 1.2rem;
  }

  .site-footer__grid {
    padding: 1.8rem 0 1.2rem;
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .site-footer__bottom {
    padding-top: 0.9rem;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-footer__art {
    min-height: 104px;
  }

  .site-footer__text,
  .site-footer__bottom p,
  .site-footer__powered {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .site-footer__links {
    gap: 0.5rem;
  }
}
