/* Site footer. */

.site-footer {
  background: var(--nx-ink-2);
  padding: clamp(48px, 6vw, 72px) var(--gutter) 28px;
  color: var(--nx-400);
}

.site-footer__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 36px;
}

.site-footer__about {
  grid-column: span 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.site-footer__brand .brand__mark {
  height: 28px;
}

.site-footer__brand .brand__divider {
  background: var(--nx-ink-3);
}

.site-footer__brand .brand__product {
  font-size: 20px;
}

.site-footer__blurb {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 38ch;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--nx-500);
}

.site-footer__col a {
  color: var(--nx-200);
  font-size: 14.5px;
}

.site-footer__col a:hover {
  color: var(--nx-billing);
}

.site-footer__col span:not(.site-footer__label) {
  color: var(--nx-400);
  font-size: 14.5px;
}

.site-footer__bottom {
  max-width: var(--shell);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--nx-ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--nx-500);
}

.site-footer__ecosystem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__ecosystem img {
  width: 14px;
  height: 14px;
  opacity: .6;
}

/* Same span-2 rule as the feature grid: drop it once two tracks stop fitting */
@media (max-width: 520px) {
  .site-footer__about {
    grid-column: auto;
  }
}
