/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  position: relative; z-index: 2;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.75rem 2rem;
  text-align: center;
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.73rem;
  color: var(--text-dim);
}
.foot-inner .g { color: var(--green); }
.foot-socials { display: flex; gap: 0.75rem; }
.fsoc {
  width: 30px; height: 30px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.fsoc:hover { border-color: var(--green); color: var(--green); background: rgba(0,255,136,0.06); }
