/* Footer newsletter signup — shared across all pages (matches homepage) */
.nl-band {
  position: relative;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(160deg, #0c1824 0%, #0f1c2e 55%, #0d1f38 100%);
  overflow: hidden;
  margin-top: 72px;
  padding: 80px 24px 68px;
  min-height: 200px;
  box-sizing: border-box;
}
.nl-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 85% 40%, rgba(90,173,220,.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 55% at 12% 85%, rgba(43,109,233,.07) 0%, transparent 60%);
  pointer-events: none;
}
.nl-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at  8% 22%, rgba(255,255,255,.22) 0%, transparent 100%),
    radial-gradient(1px   1px   at 28% 65%, rgba(255,255,255,.14) 0%, transparent 100%),
    radial-gradient(2px   2px   at 52% 12%, rgba(255,255,255,.18) 0%, transparent 100%),
    radial-gradient(1px   1px   at 72% 48%, rgba(255,255,255,.11) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 78%, rgba(255,255,255,.17) 0%, transparent 100%),
    radial-gradient(1px   1px   at 44% 88%, rgba(255,255,255,.09) 0%, transparent 100%),
    radial-gradient(2px   2px   at 18% 92%, rgba(255,255,255,.13) 0%, transparent 100%),
    radial-gradient(1px   1px   at 62% 32%, rgba(255,255,255,.10) 0%, transparent 100%);
  pointer-events: none;
}
.nl-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.nl-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}
.nl-headline {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.nl-headline em {
  font-style: normal;
  color: var(--accent);
}
.nl-body {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0;
  max-width: 36ch;
}
.nl-form-label {
  display: block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}
.nl-field-row {
  display: flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s, background .15s;
}
.nl-field-row:focus-within {
  border-color: var(--accent);
  background: rgba(255,255,255,.1);
}
.nl-email {
  flex: 1;
  font: inherit;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 20px;
  min-width: 0;
}
.nl-email::placeholder { color: rgba(255,255,255,.28); }
.nl-submit {
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #0f1c2e;
  background: var(--accent);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 15px 24px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .12s;
}
.nl-submit:hover:not(:disabled) { background: var(--accent-hover); }
.nl-submit:disabled { opacity: .45; cursor: not-allowed; }
.nl-err {
  display: none;
  margin-top: 9px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #f87171;
}
.nl-fine {
  margin-top: 12px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255,255,255,.22);
  letter-spacing: .03em;
}
.nl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.nl-chip {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: 5px 12px;
}
.nl-success {
  display: none;
  text-align: center;
}
.nl-success-ring {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-blue-dim);
  border: 1.5px solid var(--accent-blue-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}
.nl-success-head {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 8px;
}
.nl-success-sub {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 660px) {
  .nl-band {
    padding: 60px 20px 52px;
    margin-top: 56px;
  }
  .nl-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nl-body { max-width: 100%; }
  .nl-submit { padding: 15px 18px; }
}
