/* Static footer: in initial HTML for crawlers. Hidden when React mounts (body.app-loaded). */

#static-legal-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 9999;
}

/* Visually hidden but kept in DOM for crawlers (display: none would make links "non-existent" to OAuth verification) */
body.app-loaded #static-legal-footer {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
