.footer {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 32px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-image: var(--atlas-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-base) ease;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px 12px;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 8px;
  }
}