/* FAQ page (/how-it-works) — Figma "faq-page-mockup" (node 48:97).
   Flat, always-visible Q&A rows separated by hairline dividers; the nav
   and footer chrome come from base.html. Class-based only — no inline
   styles, so no CSP style-hash regeneration needed. */

/* Page-background glow — same radial as body.landing-page (dashboard.css),
   mirroring the Figma frame's shared background fill. */
body.how-it-works-page {
  background:
    radial-gradient(ellipse 60% 24% at 50% 58%, #173948 0%, #0e1a2c 55%, rgba(6, 9, 20, 0) 100%),
    var(--bg);
}

.faq-page { max-width: 740px; margin: 0 auto; }

.faq-page-header { text-align: center; padding: 48px 0 40px; }
.faq-page-header h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-page-header p { font-size: 1.125rem; color: #b0b8c8; line-height: 1.55; }

.faq-page-list { border-top: 1px solid rgba(51, 65, 85, 0.35); }
.faq-page-item { padding: 32px 0; border-bottom: 1px solid rgba(51, 65, 85, 0.35); }
/* Mock ends the list without a divider after the final item. */
.faq-page-item:last-child { border-bottom: none; }
.faq-page-item h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 12px;
}
.faq-page-item p { font-size: 0.9375rem; color: #b0b8c8; line-height: 1.6; margin: 0; }

.faq-page-cta {
  text-align: center;
  padding: 56px 0 40px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #b0b8c8;
}
.faq-page-cta a { color: #00bfff; font-weight: 600; text-decoration: underline; }
.faq-page-cta a:hover { color: #33ccff; }
