:root {
  --footer-bg: #0b1220;
  --footer-surface: rgba(255, 255, 255, 0.06);
  --footer-border: rgba(148, 163, 184, 0.18);
  --footer-text: rgba(241, 245, 249, 0.86);
  --footer-muted: rgba(148, 163, 184, 0.85);
}

.site-footer {
  margin-top: 26px;
  color: var(--footer-text);
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .site-footer.site-footer--app {
    margin-left: 270px;
    transition: margin-left 450ms ease;
  }

  .app.sidebar-mini.sidenav-toggled .site-footer.site-footer--app {
    margin-left: 80px;
  }

  .closed-leftmenu.app.sidenav-toggled .site-footer.site-footer--app {
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .site-footer.site-footer--app {
    margin-left: 0;
  }
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 12% 25%, rgba(122, 50, 255, 0.28), transparent 60%),
    radial-gradient(520px 240px at 90% 10%, rgba(38, 125, 255, 0.25), transparent 60%),
    radial-gradient(420px 240px at 70% 95%, rgba(16, 185, 129, 0.14), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.site-footer__inner {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(11, 18, 32, 1));
  border-top: 1px solid var(--footer-border);
}

.site-footer__topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary));
}

.site-footer__container {
  padding: 34px 0 18px;
}

.site-footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 50, 255, 0.22), rgba(38, 125, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.site-footer__logo svg,
.site-footer__logo i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__name {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__tagline {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--footer-muted);
  line-height: 1.6;
  max-width: 520px;
}

.site-footer__section-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.85);
  margin: 10px 0 12px;
  font-weight: 700;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(241, 245, 249, 0.82);
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.site-footer__links a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__links svg,
.site-footer__links i {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.98;
  color: rgba(241, 245, 249, 0.95);
}

.site-footer__divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.14);
  margin-top: 18px;
}

.site-footer__bottom {
  padding: 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--footer-muted);
  font-size: 12.5px;
}

.site-footer__bottom a {
  color: rgba(226, 232, 240, 0.92);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .site-footer__container {
    padding: 26px 0 14px;
  }
}
