.neverlan-footer {
  --footer-text: var(--page-tail-footer-text, rgba(247, 243, 235, .70));
  --footer-text-strong: var(--page-tail-footer-strong, rgba(247, 243, 235, .92));
  --footer-line: var(--page-tail-footer-line, rgba(247, 243, 235, .07));
  --footer-gold: rgba(195, 166, 110, .90);
  --footer-pointer-x: 50%;

  position: relative;
  z-index: 2;
  width: 100%;
  padding: 27px clamp(22px, 3.5vw, 58px) 23px;
  overflow: hidden;
  isolation: isolate;
  color: var(--footer-text);
  background: transparent;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}

.neverlan-footer,
.neverlan-footer * {
  box-sizing: border-box;
}

.footer-signal {
  position: absolute;
  left: clamp(22px, 3.5vw, 58px);
  right: clamp(22px, 3.5vw, 58px);
  top: 0;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.footer-track {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--footer-line);
}

.footer-glow {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: var(--footer-pointer-x);
  width: 96px;
  height: 1px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(195, 166, 110, .58),
      transparent
    );
  transition: left 70ms linear, opacity .35s ease;
}

.footer-dot {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: var(--footer-pointer-x);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--footer-gold);
  box-shadow:
    0 0 7px rgba(195, 166, 110, .9),
    0 0 18px rgba(195, 166, 110, .3);
  transition: left 70ms linear, opacity .35s ease;
}

.footer-row {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  white-space: nowrap;
}

.footer-copyright,
.footer-desktop-links,
.footer-mobile-legal {
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-copyright {
  flex: 0 0 auto;
  color: var(--footer-text-strong);
}

.footer-desktop-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-separator {
  color: var(--page-tail-footer-separator, rgba(247, 243, 235, .18));
}

.neverlan-footer a,
.neverlan-footer .footer-link {
  color: inherit;
  text-decoration: none;
}

.neverlan-footer a {
  transition: color .25s ease, opacity .25s ease;
}

.neverlan-footer a:hover,
.neverlan-footer a:focus-visible {
  color: var(--footer-text-strong);
}

.footer-link.is-pending,
.footer-mobile-icon.is-pending {
  opacity: .48;
  cursor: default;
}

.footer-mobile-social,
.footer-mobile-legal {
  display: none;
}

.footer-mobile-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--footer-text);
}

.footer-mobile-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-mobile-legal:empty {
  display: none;
}

@media (max-width: 760px) {
  .neverlan-footer {
    padding: 25px 20px 18px;
  }

  .footer-signal {
    left: 20px;
    right: 20px;
  }

  .footer-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "copy social"
      "legal legal";
    gap: 10px 14px;
    white-space: normal;
  }

  .footer-copyright {
    grid-area: copy;
    font-size: 8px;
    letter-spacing: .15em;
  }

  .footer-desktop-links {
    display: none;
  }

  .footer-mobile-social {
    grid-area: social;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .footer-mobile-legal {
    grid-area: legal;
    align-items: center;
    gap: 10px;
    padding-top: 2px;
    color: var(--page-tail-footer-muted, rgba(247, 243, 235, .46));
    font-size: 8px;
    letter-spacing: .15em;
  }

  .footer-mobile-legal.has-links {
    display: flex;
  }
}

@media (hover: none) {
  .neverlan-footer {
    --footer-pointer-x: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-dot,
  .footer-glow {
  opacity: 0;
    transition: none;
  }
}
.neverlan-footer[data-tone="light"] {
  --footer-text: rgba(18,18,18,.62);
  --footer-text-strong: rgba(18,18,18,.90);
  --footer-line: rgba(18,18,18,.07);
}

.neverlan-footer[data-tone="light"] .footer-separator {
  color: rgba(18,18,18,.18);
}
.neverlan-footer:hover .footer-glow,
.neverlan-footer:focus-within .footer-glow,
.neverlan-footer:hover .footer-dot,
.neverlan-footer:focus-within .footer-dot {
  opacity: 1;
}
