/* Section background: subtly different from pure white */
.bg-offwhite {
  /* modern browsers */
  background: color-mix(in oklab, var(--nt-white) 94%, var(--nt-ink) 6%);
}
@supports not (color-mix(in oklab, white, black)) {
  /* safe fallback */
  .bg-offwhite { background: #F7F8FA; }
}

/* Small rounded eyebrow pill (kept neutral) */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 9999px;
  font-weight: 600; font-size: 12px; line-height: 1;
  background: var(--nt-white);
  border: 1px solid var(--nt-mist);
  color: var(--nt-ink);
}

/* Optional: tighter spacing for step list on small screens */
.steps-tight li+li { margin-top: .75rem; }
/* Remove borders and hover effects for plain cards section */
.cards-plain .card { border: none !important; box-shadow: none !important; background: var(--nt-white); }

/* Grid spacing utility */
.who-grid { row-gap: 1.25rem; column-gap: 1.25rem; }

/* CTA spacing utility */
.who-cta { gap: .75rem; flex-wrap: wrap; }

/* ===== Momentum section: dark gradient & on-dark helpers ===== */

/* Full-width dark gradient derived from #131922 (var(--nt-ink)) */
.bg-ink-gradient {
  /* modern: smooth ink → slightly lighter ink → subtle blue tint */
  background: linear-gradient(
    135deg,
    color-mix(in oklab, var(--nt-ink) 94%, white 6%) 0%,
    color-mix(in oklab, var(--nt-ink) 86%, white 14%) 38%,
    color-mix(in oklab, var(--nt-accent) 28%, var(--nt-ink) 72%) 100%
  );
}
@supports not (color-mix(in oklab, black, white)) {
  /* safe fallback close to #131922 → #162436 */
  .bg-ink-gradient {
    background: linear-gradient(135deg, #131922 0%, #162436 100%);
  }
}

/* On-dark text defaults */
.on-dark { color: #fff; }
.on-dark .slate { color: rgba(255,255,255,0.82); }

/* Eyebrow pill on dark backgrounds */
.eyebrow-pill.on-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}

/* Soft-light filled button for secondary CTA on dark */
.btn-soft-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}
.btn-soft-light:hover { background: rgba(255,255,255,0.18); }

/* CTA row spacing (reused pattern) */
.momentum-cta { gap: .75rem; flex-wrap: wrap; }

/* === FAQ: wrapper card & layout === */
.faq-card {
  border-radius: 16px;
  background: var(--nt-white);
  box-shadow: 0 10px 28px rgba(19,25,34,.10);
}

/* Each item row */
.faq-item {
  border-bottom: 1px solid var(--nt-mist);
}
.faq-item:last-child { border-bottom: 0; }

/* Question button */
.faq-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--nt-ink);
  text-align: left;
}

/* Chevron rotation */
.faq-chevron {
  transition: transform 180ms ease;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

/* Smooth open/close (height animation) */
.faq-panel {
  overflow: hidden;
  height: 0;
  transition: height 220ms ease;
  will-change: height;
}
@media (prefers-reduced-motion: reduce) {
  .faq-panel { transition: none; }
}

/* Subtle hover */
.faq-btn:hover { opacity: .92; }

/* Make the off-white section background available (already used elsewhere) */
/* .bg-ink-gradient already exists; we’ll reuse it for the full-width band */

/* === Newsletter card (same shape as faq-card, blue surface) === */
.nl-card {
  border-radius: 16px;
  background: var(--nt-blue);
  box-shadow: 0 10px 28px rgba(19,25,34,.10);
  color: #fff;
}

/* Input & button stack on small screens; smooth focus states */
.nl-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: .875rem 1rem;
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.nl-input::placeholder { color: rgba(255,255,255,0.85); }
.nl-input:focus {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.22);
}

/* Full-width button matching the card */
.nl-btn {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.0);
  background: #fff;
  color: var(--nt-ink);
  font-weight: 700;
  padding: .875rem 1rem;
  transition: transform 120ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.nl-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.nl-btn:active { transform: translateY(0); }

/* Keep the newsletter section visually merged with the FAQ strip */
.section-no-top-pad { padding-top: 0 !important; }

/* === Footer (dark, minimal) === */
.footer-wrap { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px){ .footer-wrap { padding-top: 3rem; padding-bottom: 3rem; } }

.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px){
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 2rem 3rem; }
}

.footer-brand p { color: rgba(255,255,255,0.82); }

.footer-heading {
  color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: .01em;
  margin-bottom: .75rem;
}
.footer-links a {
  display: block; padding: .25rem 0;
  color: rgba(255,255,255,0.82);
  transition: color 140ms ease, transform 140ms ease;
  text-underline-offset: 4px;
}
.footer-links a:hover { color: #fff; transform: translateX(2px); text-decoration: underline; }

.footer-social { display: flex; gap: .5rem; margin-top: .75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; transition: background 140ms ease, transform 140ms ease, border-color 140ms ease;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1rem; margin-top: 2rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.875rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.80);
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-legal a:hover { color: #fff; }

/* Full-width promo blue (newsletter-like) */
.bg-blue-promo {
  background: linear-gradient(135deg, var(--nt-blue) 0%, #1E6DFF 100%);
}

/* Countdown digits */
.countdown { display:flex; align-items:center; gap:10px; }
.cd-box { display:flex; flex-direction:column; align-items:center; padding:8px 10px; background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); border-radius:12px; min-width:72px; }
.cd-num { font-weight:800; font-size:2rem; line-height:1; color:#fff; }
.cd-label { font-size:.75rem; color:rgba(255,255,255,.85); margin-top:4px; }
.cd-colon { font-weight:700; font-size:1.5rem; color:#fff; opacity:.8; }