/* Closing CTA band and the site footer. */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band .glow-base {
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .display { max-width: 760px; margin: 18px 0; }
.cta-band .lede { margin-bottom: 44px; max-width: 420px; }

.site-footer {
  border-top: 1px solid var(--hairline);
  padding-top: 56px !important;
  padding-bottom: 48px !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.8fr 0.8fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid .wordmark { margin-bottom: 14px; display: inline-block; }
.footer-tag { font-size: var(--text-base); color: var(--text-muted); max-width: 260px; }

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-eyebrow);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col button {
  font-size: var(--text-base);
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
  text-align: left;
  padding: 0;
}
.footer-col a:hover, .footer-col button:hover { color: var(--pistachio); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: var(--text-sm);
  color: var(--text-faint);
}

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