/* ── Footer (планета с ореолом, как в lms-ui) ── */
.app-footer{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:28px 24px;
  background:var(--gradient-footer-banner);
}
.app-footer .footer-fade{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:48px;
  pointer-events:none;
  background:var(--gradient-footer-fade);
}
.app-footer .footer-planet-atmosphere{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:var(--gradient-footer-planet-atmosphere);
}
.app-footer .footer-planet-body{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:var(--gradient-footer-planet-body);
}
.app-footer .footer-radial{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:var(--gradient-footer-radial);
}
.app-footer .footer-inner{
  position:relative;
  z-index:1;
}
.app-footer .footer-logo{
  display:inline-block;
  margin-bottom:8px;
  font-size:18px;
  font-weight:900;
  letter-spacing:-0.3px;
  color:var(--color-footer-title);
  text-decoration:none;
}
.app-footer .footer-logo:hover{
  color:var(--accent);
}
.app-footer .footer-tagline{
  display:block;
  font-size:11px;
  color:var(--color-footer-tagline);
  letter-spacing:0.15em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.app-footer .footer-reqs{
  margin-bottom:12px;
  padding-bottom:0;
  font-size:11px;
  line-height:1.6;
  color:var(--color-footer-tagline);
}
.app-footer .footer-reqs .company{
  font-weight:700;
  color:var(--color-footer-title);
}
.app-footer .footer-copy{
  margin:0;
  font-size:11px;
  color:var(--color-footer-rights);
  text-shadow:0 1px 2px rgba(0,0,0,0.4);
}

.footer-links{
  margin-top:10px;
  font-size:11px;
  color:var(--color-footer-rights);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--color-footer-rights);
  text-decoration:none;
  opacity:.9;
  transition:opacity .15s;
}
.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
.footer-links-sep{
  opacity:.6;
}
