.stax-unified-footer {
  width: 100%;
  padding: 58px 0 34px;
  margin-top: 72px;
  border-top: 1px solid #242424;
  background: #080808;
  color: #f5f5f5;
  letter-spacing: -0.035em;
}

.stax-unified-footer * {
  box-sizing: border-box;
}

.stax-footer-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.stax-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr));
  gap: 38px;
  align-items: start;
}

.stax-footer-brand {
  display: grid;
  gap: 16px;
}

.stax-footer-logo {
  width: fit-content;
  min-width: 62px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background: #121212;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.stax-footer-desc {
  margin: 0;
  color: #d4d4d8;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.stax-footer-col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.stax-footer-col ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stax-footer-col a {
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.stax-footer-col a:hover {
  color: #ffffff;
}

.stax-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #1f1f1f;
  color: #777777;
  font-size: 13px;
  font-weight: 650;
}

.stax-ready-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  min-width: 210px;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  border: 1px solid #303030;
  border-radius: 999px;
  background: rgba(16, 16, 16, .96);
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .42);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.stax-ready-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 920px) {
  .stax-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .stax-unified-footer {
    padding: 44px 0 28px;
    margin-top: 52px;
  }

  .stax-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stax-footer-bottom {
    flex-direction: column;
  }
}
