/* ============================================================
   synontech — footer
   ============================================================ */

footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-main);
  padding: 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.footer-badge {
  height: 55px; /* Significant size increase for brand clarity */
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.sys-status {
  font-size: 0.55rem;
  color: var(--neon-yellow);
  opacity: 0.8;
  letter-spacing: 0.2em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1.5rem;
  }
  .footer-left {
    align-items: center;
  }
  .footer-copy {
    text-align: center;
    order: 3;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    order: 2;
  }
}
