/* Footer & Download */

.footer {
  padding: var(--space-xxl) 0 var(--space-lg);
  border-top: 1px solid var(--mp-color-divider);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-size: 17px;
}

.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}

.footer__subtitle {
  color: var(--text-secondary);
  font-size: 19px;
  margin-bottom: var(--space-lg);
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

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

.footer__copyright {
  font-size: 12px;
  color: var(--text-tertiary);
}

.support-email {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--app-primary) 60%, transparent);
  text-underline-offset: 3px;
}
