.bx-footer {
  width: 100%;
  padding: 68px 0 28px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a0a0b;
  font-family: Arial, Helvetica, sans-serif;
}

.bx-footer * {
  box-sizing: border-box;
}

.bx-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  width: 18vw;
  max-width: 240px;
  background: linear-gradient(90deg, transparent, rgba(36, 66, 255, 0.16), transparent);
  pointer-events: none;
}

.bx-footer-orbits {
  position: absolute;
  right: -8vw;
  bottom: -12vw;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
  animation: bxFooterOrbit 48s linear infinite;
}

.bx-footer-orbits span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(142, 160, 255, 0.22);
  border-radius: 50%;
}

.bx-footer-orbits span:nth-child(2) {
  inset: 12%;
}

.bx-footer-orbits span:nth-child(3) {
  inset: 26%;
}

@keyframes bxFooterOrbit {
  to {
    transform: rotate(360deg);
  }
}

.bx-footer.is-in .bx-footer-orbits span {
  animation: bxFooterDraw 1.6s ease both;
}

@keyframes bxFooterDraw {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.bx-footer-container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
}

.bx-footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(480px, 1.1fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 52px;
}

.bx-footer-kicker {
  margin: 10px 0 0;
  color: #8ea0ff;
  font: 700 9px/1.45 "Courier New", Courier, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bx-footer-wordmark {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bx-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bx-footer-column h4 {
  margin: 0 0 16px;
  color: #8ea0ff;
  font: 700 9px/1 "Courier New", Courier, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bx-footer-column a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
}

.bx-footer-column a:hover,
.bx-footer-column a:focus-visible {
  color: #fff;
}

.bx-footer-statement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 36px;
  overflow: hidden;
}

.bx-footer-statement span {
  font-size: clamp(40px, 7vw, 108px);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.bx-footer-statement span:first-child {
  transform: translateX(-8%);
  opacity: 0;
}

.bx-footer-statement span:last-child {
  color: #8ea0ff;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  transform: translateX(8%);
  opacity: 0;
}

.bx-footer.is-in .bx-footer-statement span:first-child,
.bx-footer.is-in .bx-footer-statement span:last-child {
  transform: none;
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.9s ease;
}

.bx-footer.is-in .bx-footer-statement span:last-child {
  transition-delay: 0.16s;
}

.bx-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bx-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.bx-footer-legal a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font: 700 8px/1 "Courier New", Courier, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bx-footer-legal a:hover {
  color: #fff;
}

.bx-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font: 700 8px/1 "Courier New", Courier, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .bx-footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bx-footer-statement {
    flex-direction: column;
    align-items: flex-start;
  }

  .bx-footer::before {
    display: none;
  }
}

@media (max-width: 650px) {
  .bx-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .bx-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .bx-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bx-footer-orbits,
  .bx-footer-statement span {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
