/* ==========================================================================
   Footer — Minimal, dissolves into darkness
   ========================================================================== */

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-abyss) 100%);
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand .footer-logo {
  font-size: var(--text-lg);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  vertical-align: middle;
}

/* Bottom bar */
.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-2xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(46, 104, 233, 0.08);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-dim);
}
