.footer {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}
.footer-glow {
  position: absolute;
  left: -10%;
  bottom: 8%;
  width: min(720px, 72vw);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(43, 227, 139, 0.1) 0%,
    rgba(53, 96, 224, 0.07) 44%,
    transparent 70%
  );
}
.footer-cta {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  align-content: center;
  padding: clamp(40px, 5vh, 96px) 4% clamp(32px, 4vh, 72px);
}
.footer-base {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vh, 60px) 4% clamp(28px, 4vh, 44px);
}
.footer-logo img {
  height: 92px;
  width: auto;
  margin-bottom: 6px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.footer-text {
  font-size: 13px;
  color: var(--text-2);
}
.footer-links {
  margin-top: 14px;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

.gsap-line {
  will-change: transform;
}
