/* Email capture band — shared by index.html + how-it-works.html. Brand colors
   hardcoded so it renders the same regardless of each page's own stylesheet. */
.email-capture {
  background: #F8FAFC;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 56px 24px;
}
.email-capture .ec-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.email-capture h2 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -0.6px;
  color: #0F172A; margin: 0 0 8px;
}
.email-capture .ec-lead { font-size: 16px; line-height: 1.6; color: #475569; margin: 0 0 22px; }
.ec-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto; text-align: left; }
.ec-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ec-row input[type="email"] {
  flex: 1; min-width: 200px; height: 46px; padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.16); border-radius: 10px;
  font-size: 15px; background: #fff; color: #0F172A;
}
.ec-row input[type="email"]:focus {
  outline: none; border-color: #3B5BDB; box-shadow: 0 0 0 3px rgba(59, 91, 219, 0.15);
}
.ec-row button {
  height: 46px; padding: 0 22px; border: none; border-radius: 10px;
  background: #3B5BDB; color: #fff; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: background 0.2s;
}
.ec-row button:hover { background: #0A1640; }
.ec-row button:disabled { opacity: 0.6; cursor: not-allowed; }
.ec-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: #64748B; }
.ec-consent input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; accent-color: #3B5BDB; }
.ec-consent a { color: #64748B; }
.ec-status { font-size: 13.5px; min-height: 18px; margin: 2px 0 0; font-weight: 500; }
.ec-status.ok { color: #047857; }
.ec-status.err { color: #DC2626; }
