.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__links a {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--text-bright);
}

.footer__sep {
  color: var(--border);
  font-size: var(--fs-xs);
}

.footer__version {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.footer__powered {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
