/* Affiliate CTA band */
.cta {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--color-bg-elevated) 0%, #0c1222 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  text-align: center;
}

.cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.15), transparent 55%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.cta__copy {
  margin: 0 auto 1.5rem;
  max-width: 48ch;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.cta__disclosure {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}
