.footer-inner p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 750;
}

.footer-links,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.footer-links a,
.footer-bottom span {
  padding: .38rem .55rem;
  color: var(--paper);
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .28);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a.is-active {
  color: #050d1e;
  background: var(--yellow);
  outline: none;
}

.back-top {
  position: fixed;
  right: clamp(.75rem, 2vw, 1.25rem);
  bottom: clamp(.75rem, 2vw, 1.25rem);
  z-index: 18;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 50px;
  color: #050d1e;
  background: var(--yellow);
  border: 3px solid #050d1e;
  box-shadow: 5px 5px 0 var(--pink), 0 0 18px rgba(37, 99, 235, .35);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: .95rem;
  text-decoration: none;
  transform: translate3d(0, 90px, 0) rotate(-3deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, box-shadow .18s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) rotate(-3deg);
}

.back-top:hover,
.back-top:focus-visible {
  transform: translate3d(0, -4px, 0) rotate(2deg);
  box-shadow: 8px 9px 0 #000, 0 0 22px rgba(37, 99, 235, .48);
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) var(--reveal-rotate, rotate(0deg));
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-seen {
  opacity: 1;
  transform: translate3d(0, 0, 0) var(--reveal-rotate, rotate(0deg));
}

@keyframes scan-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 28px, 44px 0;
  }
}

@keyframes float-sticker {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(5deg);
  }
}

@keyframes neon-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(37, 99, 235, .1));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(37, 99, 235, .36));
  }
}

/* Animation upgrade layer: keeps the current layout and adds motion polish. */
.section-band {
  isolation: isolate;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 2rem -2rem;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background: radial-gradient(circle at 18% 18%, rgba(37, 99, 235, .45), transparent 22rem);
  animation: wk-neon-breathe 6.5s ease-in-out infinite;
}

.glitch-title {
  position: relative;
  isolation: isolate;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.glitch-title::before {
  color: var(--cyan);
  clip-path: inset(0 0 58% 0);
  transform: translate3d(-3px, -1px, 0);
}

.glitch-title::after {
  color: var(--pink);
  clip-path: inset(54% 0 0 0);
  transform: translate3d(3px, 1px, 0);
}

.glitch-title:hover::before,
.glitch-title:hover::after,
.glitch-title.is-glitching::before,
.glitch-title.is-glitching::after,
.is-visible .glitch-title::before,
.is-visible .glitch-title::after {
  animation: wk-glitch-pop .46s steps(2, end);
}

.js .hero-copy .kicker-label,
.js .hero-copy .hero-lead,
.js .hero-copy .status-strip,
.js .hero-actions .btn {
  opacity: 0;
}

.hero-copy.is-visible .kicker-label {
  opacity: 1;
  animation: wk-sticker-slap .58s cubic-bezier(.2, 1.18, .28, 1);
}

.hero-copy.is-visible .glitch-title {
  animation: wk-title-impact-reveal .7s cubic-bezier(.16, 1, .3, 1) .08s both;
}

.hero-copy.is-visible .hero-lead {
  opacity: 1;
  animation: wk-reveal-up .55s ease .22s both;
}

.hero-copy.is-visible .hero-actions .btn {
  opacity: 1;
  animation: wk-sticker-slap .48s cubic-bezier(.2, 1.18, .28, 1);
}

.hero-copy.is-visible .hero-actions .btn:nth-child(1) { animation-delay: .32s; }
.hero-copy.is-visible .hero-actions .btn:nth-child(2) { animation-delay: .42s; }
.hero-copy.is-visible .hero-actions .btn:nth-child(3) { animation-delay: .52s; }
.hero-copy.is-visible .hero-actions .btn:nth-child(4) { animation-delay: .62s; }

.hero-copy.is-visible .status-strip {
  opacity: 1;
  animation: wk-reveal-up .55s ease .72s both;
}

.hero-collage {
  transition: transform .18s ease-out;
}

.hero-collage.reveal.is-visible {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) rotate(var(--parallax-r, 0deg));
}
