.site-footer {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #030303;
  color: #6f7885;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 24px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 170px 170px 170px;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f4f7fb;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: .03em;
  text-decoration: none;
}

.footer-logo-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 209, 90, .38);
  border-radius: 8px;
  background: linear-gradient(145deg, #15191f, #090b0f);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .04);
}

.footer-logo-mark:before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 5px;
  background: linear-gradient(145deg, #f3f4f6, #4b5563);
  opacity: .72;
}

.footer-logo b {
  color: #ffd15a;
}

.footer-tagline {
  max-width: 340px;
  color: #6f7885;
  font-size: 15px;
  line-height: 1.55;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
}

.footer-col a {
  display: block;
  margin: 0 0 10px;
  color: #6f7885;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.footer-col a:hover,
.footer-logo:hover,
.footer-x:hover {
  color: #f7c948;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #5c6570;
  font-size: 13px;
}

.footer-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #59626d;
}

.footer-x svg {
  display: block;
  width: 18px;
  height: 18px;
}

@media (max-width: 680px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
