.site-footer {
  width: 100%;
  margin: 44px 0 0;
  border-top: 1px solid rgba(193, 193, 193, 0.14);
  background: linear-gradient(180deg, rgba(4, 11, 18, 0.4), rgba(4, 8, 14, 0.62));
  box-shadow: inset 0 1px 0 rgba(182, 220, 245, 0.05), 0 -12px 30px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 212, 212, 0.5), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 180px at 50% -6%, rgba(147, 147, 147, 0.08), transparent 72%);
  pointer-events: none;
}

.site-footer-inner {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 34px 18px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(119, 119, 119, 0.2);
  background: rgba(8, 17, 28, 0.34);
  color: #9c9c9c;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-footer-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(42, 245, 152, 0.7);
  color: #d8f7e5;
}

.site-footer-links {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(138, 138, 138, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #daf8e8;
}

.site-footer-copy {
  margin: 14px 0 0;
  color: rgba(207, 219, 226, 0.9);
  font-size: clamp(1.02rem, 1.8vw, 1.45rem);
  letter-spacing: 0.01em;
}

.site-footer-meta {
  margin: 16px auto 0;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(120, 177, 212, 0.14);
  background: rgba(6, 15, 25, 0.36);
  display: inline-flex;
  gap: 10px;
  color: rgba(133, 133, 133, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 30px;
  }

  .site-footer-inner {
    padding: 26px 14px 20px;
  }

  .site-footer-social-link {
    width: 38px;
    height: 38px;
  }

  .site-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.92rem;
  }
}