/* Non-critical CSS: Footer, subpage footers, secondary hover animations */
footer {
  font-family: "Outfit", sans-serif;
  margin-top: 36px;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: rise .6s .6s forwards ease-out;
}

.foot-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-btn {
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid rgba(47, 111, 237, .22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(234, 244, 255, 0.45));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 16px -6px rgba(20, 60, 140, .1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform .22s cubic-bezier(.2, 0, 0, 1), background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.foot-btn svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .22s ease;
}

.foot-btn:hover {
  transform: translateY(-3px) scale(1.03);
  color: var(--blue-deep);
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.88));
  box-shadow: 0 12px 24px -8px rgba(47, 111, 237, .38);
}

.foot-btn:hover svg {
  transform: scale(1.2) rotate(-8deg);
}
