.site-footer {
  background: #070A18;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  padding: 72px 0 0;
  font-size: 15px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 5vw, 110px);
  align-items: start;
}

.site-footer .site-footer__logo {
  display: inline-flex;
  margin: 0;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .66);
  font: 400 15px/1.65 Inter, sans-serif;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 11px 15px;
  border: 1px solid rgba(141, 136, 255, .35);
  border-radius: 11px;
  background: rgba(79, 70, 245, .15);
  color: #fff;
  font: 700 14px/1.4 Manrope, sans-serif;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer__cta:hover {
  background: rgba(79, 70, 245, .27);
  border-color: rgba(141, 136, 255, .7);
  transform: translateY(-2px);
}

.site-footer__cta span {
  color: #A9A5FF;
  font-size: 18px;
  line-height: 1;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.site-footer__group h2 {
  margin: 2px 0 8px;
  color: #fff;
  font: 800 14px/1.4 Manrope, sans-serif;
  letter-spacing: 0;
}

.site-footer__group a {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font: 500 14px/1.5 Inter, sans-serif;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__group a:hover,
.site-footer__group a[aria-current="page"] {
  color: #fff;
}

.site-footer a:focus-visible {
  outline: 2px solid #A9A5FF;
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__bottom {
  margin-top: 68px;
  padding: 22px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .48);
  font: 500 13px/1.5 Inter, sans-serif;
}

@media (max-width: 860px) {
  .site-footer__main { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__nav { max-width: 760px; }
  .site-footer__bottom { margin-top: 54px; }
}

@media (max-width: 640px) {
  .site-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .site-footer { padding-top: 56px; }
  .site-footer__nav { gap: 18px; }
  .site-footer__group { gap: 13px; }
  .site-footer__group a { font-size: 13.5px; }
  .site-footer__bottom { margin-top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__cta,
  .site-footer__group a { transition: none; }
  .site-footer__cta:hover { transform: none; }
}
