/* ═══════════════════════════════════════════════════
   SPHRAGIO — Homepage CSS Part 3
   Covers: notify-form, faq-section, cta-block
   ═══════════════════════════════════════════════════ */

/* ── Notify / waitlist form ── */
.notify-form { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.notify-label {
  font-size: 11px; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.notify-row { display: flex; gap: 6px; }
.notify-input {
  flex: 1; min-width: 0; padding: 9px 12px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--gray-900); background: #fff;
  outline: none; transition: border-color 0.15s;
}
.notify-input:focus { border-color: var(--navy); }
.notify-input::placeholder { color: var(--gray-500); }
.notify-btn {
  flex-shrink: 0; padding: 9px 14px; background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600; border: none; border-radius: var(--radius-sm);
  cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.notify-btn:hover { background: var(--navy-light); }
.notify-success {
  display: none; font-size: 13px; color: var(--green-check);
  font-weight: 600; padding: 9px 0 2px;
}
.notify-success.show { display: block; }

/* ── FAQ section ── */
.faq-section {
  padding: 64px 24px; background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-list {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  overflow: hidden; background: #fff;
  box-shadow: 0 2px 12px rgba(28,13,90,0.05);
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: #fff; border: none; padding: 18px 20px; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--gray-900); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-blue); }
.faq-question[aria-expanded="true"] { background: var(--bg-blue); color: var(--navy); }
.faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  transition: transform 0.25s; color: var(--navy);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease; background: var(--bg-blue);
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 4px 20px 20px; font-size: 14px; line-height: 1.65; color: var(--gray-700);
}

/* ── CTA block ── */
.cta-block { background: var(--navy); padding: 64px 24px; text-align: center; }
.cta-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.15;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 32px;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1DB87A; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem;
  padding: 15px 40px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.2px;
}
.cta-btn:hover { background: #17A56E; transform: translateY(-1px); }
.cta-guarantee {
  margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── Open-Beta info section ──
   Info migrated from the deactivated welcome popup (2026-06-29); redesigned
   2026-07-02 from stacked .sph-highlight boxes into a 3-card token grid
   matching the trust/pricing card anatomy. */
.beta-note { padding: 64px 24px; background: var(--gray-50); }
.beta-note-inner { max-width: 920px; margin: 0 auto; }
.beta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 8px; text-align: left;
}
.beta-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px; min-width: 0;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.beta-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.beta-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-blue); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.beta-card-title { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.beta-card-body { font-size: 14px; line-height: 1.55; color: var(--gray-500); }
.beta-card-body a { color: var(--navy-light); font-weight: 600; text-decoration: none; }
.beta-card-body a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .beta-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Pulsing live indicator in the hero launch band. */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sev-ok); flex-shrink: 0;
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--sev-ok) 45%, transparent); }
  70%  { box-shadow: 0 0 0 6px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  .beta-card { transition: none; }
  .beta-card:hover { transform: none; }
}

