/* Honest Pitches — Site-wide styles */

/* ─── CSS Custom Properties ─────────────────────────────────────────── */
:root {
  /* Infomercial rebel palette — red/black/cream (not generic SaaS blue) */
  --hp-primary: #e51923;
  --hp-primary-dark: #b8141c;
  --hp-accent: #f5f0e1;
  --hp-gold: #f5c400;
  --hp-success: #16a34a;
  --hp-warning: #d97706;
  --hp-danger: #dc2626;
  --hp-hype: #f59e0b;
  --hp-reality: #10b981;
  --hp-bg: #f5f0e1;
  --hp-surface: #ffffff;
  --hp-border: #1a1a1a;
  --hp-text: #0a0a0a;
  --hp-text-muted: #4a4a4a;
}

/* ─── Base reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--hp-bg);
  color: var(--hp-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hp-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Layout ───────────────────────────────────────────────────────── */
.home-page,
.pitches-page,
.creator-page,
.legal-page,
.report-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ─── Site chrome (sub-header / sub-nav / sub-footer) ────────────────
   Shared by the home page and every subpage. Quiet on purpose: this
   is navigation, not theatre. The per-page hero carries the mood.    */
.sub-header {
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
}
.sub-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sub-logo {
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--hp-text);
  text-decoration: none;
  line-height: 1;
}
.sub-logo span { color: var(--hp-gold); }
.sub-logo:hover { text-decoration: none; }

.sub-nav { min-width: 0; }
.sub-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-nav-list a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hp-text);
  text-decoration: none;
  border-radius: 8px;
}
.sub-nav-list a:hover {
  background: var(--hp-surface);
  text-decoration: none;
}
.sub-nav-list a[aria-current="page"] {
  color: var(--hp-primary);
  background: var(--hp-surface);
}

.sub-footer {
  background: var(--hp-surface);
  border-top: 1px solid var(--hp-border);
  margin-top: 3rem;
}
.sub-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.sub-footer-col h3.sub-footer-heading {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  margin: 0 0 0.875rem;
}
.sub-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sub-footer-col a {
  color: var(--hp-text);
  text-decoration: none;
  font-size: 0.9rem;
}
.sub-footer-col a:hover {
  color: var(--hp-primary);
  text-decoration: underline;
}
.sub-footer-col--brand .sub-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.sub-footer-tagline {
  color: var(--hp-text-muted);
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
  max-width: 32ch;
  line-height: 1.5;
}
.sub-footer-contact {
  margin: 0;
  font-size: 0.875rem;
}

.sub-footer-bottom {
  border-top: 1px solid var(--hp-border);
  background: var(--hp-bg);
}
.sub-footer-bottom p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--hp-text-muted);
}
.sub-footer-bottom a {
  color: var(--hp-text-muted);
  text-decoration: none;
}
.sub-footer-bottom a:hover {
  color: var(--hp-primary);
  text-decoration: underline;
}
.sub-footer-credit {
  margin-left: 0.5rem;
  opacity: 0.85;
}

@media (max-width: 800px) {
  .sub-header-inner { padding: 0.75rem 1rem; }
  .sub-nav-list a { padding: 0.4rem 0.55rem; font-size: 0.85rem; }
  .sub-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .sub-footer-col--brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .sub-footer-inner { grid-template-columns: 1fr; }
}

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 4rem 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--hp-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 3rem;
}
.badge-label {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  font-style: italic;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--hp-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; text-decoration: none; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--hp-text);
  border: 1px solid var(--hp-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-outline:hover { background: var(--hp-bg); text-decoration: none; }

/* ─── How it works ────────────────────────────────────────────────── */
.how-it-works { padding: 3rem 0; border-top: 1px solid var(--hp-border); border-bottom: 1px solid var(--hp-border); margin: 2rem 0; }
.how-it-works h2 { text-align: center; margin-bottom: 2rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hp-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.step p { margin: 0; font-size: 0.875rem; color: var(--hp-text-muted); }

/* ─── Category grid ──────────────────────────────────────────────── */
.categories { padding: 3rem 0; }
.categories h2 { text-align: center; margin-bottom: 1.5rem; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
  gap: 0.75rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.category-card:hover { border-color: var(--hp-primary); box-shadow: 0 2px 8px rgba(229,25,35,0.12); text-decoration: none; }
.category-icon { font-size: 1.75rem; }
.category-name { font-size: 0.8rem; font-weight: 600; color: var(--hp-text); text-align: center; }
.category-count { font-size: 0.7rem; color: var(--hp-text-muted); }

/* ─── Pitch grid ────────────────────────────────────────────────── */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pitch-card {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.pitch-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); text-decoration: none; }
.pitch-thumb {
  height: 140px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pitch-thumb-placeholder span {
  font-size: 2.5rem;
  font-weight: 900;
  color: #d1d5db;
}
.pitch-info { padding: 0.875rem; }
.pitch-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--hp-text);
  line-height: 1.3;
}
.pitch-byline { font-size: 0.75rem; color: var(--hp-text-muted); margin: 0 0 0.375rem; }
.pitch-price { font-size: 0.875rem; font-weight: 700; color: var(--hp-text); margin: 0; }
.pitch-price.free { color: var(--hp-success); }
.disclosure-mini { font-size: 0.7rem; }

/* ─── Pitch browse page ─────────────────────────────────────────── */
.pitches-header { margin-bottom: 2rem; }
.pitches-header h1 { margin: 0 0 0.25rem; }
.pitches-sub { color: var(--hp-text-muted); margin: 0 0 1.5rem; font-size: 0.875rem; }
.pitch-filters { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.category-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cat-pill {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--hp-text);
  text-decoration: none;
  background: var(--hp-surface);
  transition: border-color 0.15s, background 0.15s;
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--hp-primary);
  background: #eff6ff;
  color: var(--hp-primary);
  text-decoration: none;
}
.back-link { color: var(--hp-primary); font-size: 0.875rem; display: inline-block; margin-bottom: 1rem; }

/* ─── Creator page ─────────────────────────────────────────────── */
.creator-header { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--hp-border); flex-wrap: wrap; }
.creator-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: #e5e7eb; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: #9ca3af; flex-shrink: 0; }
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-handle { font-size: 1.5rem; font-weight: 800; margin: 0 0 0.25rem; }
.creator-bio { font-size: 0.9rem; color: var(--hp-text-muted); margin: 0 0 0.75rem; max-width: 480px; }
.creator-badges { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.creator-pitches h2 { margin-bottom: 1rem; }

/* ─── Legal pages ───────────────────────────────────────────────── */
.legal-page { max-width: 680px; }
.legal-page h1 { margin-bottom: 0.25rem; }
.effective { font-size: 0.8rem; color: var(--hp-text-muted); margin-bottom: 2rem; }
.legal-page section { margin-bottom: 2rem; }
.legal-page section h2 { font-size: 1rem; margin-bottom: 0.5rem; }
.legal-page p { font-size: 0.9rem; line-height: 1.7; }
.legal-page ul, .legal-page ol { font-size: 0.9rem; line-height: 1.7; padding-left: 1.5rem; }

/* ─── Report page ──────────────────────────────────────────────── */
.report-page { max-width: 560px; }
.report-info { color: var(--hp-text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.report-form { display: flex; flex-direction: column; gap: 1.25rem; }
.report-form .field { display: flex; flex-direction: column; gap: 0.375rem; }
.report-form label { font-size: 0.875rem; font-weight: 600; }
.required { color: var(--hp-danger); }
.optional { color: var(--hp-text-muted); font-weight: 400; font-size: 0.8rem; }
.report-form textarea, .report-form input[type="email"], .report-form select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--hp-border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.report-form textarea:focus, .report-form input:focus, .report-form select:focus {
  border-color: var(--hp-primary);
}
.report-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
}
.submit-error {
  padding: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: var(--hp-danger);
  font-size: 0.875rem;
}
.success-msg h2 { color: var(--hp-success); }
.success-msg p { color: var(--hp-text-muted); }
.success-msg { padding: 1.5rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; }

/* ─── Pagination ───────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; font-size: 0.875rem; flex-wrap: wrap; }
.page-link { color: var(--hp-primary); font-weight: 600; }

/* ─── Empty states ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state h2 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--hp-text-muted); margin-bottom: 1.5rem; }

/* ─── Creator CTA ──────────────────────────────────────────────── */
.creator-cta { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 16px; padding: 2rem; text-align: center; margin: 2rem 0; }
.cta-content h2 { margin: 0 0 0.5rem; }
.cta-content p { font-size: 0.9rem; color: var(--hp-text-muted); margin: 0 0 1.5rem; }
.cta-pricing { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pricing-option { display: flex; flex-direction: column; align-items: center; }
.pricing-amount { font-size: 2rem; font-weight: 900; }
.pricing-period { font-size: 0.75rem; color: var(--hp-text-muted); }
.pricing-or { font-weight: 600; color: var(--hp-text-muted); }
.cta-fine { font-size: 0.75rem; color: var(--hp-text-muted); margin-top: 0.75rem; }

/* ─── Pledge ──────────────────────────────────────────────────── */
.pledge { padding: 2rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; margin: 2rem 0; }
.pledge h2 { margin: 0 0 1rem; }
.pledge ul { font-size: 0.875rem; line-height: 2; padding-left: 1.5rem; }

/* ─── Featured pitches ─────────────────────────────────────────── */
.featured-pitches { margin: 2rem 0; }
.featured-pitches h2 { margin-bottom: 1rem; }
.view-all { display: block; text-align: center; margin-top: 1.5rem; font-weight: 600; color: var(--hp-primary); }

/* ─── Utility ────────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════════════════════
   FOUNDING PITCHER DEMAND TEST — Phase 0-WL
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Waitlist page layout ──────────────────────────────────────── */
.fp-demand-test-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ─── Waitlist hero ────────────────────────────────────────────── */
.fp-hero {
  padding: 3rem 0 2rem;
}
.fp-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fp-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fp-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fp-slots-left {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  font-weight: 500;
}

.fp-headline {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.fp-subhead {
  font-size: 1.05rem;
  color: var(--hp-text-muted);
  max-width: 540px;
  margin: 0;
  line-height: 1.65;
}

/* ─── Offer card ────────────────────────────────────────────────── */
.fp-offer {
  background: var(--hp-surface);
  border: 1.5px solid #1d4ed8;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
}

.fp-offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fp-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--hp-primary);
  letter-spacing: -0.04em;
}

.fp-price-label {
  font-size: 1rem;
  color: var(--hp-text-muted);
}

/* ─── Benefits list ─────────────────────────────────────────────── */
.fp-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fp-benefit {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.fp-benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fp-benefit div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.fp-benefit strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hp-text);
}

.fp-benefit span {
  font-size: 0.825rem;
  color: var(--hp-text-muted);
  line-height: 1.5;
}

/* ─── Checkout form ─────────────────────────────────────────────── */
.fp-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fp-form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fp-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--hp-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.fp-input:focus {
  border-color: var(--hp-primary);
}

.fp-btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--hp-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  font-family: inherit;
}

.fp-btn-primary:hover { opacity: 0.88; }
.fp-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.fp-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fp-btn-loading[hidden] {
  display: none;
}

.fp-btn-spinner {
  animation: fp-spin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes fp-spin {
  to { transform: rotate(360deg); }
}

.fp-form-error {
  color: var(--hp-danger);
  font-size: 0.85rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
}

.fp-form-fine {
  font-size: 0.75rem;
  color: var(--hp-text-muted);
  margin: 0;
  text-align: center;
}

/* ─── Referred notice ───────────────────────────────────────────── */
.fp-referred-notice {
  padding: 0.625rem 1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1e40af;
  text-align: center;
}

.fp-demand-test-page.fp-infomercial .fp-referred-notice {
  background: #fff;
  color: #000;
  font-weight: bold;
  border: 3px solid #000;
}

/* ─── Referral explainer ────────────────────────────────────────── */
.fp-referral-explainer {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.fp-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.fp-referral-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fp-ref-step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.fp-ref-step p {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.fp-ref-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hp-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.fp-ref-arrow {
  font-size: 1.25rem;
  color: var(--hp-text-muted);
  padding-top: 0.5rem;
  flex-shrink: 0;
}

/* ─── Pledge section (Founding Pitcher Demand Test variant) ───── */
.fp-demand-test-page .pledge {
  margin: 1.5rem 0;
}

/* ─── Waitlist footer ───────────────────────────────────────────── */
.fp-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--hp-border);
  font-size: 0.8rem;
  color: var(--hp-text-muted);
}
.fp-footer a { color: var(--hp-text-muted); }
.fp-footer-credit {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ──────────────────────────────────────────────────────────────────
   Broadcast / “As Seen On TV” vibe overrides
   (Overrides the calmer defaults above without rewriting markup.)
   ────────────────────────────────────────────────────────────────── */

.fp-hero-badge {
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
  animation: badge-float 6s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.fp-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 3.5rem 0 2.75rem;
}

.fp-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background:
    radial-gradient(1100px 520px at 18% 8%, rgba(255, 0, 170, 0.38), transparent 58%),
    radial-gradient(900px 520px at 82% 18%, rgba(0, 234, 255, 0.26), transparent 60%),
    radial-gradient(900px 700px at 60% 95%, rgba(255, 214, 0, 0.14), transparent 58%),
    linear-gradient(135deg, #0a0f22, #170b33 46%, #071a2d);
}

.fp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.08) 0px,
      rgba(255,255,255,0.03) 1px,
      rgba(0,0,0,0.02) 2px,
      rgba(0,0,0,0.02) 3px
    );
  mix-blend-mode: overlay;
  opacity: 0.34;
}

.fp-stage {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.45),
    0 0 0 6px rgba(255, 0, 170, 0.18),
    0 0 0 12px rgba(0, 234, 255, 0.12);
  padding: 1.25rem;
}

.fp-stage::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 2px dashed rgba(17, 24, 39, 0.18);
  pointer-events: none;
}

.fp-badge {
  background: linear-gradient(90deg, #ff0fd6, #00eaff);
  color: #081018;
  border: 2px solid rgba(0,0,0,0.18);
  box-shadow: 0 10px 24px rgba(255, 0, 170, 0.22);
}

.fp-slots-left {
  color: rgba(17,24,39,0.72);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17,24,39,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.fp-headline {
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.12),
    0 12px 28px rgba(0,0,0,0.18);
}

.fp-offer {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 3px solid rgba(17, 24, 39, 0.12);
  box-shadow:
    0 14px 46px rgba(0,0,0,0.22),
    0 0 0 6px rgba(255, 0, 170, 0.10),
    0 0 0 12px rgba(0, 234, 255, 0.08);
}

.fp-offer::before {
  content: "LIMITED TIME";
  position: absolute;
  top: -14px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.6rem;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.65);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.fp-price-amount {
  color: #0b1020;
  padding: 0.1rem 0.45rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 0, 170, 0.16), rgba(0, 234, 255, 0.16));
  border: 2px solid rgba(17,24,39,0.10);
}

.fp-btn-primary {
  background: linear-gradient(90deg, #ff0fd6, #00eaff);
  box-shadow: 0 14px 34px rgba(255, 0, 170, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fp-referral-explainer {
  border: 2px solid rgba(17,24,39,0.12);
}

.fp-demand-test-page.fp-infomercial .fp-referral-explainer {
  margin-top: 40px;
  background: #fff;
  color: #000;
  padding: 20px;
  border: 4px solid var(--fp-gold);
  text-align: left;
  box-shadow: 6px 6px 0 #000;
}

.fp-section-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fp-ref-num {
  background: linear-gradient(180deg, #111827, #0b1020);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

/* Ribbon + live bug */
.fp-ribbon {
  position: absolute;
  top: 18px;
  left: -68px;
  transform: rotate(-14deg);
  padding: 0.6rem 5.2rem;
  background: linear-gradient(90deg, #ff0fd6, #00eaff);
  color: #081018;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 3px solid rgba(0,0,0,0.18);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
  z-index: 3;
}

.fp-livebug {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.78);
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  z-index: 3;
}
.fp-livebug span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.fp-livebug .fp-hd { color: #00eaff; }
.fp-livebug .fp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff2d2d;
  box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.18);
  animation: fp-pulse 1.05s ease-in-out infinite;
}
@keyframes fp-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 520px) {
  .fp-ribbon {
    top: 10px;
    left: -92px;
    padding: 0.5rem 4.6rem;
    font-size: 0.72rem;
  }
  .fp-stage { padding: 1rem; }
  .fp-price-amount { font-size: 2.75rem; }
}

/* ──────────────────────────────────────────────────────────────────
   Waitlist — full “90s infomercial / late-night TV” pass
   ────────────────────────────────────────────────────────────────── */

.fp-demand-test-page.fp-infomercial {
  --fp-gold: #ffff00;
  --fp-orange: #ff6b00;
  --fp-red: #ff0000;
  --fp-teal: #00ffff;
  --fp-purple: #7c3aed;
  --fp-green: #00ff00;
  --fp-tv-black: #000000;
  --fp-blue: #0000ff;

  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--fp-blue);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.fp-demand-test-page.fp-infomercial a {
  color: var(--fp-gold);
  text-decoration: underline;
}

.fp-demand-test-page.fp-infomercial a:hover {
  color: #ffffff;
}

/* Urgent top bar */
.fp-infobar {
  background: var(--fp-red);
  border-bottom: 4px solid var(--fp-gold);
  text-align: center;
  padding: 5px;
}

.fp-infobar-text {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.2rem;
  color: var(--fp-gold);
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.fp-infobar-pulse {
  color: #ffffff;
  animation: fp-infobar-blink 0.5s steps(2, end) infinite;
}

@keyframes fp-infobar-blink {
  50% { opacity: 0; }
}

.fp-demand-test-page.fp-infomercial .fp-hero {
  padding: 2rem 1rem;
  text-align: center;
}

.fp-demand-test-page.fp-infomercial .fp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Credit card logos */
.fp-cc-logos {
  display: block;
  margin: 0 auto 20px;
}

.fp-phone-number {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--fp-gold);
  text-shadow: 4px 4px 0 #000;
  margin: 10px 0;
  line-height: 1;
}

.fp-price-huge {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #ffffff;
  text-shadow: 3px 3px 0 #000;
  animation: blink 1s steps(2, end) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.fp-plus-sh {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--fp-gold);
  text-shadow: 2px 2px 0 #000;
  font-weight: bold;
}

.fp-demand-test-page.fp-infomercial .fp-you-get {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--fp-gold);
  text-shadow: 3px 3px 0 #000;
  text-transform: uppercase;
  margin: 20px auto 4px;
  letter-spacing: 0.08em;
}

.fp-demand-test-page.fp-infomercial .fp-you-get + .fp-benefits-list {
  margin-top: 12px;
}

.fp-not-available {
  display: inline-block;
  border: 4px solid var(--fp-red);
  padding: 5px 15px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.5rem;
  color: var(--fp-gold);
  text-shadow: 2px 2px 0 #000;
  margin: 20px 0;
  background: rgba(0,0,0,0.3);
  box-shadow: 4px 4px 0 #000;
}

.fp-product-title {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  color: var(--fp-gold);
  text-shadow: 5px 5px 0 #000;
  text-transform: uppercase;
  margin: 20px 0 10px;
  line-height: 1.1;
}

.fp-tagline {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #ffffff;
  text-shadow: 3px 3px 0 #000;
  margin: 0 0 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.fp-subtagline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--fp-gold);
  text-shadow: 2px 2px 0 #000;
  margin: 0;
  line-height: 1.3;
  font-style: italic;
}

.fp-demand-test-page.fp-infomercial .fp-elevator {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.5;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  max-width: 680px;
  margin: 18px auto 0;
  padding: 0 8px;
}

.fp-demand-test-page.fp-infomercial .fp-elevator a {
  color: var(--fp-gold);
  font-weight: bold;
}

.fp-demand-test-page.fp-infomercial .fp-agent-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.45;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  max-width: 680px;
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 3px solid var(--fp-gold);
  background: rgba(0, 0, 0, 0.35);
  text-align: left;
  box-shadow: 4px 4px 0 #000;
}

.fp-demand-test-page.fp-infomercial .fp-agent-note a {
  color: var(--fp-gold);
  font-weight: bold;
}

.fp-demand-test-page.fp-infomercial .fp-story-box {
  margin-top: 40px;
  background: #fff;
  color: #000;
  padding: clamp(15px, 4vw, 20px);
  border: 4px solid var(--fp-gold);
  text-align: left;
  box-shadow: 6px 6px 0 #000;
}

.fp-demand-test-page.fp-infomercial .fp-story-box .fp-section-title {
  margin-top: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.fp-demand-test-page.fp-infomercial .fp-section-twist {
  background: var(--fp-red);
  color: #fff;
  padding: 0 5px;
}

.fp-demand-test-page.fp-infomercial .fp-vent-quote {
  margin: 0 0 16px 0;
  padding: 12px 16px;
  border-left: 6px solid var(--fp-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  background: #f5f5f5;
}

.fp-demand-test-page.fp-infomercial .fp-story-lead {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.fp-demand-test-page.fp-infomercial .fp-versus-label {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 0.04em;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px 0;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table th,
.fp-demand-test-page.fp-infomercial .fp-versus-table td {
  border: 3px solid #000;
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table thead th {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: #000;
  color: #fff;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table thead th.fp-versus-new {
  background: var(--fp-red);
  color: #fff;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table tbody th {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  background: #f0f0f0;
  width: 22%;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table tbody td.fp-versus-old {
  background: #eee;
}

.fp-demand-test-page.fp-infomercial .fp-versus-table tbody td.fp-versus-new {
  background: #fffde0;
}

.fp-demand-test-page.fp-infomercial .fp-story-kicker {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.fp-demand-test-page.fp-infomercial .fp-story-kicker a {
  color: inherit;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-teaser {
  margin: 0 0 12px 0;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.4;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-teaser a {
  color: var(--fp-gold);
  text-decoration: underline;
}

.fp-demand-test-page.fp-infomercial .fp-metrics-illus {
  font-size: 0.85em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ccc;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples {
  margin-top: 36px;
  background: #fff;
  color: #000;
  padding: clamp(15px, 4vw, 20px);
  border: 4px solid var(--fp-gold);
  text-align: left;
  box-shadow: 6px 6px 0 #000;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples .fp-section-title {
  margin-top: 0;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples-lead {
  margin: 0 0 16px 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 3px solid #000;
  background: #fffde0;
  text-decoration: none;
  color: #000;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.1s ease;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  text-decoration: none;
  color: #000;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-tag {
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-code {
  font-family: Consolas, Monaco, monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-title {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: bold;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-score {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.1rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-example-cta {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
}

.fp-demand-test-page.fp-infomercial .fp-hp-thread-demo {
  margin: 0;
  padding: 0;
  border: 3px solid #000;
  background: #000;
}

.fp-demand-test-page.fp-infomercial .fp-hp-thread-demo img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.fp-demand-test-page.fp-infomercial .fp-hp-thread-demo figcaption {
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  background: #f5f5f5;
  color: #000;
  border-top: 3px solid #000;
}

.fp-demand-test-page.fp-infomercial .fp-faq {
  margin-top: 40px;
  background: #000;
  color: #fff;
  padding: 24px 20px;
  border: 4px solid var(--fp-gold);
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-faq .fp-section-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-faq-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #333;
}

.fp-demand-test-page.fp-infomercial .fp-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fp-demand-test-page.fp-infomercial .fp-faq-item--last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fp-demand-test-page.fp-infomercial .fp-faq-section-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-cc-logos {
  margin: 0 auto 1.5rem;
  display: block;
}

.fp-demand-test-page.fp-infomercial .fp-referred-notice {
  margin-top: 20px;
  background: #fff;
  color: #000;
  padding: 10px;
  font-weight: bold;
  border: 3px solid #000;
}

.fp-demand-test-page.fp-infomercial .fp-referral-explainer {
  margin-top: 40px;
  background: #fff;
  color: #000;
  padding: 20px;
  border: 4px solid var(--fp-gold);
  text-align: left;
  box-shadow: 6px 6px 0 #000;
}

.fp-demand-test-page.fp-infomercial .fp-ref-step {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.fp-demand-test-page.fp-infomercial .fp-ref-step--last {
  margin-bottom: 0;
}

.fp-demand-test-page.fp-infomercial .fp-ref-num {
  background: var(--fp-gold);
  border: 3px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial Black', sans-serif;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fp-demand-test-page.fp-infomercial .fp-ref-step p {
  margin: 0;
}

.fp-demand-test-page.fp-infomercial .fp-referral-steps {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples-lead {
  color: #333;
  margin-top: 0;
}

.fp-demand-test-page.fp-infomercial .fp-day1-section {
  margin-top: 1.5rem;
}

.fp-demand-test-page.fp-infomercial .fp-faq-a a {
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-bar span {
  width: var(--bar-width, 0%);
}

/* Inline link in benefits list */
.fp-demand-test-page.fp-infomercial .fp-benefits-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fp-demand-test-page.fp-infomercial .fp-benefits-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fp-demand-test-page.fp-infomercial .fp-faq-link {
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-faq {
  margin-top: 40px;
  background: #000;
  color: #fff;
  padding: 24px 20px;
  border: 4px solid var(--fp-gold);
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-day1-section {
  margin-top: 1.5rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-examples-lead {
  color: #333;
  margin-top: 0;
}

.fp-demand-test-page.fp-infomercial .fp-micro-print {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #ccc;
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring-lead {
  margin-top: 1rem;
  margin-bottom: 0;
}

.fp-demand-test-page.fp-infomercial .fp-section-title {
  color: var(--fp-gold);
  margin-top: 0;
}

.fp-demand-test-page.fp-infomercial .fp-faq-q {
  margin: 0 0 6px 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--fp-gold);
}

.fp-demand-test-page.fp-infomercial .fp-faq-a {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

.fp-demand-test-page.fp-infomercial .fp-referral-explainer .fp-ref-num {
  color: #000;
}

@media (max-width: 560px) {
  .fp-demand-test-page.fp-infomercial .fp-versus-table {
    font-size: 0.78rem;
  }

  .fp-demand-test-page.fp-infomercial .fp-versus-table th,
  .fp-demand-test-page.fp-infomercial .fp-versus-table td {
    padding: 6px 8px;
  }

  .fp-demand-test-page.fp-infomercial .fp-versus-table tbody th {
    width: 26%;
  }
}

.fp-guarantee-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 0 #000;
  margin-top: 30px;
}

.fp-demand-test-page.fp-infomercial .fp-legal-fine {
  margin: 10px 0 0;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #ccc;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.fp-as-seen {
  position: absolute;
  top: 48px;
  left: 16px;
  width: min(138px, 36vw);
  transform: rotate(-11deg);
  transform-origin: center center;
  filter: drop-shadow(3px 4px 0 #000);
  z-index: 10;
  line-height: 0;
}

.fp-as-seen-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Font metrics tuned in SVG user units (see index.njk tspans) */
.as-seen-text {
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: 35px;
  font-weight: 900;
  text-anchor: middle;
  fill: #f9f9f9;
  letter-spacing: -2.3px;
}
.as-seen-text--sub {
  font-size: 19px;
  font-weight: bold;
  fill: #ffffff;
}

/* Checkout form */
.fp-checkout-form {
  margin-top: 40px;
  background: var(--fp-red);
  padding: clamp(15px, 4vw, 30px);
  border: 6px solid var(--fp-gold);
  box-shadow: 8px 8px 0 #000;
}

.fp-form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.fp-input {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-family: "Arial Black", Impact, sans-serif;
  border: 4px solid #000;
  text-align: center;
  box-shadow: inset 3px 3px 0 rgba(0,0,0,0.2);
}

.fp-btn-primary {
  background: var(--fp-gold);
  color: #000;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  padding: clamp(10px, 3vw, 15px) clamp(20px, 6vw, 50px);
  border: 6px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s;
}

.fp-btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #000;
  background: #fff;
}

.fp-btn-primary:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 #000;
}

.fp-form-error {
  color: #fff;
  background: #000;
  padding: 10px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.fp-form-fine {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000;
}

.fp-benefits-list {
  text-align: left;
  margin: 40px auto;
  max-width: 650px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  line-height: 1.4;
  list-style: none;
  padding: 0;
}
.fp-benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
.fp-benefits-list li::before {
  content: "⭐";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fp-gold);
}
.fp-benefits-list li span {
  color: #fff;
}
.fp-benefits-list li strong {
  color: var(--fp-gold);
}
.fp-benefits-list li strong a {
  color: inherit;
}
.fp-benefits-list li strong a:hover {
  color: #fff;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fp-demand-test-page.fp-infomercial .fp-footer {
  text-align: center;
  padding: 30px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: #000;
  border-top: 4px solid var(--fp-gold);
}

@media (max-width: 768px) {
  .fp-as-seen {
    position: relative;
    top: 0;
    left: 0;
    margin: 16px auto 0;
    width: min(140px, 52vw);
    transform: none;
  }
  .fp-guarantee-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   FOUNDING PITCHER SUCCESS PAGE
   ═══════════════════════════════════════════════════════════════════ */

.fp-demand-test-flow {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.ws-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.ws-icon {
  width: 154px;
  height: 180px;
}

.ws-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.ws-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.03em;
}

.ws-subtitle {
  font-size: 1rem;
  color: var(--hp-text-muted);
  max-width: 440px;
  margin: 0;
  line-height: 1.6;
}

.ws-sign-in-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.ws-sign-in-form .ws-wall-submit {
  align-self: flex-start;
}

/* ─── Referral card ─────────────────────────────────────────────── */
.ws-referral-card {
  width: 100%;
  background: var(--hp-surface);
  border: 1.5px solid var(--hp-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ws-referral-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.ws-referral-desc {
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.6;
}

.ws-your-link {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ws-link-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hp-text-muted);
}

.ws-link-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ws-ref-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--hp-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: "Courier New", Courier, monospace;
  background: var(--hp-bg);
  color: var(--hp-text);
  outline: none;
}

.ws-copy-btn {
  padding: 0.625rem 1.25rem;
  background: var(--hp-text);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.ws-copy-btn:hover { opacity: 0.8; }

.ws-share-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ws-share-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.1s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ws-share-btn:hover { 
  opacity: 0.9; 
  text-decoration: none; 
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.ws-share-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ws-share-twitter {
  background: #1da1f2;
  color: #fff;
}
.ws-share-x {
  background: #000;
  color: #fff;
}
.ws-share-facebook {
  background: #1877f2;
  color: #fff;
}

/* ─── Stats ────────────────────────────────────────────────────── */
.ws-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ws-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.ws-stat-num {
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 900;
  color: var(--hp-primary);
}

.ws-stat-label {
  font-size: 0.75rem;
  color: var(--hp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ws-footer-note {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  margin: 0;
}

/* ── Wall opt-in card on success page ── */
.ws-wall-card {
  width: 100%;
  background: var(--hp-surface);
  border: 1.5px solid var(--hp-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.ws-wall-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.ws-wall-desc {
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.6;
}

.ws-wall-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ws-wall-input-row {
  display: flex;
  flex-wrap: wrap;
}

.ws-wall-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--hp-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.ws-wall-input:focus {
  border-color: var(--hp-primary);
}

.ws-wall-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ws-wall-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--hp-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.ws-wall-opt-label {
  font-size: 0.875rem;
  color: var(--hp-text);
  cursor: pointer;
  user-select: none;
}

.ws-wall-opt-label strong {
  color: var(--hp-primary);
}

.ws-wall-submit {
  padding: 0.625rem 1.25rem;
  background: var(--hp-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
  align-self: flex-start;
}

.ws-wall-submit:hover { opacity: 0.85; }
.ws-wall-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.ws-wall-success {
  font-size: 0.85rem;
  color: var(--hp-success);
  margin: 0;
  font-weight: 600;
}

.ws-wall-error {
  font-size: 0.85rem;
  color: var(--hp-danger);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   FOUNDING PITCHERS — Progress Bar
   ═══════════════════════════════════════════════════════════════════ */

.fp-bar-section {
  background: #000;
  border-bottom: 4px solid var(--fp-gold);
  padding: 10px 16px;
  display: block;
}

.fp-bar-inner {
  max-width: 800px;
  margin: 0 auto;
}

.fp-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

.fp-bar-label {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--fp-gold);
  text-shadow: 1px 1px 0 #000;
}

.fp-bar-count {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

.fp-bar-track-wrap {
  margin-top: 2px;
}

.fp-bar-track {
  position: relative;
  height: 24px;
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--fp-gold);
  border-radius: 4px;
  overflow: visible;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.fp-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff0fd6, #00eaff);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0,234,255,0.5);
  min-width: 2px;
}

.fp-bar-goal-marker {
  position: absolute;
  left: 100%;
  top: -28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fp-bar-goal-label {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--fp-gold);
  text-shadow: 1px 1px 0 #000;
  white-space: nowrap;
}

.fp-bar-goal-marker::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background: var(--fp-gold);
  margin-top: 2px;
}

.fp-bar-dates {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.fp-bar-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 48%;
}

.fp-bar-date--deadline {
  align-items: flex-end;
  text-align: right;
}

.fp-bar-date-key {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--fp-gold);
  text-shadow: 1px 1px 0 #000;
}

.fp-bar-date-value {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

.fp-bar-date-hint {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  color: #aaa;
  line-height: 1.2;
}

.fp-bar-status {
  margin: 6px 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffff00;
  text-shadow: 1px 1px 0 #000;
  text-align: center;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════
   FOUNDING PITCHERS — Wall
   ═══════════════════════════════════════════════════════════════════ */

.fp-wall {
  display: none;
  margin-top: 20px;
}

.fp-wall:not([hidden]) {
  display: block;
}

.fp-wall-inner {
  background: #000;
  border: 4px solid var(--fp-gold);
  box-shadow: 6px 6px 0 #000;
  padding: 20px;
}

.fp-wall-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.fp-wall-badge {
  font-size: 1.4rem;
  color: var(--fp-gold);
  text-shadow: 2px 2px 0 #000;
  line-height: 1;
}

.fp-wall-title {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  margin: 0;
  text-align: center;
}

.fp-wall-sub {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--fp-gold);
  text-shadow: 1px 1px 0 #000;
  text-align: center;
  margin: 0 0 16px;
}

.fp-wall-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.fp-wall-tag {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(255,0,215,0.2), rgba(0,234,255,0.2));
  border: 2px solid var(--fp-gold);
  border-radius: 999px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.fp-wall-empty {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* ── Checkout form tweaks for name + wall opt-in ── */
.fp-form-name-row {
  margin-top: 8px;
}

.fp-input-name {
  font-size: 1.2rem !important;
  text-align: center;
}

.fp-wall-opt-in {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.fp-wall-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--fp-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.fp-wall-opt-label {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  cursor: pointer;
  user-select: none;
}

.fp-wall-opt-label strong {
  color: var(--fp-gold);
}

@media (max-width: 520px) {
  .fp-bar-count {
    font-size: 0.75rem;
  }
  .fp-bar-label {
    font-size: 0.7rem;
  }
  .fp-bar-date-value {
    font-size: 0.7rem;
  }
  .fp-bar-date-hint {
    font-size: 0.6rem;
  }
  .fp-bar-status {
    font-size: 0.65rem;
  }
}

/* ── Realignment: hero counter, risk shield, day-1, pitch previews, trust, founder, testimonials ── */

.fp-demand-test-page.fp-infomercial .fp-hero-counter {
  margin: 0.75rem auto 1.25rem;
  padding: 0.65rem 1rem;
  max-width: 520px;
  background: #000;
  border: 4px solid var(--fp-gold);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  text-transform: uppercase;
  color: var(--fp-gold);
  text-shadow: 2px 2px 0 #000;
  letter-spacing: 0.02em;
}

.fp-demand-test-page.fp-infomercial .fp-risk-shield {
  margin: 1.25rem auto 1.5rem;
  max-width: 640px;
  padding: 1rem 1.25rem;
  background: #fff;
  color: #000;
  border: 5px solid var(--fp-red);
  box-shadow: 6px 6px 0 #000;
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-risk-shield-title {
  margin: 0 0 0.5rem;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--fp-red);
}

.fp-demand-test-page.fp-infomercial .fp-risk-shield p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.45;
}

.fp-demand-test-page.fp-infomercial .fp-day1-section {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: #fff;
  color: #000;
  border: 4px solid var(--fp-gold);
  box-shadow: 8px 8px 0 #000;
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-day1-section--timeline {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.fp-demand-test-page.fp-infomercial .fp-day1-section .fp-section-title {
  color: #000;
  margin-top: 0;
}

.fp-demand-test-page.fp-infomercial .fp-day1-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
  align-items: stretch;
  justify-content: center;
}

.fp-demand-test-page.fp-infomercial .fp-day1-step {
  flex: 1 1 160px;
  max-width: none;
  padding: 1rem;
  background: #000;
  color: #fff;
  border: 3px solid var(--fp-red);
  text-align: center;
}

@media (min-width: 640px) {
  .fp-demand-test-page.fp-infomercial .fp-day1-step {
    max-width: 220px;
  }
}

.fp-demand-test-page.fp-infomercial .fp-day1-step-num {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2rem;
  color: var(--fp-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fp-demand-test-page.fp-infomercial .fp-day1-step-title {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.fp-demand-test-page.fp-infomercial .fp-day1-step-desc {
  font-size: 0.8rem;
  line-height: 1.35;
  margin: 0;
}

.fp-demand-test-page.fp-infomercial .fp-day1-arrow {
  align-self: center;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.75rem;
  color: var(--fp-red);
  flex: 0 0 auto;
}

.fp-demand-test-page.fp-infomercial .fp-day1-kicker {
  margin: 0;
  font-weight: bold;
  font-size: 0.95rem;
}

.fp-demand-test-page.fp-infomercial .fp-timeline-figure {
  margin: 1.25rem auto 1rem;
  padding: 0;
  max-width: 480px;
}

.fp-demand-test-page.fp-infomercial .fp-timeline-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-frame {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0b0f14;
  border: 4px solid #000;
  box-shadow: 5px 5px 0 var(--fp-gold);
  overflow: hidden;
  transition: transform 0.12s ease;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-frame:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--fp-gold);
  text-decoration: none;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: #1a2332;
  border-bottom: 1px solid #2f3336;
  font-size: 0.65rem;
  font-family: Consolas, Monaco, monospace;
  color: #9ca3af;
  flex-wrap: wrap;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-body {
  padding: 0.75rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #34d399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(52, 211, 153, 0.08);
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-ring-value {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.1rem;
  color: #34d399;
  line-height: 1;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-ring-label {
  font-size: 0.45rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-metrics {
  flex: 1;
  display: grid;
  gap: 0.25rem;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-metric {
  display: grid;
  grid-template-columns: 4.5rem 1fr 2rem;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.6rem;
  color: #e7e9ea;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-bar {
  height: 4px;
  background: #2f3336;
  border-radius: 2px;
  overflow: hidden;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-bar span {
  display: block;
  height: 100%;
  width: var(--bar-width, 0%);
  background: linear-gradient(90deg, #e51923, #fbbf24);
  border-radius: 2px;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-title {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-code {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.65rem;
  color: #fbbf24;
}

.fp-demand-test-page.fp-infomercial .fp-pitch-preview-cta {
  display: block;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
  background: var(--fp-red);
  color: var(--fp-gold);
  text-transform: uppercase;
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: #000;
  border: 4px solid var(--fp-teal);
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring .fp-section-title {
  color: var(--fp-teal);
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring-lead,
.fp-demand-test-page.fp-infomercial .fp-trust-scoring-list {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.fp-demand-test-page.fp-infomercial .fp-trust-scoring-list li {
  margin-bottom: 0.5rem;
}

.fp-demand-test-page.fp-infomercial .fp-testimonials {
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  border: 4px dashed var(--fp-gold);
  background: rgba(0, 0, 0, 0.35);
  text-align: left;
}

.fp-demand-test-page.fp-infomercial .fp-testimonials-note {
  font-size: 0.75rem;
  color: #ccc;
  margin: 0 0 1rem;
  font-style: italic;
}

.fp-demand-test-page.fp-infomercial .fp-testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .fp-demand-test-page.fp-infomercial .fp-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fp-demand-test-page.fp-infomercial .fp-testimonial-card {
  margin: 0;
  padding: 1rem;
  background: #fff;
  color: #000;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 var(--fp-red);
}

.fp-demand-test-page.fp-infomercial .fp-testimonial-card blockquote {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.4;
}

.fp-demand-test-page.fp-infomercial .fp-testimonial-card cite {
  font-size: 0.8rem;
  font-style: normal;
  color: #444;
}

@media (max-width: 640px) {
  .fp-demand-test-page.fp-infomercial .fp-day1-arrow {
    display: none;
  }
}

/* ─── System home (/) — modern infomercial product-spot ─────────────
   The home page is a single product-feature beat:
     • slim "as seen on" chrome (in fp-infomercial-chrome.njk)
     • slim FOUNDING PITCHERS progress bar (the only live-status beat)
     • hero: title + master description + primary CTA
     • top-pitch: a single off-white "now on the air" card
     • slim system explainer
   No sales letter, no objection handling, no second card. The pitch
   page does the closing. The home page only does recognition. */

.fp-demand-test-page.fp-infomercial.hp-system-home {
  /* Deeper, more modern TV-blue.  The demand-test sales page keeps
     its loud pure blue (--fp-blue) so the long-form sales letter
     still reads "90s infomercial".  Only the home page gets the
     modernized field. */
  background: #0a1633;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 214, 10, 0.06), transparent 60%),
    linear-gradient(180deg, #0e1a3a 0%, #07112a 100%);
}

.fp-demand-test-page.fp-infomercial.hp-system-home .fp-as-seen {
  /* dial down the chrome seal so it reads as a broadcast badge, not
     a floating sticker.  Slightly less rotation, smaller drop-shadow. */
  top: 18px;
  left: 14px;
  width: min(112px, 30vw);
  transform: rotate(-6deg);
  filter: drop-shadow(2px 3px 0 #000);
}

.fp-demand-test-page.fp-infomercial.hp-system-home .fp-infobar {
  font-size: 0.78rem;
  padding: 4px 8px;
}

.fp-demand-test-page.fp-infomercial.hp-system-home .fp-infobar-text {
  font-size: 0.78rem;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 0.04em;
}

/* Bevel: rounded corners + soft inset highlight + offset shadow.
   Applied to the home page CTAs. The sales page's loud
   .fp-btn-primary (gold + 4px black border + 6px offset shadow)
   is intentionally untouched. */
.hp-cta {
  /* WCAG 2.2 AA: text #000 on #f5c400 = 11.2:1 (AAA). The previous
     gradient (#ffea4d → #ffd60a → #e6b800) gave some color-blindness
     simulators a perceived-contrast below 4.5:1 because the top
     highlight was nearly the same yellow as the text. Solid yellow
     + black is unambiguous for any visual-simulator audit. */
  --hp-cta-bg: #f5c400;
  --hp-cta-bg-hover: #ffd60a;
  --hp-cta-fg: #000000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hp-cta-fg);
  background: var(--hp-cta-bg);
  padding: 0.85rem 1.5rem;
  border: 2px solid #000000;
  border-radius: 10px;
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 6px 0 #000000,
    0 10px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-shadow: none;
}

.hp-cta:hover {
  transform: translateY(2px);
  background: var(--hp-cta-bg-hover);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 4px 0 #000000,
    0 6px 12px rgba(0, 0, 0, 0.4);
  color: var(--hp-cta-fg);
  text-decoration: none;
}

.hp-cta:active {
  transform: translateY(5px);
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 1px 0 #000000;
}

.hp-cta:focus-visible {
  outline: 3px solid #ffd60a;
  outline-offset: 3px;
}

.hp-cta-arrow {
  font-size: 1.1em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.15s ease;
}

.hp-cta:hover .hp-cta-arrow {
  transform: translateX(3px);
}

.hp-cta--ghost {
  --hp-cta-bg: transparent;
  --hp-cta-bg-hover: rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #f5f5f5;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: none;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  letter-spacing: 0;
}

.hp-cta--ghost:hover {
  color: #ffd60a;
  border-color: rgba(255, 214, 10, 0.7);
  background: rgba(255, 214, 10, 0.06);
}

.hp-cta--card {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 4px 0 #000000,
    0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hp-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(2rem, 5vw, 3rem);
  position: relative;
}

.hp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hp-hero-copy {
  min-width: 0;
  text-align: left;
}

.hp-hero-figure {
  margin: 0;
  min-width: 0;
}

.hp-hero-illustration {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-left: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
  border-radius: 18px;
}

@media (max-width: 860px) {
  .hp-hero-inner {
    grid-template-columns: 1fr;
  }
  .hp-hero-copy {
    text-align: center;
  }
  .hp-hero-cta-row {
    justify-content: center;
  }
  .hp-hero-illustration {
    margin: 0 auto;
    max-width: 360px;
  }
}

.hp-hero-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffd60a;
  text-shadow: 1px 1px 0 #000;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 214, 10, 0.5);
  border-radius: 999px;
}

.hp-hero-title {
  margin: 0 0 1rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(2.2rem, 6.4vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.5),
    3px 4px 0 #0a1633;
  text-transform: none;
}

.hp-hero-lead {
  margin: 0 0 1.75rem;
  max-width: 560px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 1.25rem;
}

.hp-hero-agent-note {
  margin: 0;
  max-width: 560px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.55rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.hp-hero-agent-note a {
  color: #ffd60a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp-hero-agent-note a:hover {
  color: #ffffff;
}

/* ── Top pitch ────────────────────────────────────────────────── */
.hp-top-pitch {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem clamp(2rem, 5vw, 3rem);
}

.hp-top-pitch-eyebrow {
  display: block;
  margin: 0 0 0.4rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.hp-top-pitch-heading {
  margin: 0 0 1rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.hp-top-pitch-card {
  position: relative;
  background: #fafafa;
  color: #0a1633;
  border: 2px solid #0a1633;
  border-radius: 14px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 0 rgba(10, 22, 51, 0.4),
    0 18px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hp-top-pitch-card::before {
  /* TV scanline cue, very subtle */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 3px,
    rgba(10, 22, 51, 0.025) 3px,
    rgba(10, 22, 51, 0.025) 4px
  );
  border-radius: inherit;
}

.hp-top-pitch-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0 0 0.6rem;
}

.hp-top-pitch-framework {
  display: inline-block;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #d10000;
  color: #fff;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  border: 1.5px solid #0a1633;
}

.hp-top-pitch-code {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a1633;
  background: rgba(10, 22, 51, 0.08);
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(10, 22, 51, 0.18);
}

.hp-top-pitch-title {
  margin: 0 0 0.4rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  line-height: 1.22;
  font-weight: 900;
  color: #0a1633;
}

.hp-top-pitch-title a {
  /* Explicit black + permanent underline so the link is never
     perceived as "yellow text on white" by any color-blindness
     simulator or low-contrast audit. Black on white = 21:1. */
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

.hp-top-pitch-title a:hover {
  color: var(--hp-primary, #e51923);
  text-decoration-color: var(--hp-primary, #e51923);
}

.hp-top-pitch-audience,
.hp-top-pitch-snippet {
  margin: 0 0 0.7rem;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(10, 22, 51, 0.85);
}

.hp-top-pitch-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(10, 22, 51, 0.12);
}

.hp-top-pitch-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.hp-top-pitch-score-value {
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #0a1633;
  letter-spacing: -0.02em;
}

.hp-top-pitch-score-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(10, 22, 51, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── System explainer ─────────────────────────────────────────── */
.hp-system-about {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.hp-about-title {
  margin: 0 0 0.85rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hp-about-lead {
  margin: 0 auto 0.95rem;
  max-width: 640px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hp-about-lead strong {
  color: #ffd60a;
  font-weight: 800;
}

.hp-about-links {
  margin: 0;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.hp-about-links a {
  color: #ffd60a;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 214, 10, 0.45);
  padding-bottom: 1px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.hp-about-links a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.hp-about-dot {
  display: inline-block;
  margin: 0 0.55rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Hide the legacy "loud" home variants (story-box / hero-counter)
   that some sub-templates still wire in.  The home page no longer
   uses these classes, but the old page may still have them
   embedded via fp-infomercial-chrome.  We keep them quiet. */
.fp-demand-test-page.fp-infomercial.hp-system-home .fp-section-twist,
.fp-demand-test-page.fp-infomercial.hp-system-home .fp-hero-counter {
  display: none !important;
}

@media (max-width: 640px) {
  .hp-hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-cta,
  .hp-cta--ghost {
    width: 100%;
    justify-content: center;
  }
  .hp-top-pitch-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-top-pitch-card-footer .hp-cta {
    width: 100%;
    justify-content: center;
  }
  .fp-demand-test-page.fp-infomercial.hp-system-home .fp-as-seen {
    position: relative;
    top: 0;
    left: 0;
    margin: 12px auto 0;
    transform: none;
    width: min(108px, 36vw);
  }
}

.fp-subpage .fp-hero--sub {
  padding: 2rem 1rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   SUBPAGE CONTENT — /mechanics/, /faq/
   Modernized, system-aligned look for content subpages. Same shared
   sub-header / sub-nav / sub-footer chrome as the rest of the site;
   cream paper field, system type, no infomercial wrapper. The founding-
   pitcher sales page keeps its loud .fp-infomercial skin intentionally.
   ═══════════════════════════════════════════════════════════════════ */

.subpage-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
}

/* ── Subpage hero (used by /mechanics/, /faq/, future content pages) ── */
.subpage-content .subpage-hero {
  margin: 0 0 2.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--hp-border);
}

.subpage-content .subpage-eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.2rem 0.6rem;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: 999px;
}

.subpage-content h1 {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--hp-text);
  margin: 0 0 0.65rem;
}

.subpage-content .subpage-lead {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--hp-text);
  margin: 0 0 0.4rem;
  max-width: 56ch;
}

.subpage-content .subpage-sub {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--hp-text-muted);
  margin: 0 0 0.85rem;
  max-width: 56ch;
}

.subpage-content .subpage-back-link {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.subpage-content .subpage-back-link a {
  color: var(--hp-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage-content .subpage-back-link a:hover {
  color: var(--hp-primary-dark);
}

/* ── Hero (replaces .fp-hero--sub on mechanics + faq) ──────────── */
.subpage-content .fp-hero--sub {
  text-align: left;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--hp-border);
  margin-bottom: 2.5rem;
}

.subpage-content .fp-hero-inner {
  gap: 0.75rem;
  text-align: left;
}

.subpage-content .fp-product-title {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--hp-text);
  text-shadow: none;
  margin: 0;
  line-height: 1.1;
}

.subpage-content .fp-tagline {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: none;
  color: var(--hp-text-muted);
  text-shadow: none;
  margin: 0;
  line-height: 1.4;
  max-width: 56ch;
}

.subpage-content .fp-subtagline {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: var(--hp-text-muted);
  text-shadow: none;
  margin: 0;
  line-height: 1.5;
  max-width: 56ch;
}

.subpage-content .fp-story-lead {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: var(--hp-text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.5;
}

/* ── Sections: calm cards, not infomercial stamps ─────────────── */
.subpage-content .fp-day1-section,
.subpage-content .fp-referral-explainer,
.subpage-content .fp-trust-scoring,
.subpage-content .fp-testimonials,
.subpage-content .fp-story-box,
.subpage-content .fp-risk-shield,
.subpage-content .fp-faq {
  margin: 0 0 2rem;
  padding: 1.5rem 1.5rem;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg, 12px);
  box-shadow: none;
  text-align: left;
  color: var(--hp-text);
}

.subpage-content .fp-day1-section--timeline {
  padding: 1.5rem;
}

.subpage-content .fp-timeline-figure {
  max-width: 360px;
  margin: 0.75rem auto 1rem;
  padding: 0;
}

.subpage-content .fp-day1-kicker {
  font-size: 0.95rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Section headings: quiet, system type ──────────────────────── */
.subpage-content .fp-section-title {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--hp-text);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.subpage-content .fp-section-twist {
  background: transparent;
  color: var(--hp-primary);
  padding: 0;
}

/* ── Benefits list: clean, bulleted ────────────────────────────── */
.subpage-content .fp-benefits-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-text);
  text-shadow: none;
  text-transform: none;
  line-height: 1.6;
  max-width: none;
  display: grid;
  gap: 0.625rem;
}

.subpage-content .fp-benefits-list li {
  position: relative;
  margin: 0;
  padding: 0.625rem 0.75rem 0.625rem 2rem;
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-md, 8px);
}

.subpage-content .fp-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  top: 0.625rem;
  font-weight: 900;
  color: var(--hp-success);
  font-size: 1rem;
  line-height: 1.4;
}

.subpage-content .fp-benefits-list li span,
.subpage-content .fp-benefits-list li strong {
  color: var(--hp-text);
  text-shadow: none;
  font-weight: 600;
}

.subpage-content .fp-benefits-list li a {
  color: var(--hp-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage-content .fp-benefits-list li a:hover {
  color: var(--hp-primary-dark);
}

/* ── Risk shield: a calm callout, not a 90s TV stamp ──────────── */
.subpage-content .fp-risk-shield {
  border-left: 4px solid var(--hp-success);
  background: #f0fdf4;
}

.subpage-content .fp-risk-shield-title {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  color: var(--hp-text);
  margin: 0 0 0.5rem;
  text-shadow: none;
}

.subpage-content .fp-risk-shield p {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--hp-text);
  text-shadow: none;
  margin: 0;
}

/* ── Trust scoring: clean list ────────────────────────────────── */
.subpage-content .fp-trust-scoring-lead {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hp-text);
  margin: 0 0 1rem;
  text-shadow: none;
}

.subpage-content .fp-trust-scoring-list {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hp-text);
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  text-shadow: none;
}

.subpage-content .fp-trust-scoring-list li {
  margin-bottom: 0.5rem;
}

.subpage-content .fp-trust-scoring-list li:last-child {
  margin-bottom: 0;
}

.subpage-content .fp-trust-scoring a {
  color: var(--hp-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage-content .fp-trust-scoring a:hover {
  color: var(--hp-primary-dark);
}

/* ── Testimonials: 2-up grid, clean cards ─────────────────────── */
.subpage-content .fp-testimonials-note {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  font-style: italic;
  margin: 0 0 1rem;
  text-shadow: none;
}

.subpage-content .fp-testimonial-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .subpage-content .fp-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.subpage-content .fp-testimonial-card {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--hp-bg);
  color: var(--hp-text);
  border: 1px solid var(--hp-border);
  border-left: 4px solid var(--hp-primary);
  border-radius: var(--hp-radius-md, 8px);
  box-shadow: none;
}

.subpage-content .fp-testimonial-card blockquote {
  margin: 0 0 0.5rem;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--hp-text);
}

.subpage-content .fp-testimonial-card cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--hp-text-muted);
}

/* ── Referral / viral-loop steps: horizontal, numbered ────────── */
.subpage-content .fp-referral-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--hp-text);
  text-shadow: none;
  text-transform: none;
  line-height: 1.5;
  align-items: start;
}

@media (min-width: 720px) {
  .subpage-content .fp-referral-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.subpage-content .fp-ref-step {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-md, 8px);
  padding: 1rem;
}

.subpage-content .fp-ref-num {
  width: 32px;
  height: 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--hp-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  flex-shrink: 0;
}

.subpage-content .fp-ref-step p {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--hp-text);
  line-height: 1.55;
  margin: 0;
  text-shadow: none;
}

.subpage-content .fp-ref-step--last {
  margin: 0;
}

/* ── Story box: calm quote, no TV black/gold ──────────────────── */
.subpage-content .fp-story-box {
  background: var(--hp-bg);
  border-left: 4px solid var(--hp-primary);
}

.subpage-content .fp-vent-quote {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--hp-text);
  background: transparent;
  border-left: 0;
  padding: 0;
  margin: 0 0 1rem;
}

.subpage-content .fp-story-lead {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hp-text);
  margin: 0 0 0.75rem;
  text-shadow: none;
  text-transform: none;
}

.subpage-content .fp-story-kicker {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  margin: 0;
  text-shadow: none;
}

.subpage-content .fp-story-kicker a {
  color: var(--hp-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FAQ: clean list, no neon ─────────────────────────────────── */
.subpage-content .fp-faq {
  background: var(--hp-surface);
  color: var(--hp-text);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg, 12px);
  padding: 1.5rem;
}

.subpage-content .fp-faq .fp-section-title {
  margin: 0 0 1.25rem;
}

.subpage-content .fp-faq-item {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hp-border);
}

.subpage-content .fp-faq-item:first-of-type {
  padding-top: 0;
}

.subpage-content .fp-faq-item:last-child,
.subpage-content .fp-faq-item--last {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.subpage-content .fp-faq-q {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hp-text);
  text-shadow: none;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

.subpage-content .fp-faq-a {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--hp-text);
  text-shadow: none;
  margin: 0;
}

.subpage-content .fp-faq-a a {
  color: var(--hp-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage-content .fp-faq-a a:hover {
  color: var(--hp-primary-dark);
}

/* ── "You will get" lead-in for the benefits section ──────────── */
.subpage-content .fp-you-get {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hp-text);
  text-shadow: none;
  margin: 0 0 0.75rem;
}

/* ── Mobile rhythm ───────────────────────────────────────────── */
@media (max-width: 560px) {
  .subpage-content {
    padding: 1.5rem 1rem 2.5rem;
  }
  .subpage-content .fp-day1-section,
  .subpage-content .fp-referral-explainer,
  .subpage-content .fp-trust-scoring,
  .subpage-content .fp-testimonials,
  .subpage-content .fp-story-box,
  .subpage-content .fp-risk-shield,
  .subpage-content .fp-faq {
    padding: 1.25rem;
  }
}

.pitch-page .mockup-ribbon {
  background: #000;
  color: #ff0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  margin: 0;
}

.pitch-page .pitch-lead {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.pitch-framework-badge,
.pitch-framework-outline {
  font-size: 0.9rem;
  color: var(--hp-text-muted);
}

.pitch-framework-outline-item {
  text-transform: capitalize;
}

.pitch-page-price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.pitch-page-price--free {
  color: #047857;
}

.pitch-page-price--contact,
.pitch-page-price--on-request {
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--hp-text-muted);
  font-variant-numeric: normal;
}

.pitch-block {
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--hp-border);
}

.pitch-block-heading {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pitch-block-body {
  line-height: 1.65;
}

.honestscore-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--hp-surface);
  border: 3px solid var(--hp-border);
  margin: 2rem 0;
}

.honestscore-ring {
  text-align: center;
}

.honestscore-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.metrics-illustration-note,
.fp-metrics-illus {
  font-size: 0.85rem;
  color: var(--hp-text-muted);
}

.pitch-supplement {
  margin: 2rem 0;
  padding: 1rem;
  background: var(--hp-surface);
  border: 2px dashed var(--hp-border);
}

/* ── Site-wide promo slot ───────────────────────────────────────────
   The `.site-promo-slot` is the stable DOM region directly under
   the page nav. It is always rendered (so the page layout does
   not shift when a promo is added or cleared) and its contents
   are driven by `_data/sitePromo.js` (active: "founding-pitcher"
   fills it, active: null leaves it empty). The slot itself is
   invisible — it is just a structural container.

   The current occupant of the slot, `promo-founding-pitcher.njk`,
   is styled further down (`.fp-sitewide-promo`). Each new promo
   should ship its own include AND its own `.fp-sitewide-promo-*`
   styles. The slot itself is intentionally class-agnostic. */
.site-promo-slot {
  /* The slot is a thin wrapper — it has no background, no
     padding, no border. The promo include inside it (when
     filled) carries its own chrome (background, infobar,
     border-bottom rule). The slot exists so the page can
     always rely on `.site-promo-slot` being present in the
     DOM even when the promo is cleared. */
  position: relative;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--hp-text, #1f1b16);
}

.site-promo-slot--empty {
  /* Empty slot — render an aria-labeled, zero-height region so
     the slot still exists in the layout (and the layout doesn't
     shift when the slot is later filled) but doesn't take up
     visible space. The `aria-label` and `data-promo="none"`
     let screen readers and tests confirm the slot is present. */
  display: block;
  min-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ── Promo: Founding Pitcher demand-test ────────────────────────────
   The current occupant of `.site-promo-slot`. Layout is a
   two-row grid:
     • Row 1 (`.fp-sitewide-top`):    flex row of [seal | infobar]
     • Row 2 (`.fp-sitewide-main`):   2-col grid of [bar | CTAs]
                                      with the CTAs vertically
                                      stacked on the right

   On desktop the bar takes the full remaining width and the
   CTAs sit in a fixed-width column to its right. On mobile
   (< 720 px) the layout collapses to a single column. */
.fp-sitewide-promo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.75rem;
  /* The band is the 90s infomercial by default on EVERY page. It
     is the load-bearing "special internet offer" pitch the user
     wants site-wide, so the deep-blue + gold-border loud palette
     lives in the base rule here. A previous version tried to
     opt the home page in via `.hp-system-home .fp-sitewide-promo`,
     but the slot is a SIBLING of <main>, not a descendant, so
     that selector never matched. The "loud" palette is now the
     base. */
  background: var(--fp-blue, #0a1f4d);
  border-bottom: 4px solid var(--fp-gold, #f8c000);
  color: #f9f9f9;
}

/* ── Row 1: seal + infobar ──────────────────────────────────────── */
.fp-sitewide-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.fp-sitewide-seal {
  /* Slim "as seen on" seal — small, sits at the left of the
     top row so it reads as a network logo stamp, not a giant
     badge. */
  display: inline-block;
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  margin: 0;
}

.fp-sitewide-seal .fp-as-seen-svg {
  display: block;
  width: 100%;
  height: 100%;
  /* Override the loud home-page styling — quiet pages get a flat,
     unrotated seal. The home page re-enables the loud style
     with its own .hp-system-home .fp-as-seen override below. */
  transform: none;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
}

.fp-sitewide-promo .fp-infobar {
  /* Full-size loud infobar. The previous "slim" variant was for
     the abandoned --quiet page override; the band is loud on every
     page now, so the infobar gets the full 90s treatment. */
  flex: 1 1 auto;
  min-width: 0;
  padding: 5px 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  border-bottom: 2px solid var(--fp-gold, #f8c000);
  margin: 0;
}

.fp-sitewide-promo .fp-infobar-text {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.2rem;
  color: var(--fp-gold, #f8c000);
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 0.02em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Row 2: bar (left) + CTAs (right, stacked) ──────────────────── */
.fp-sitewide-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.fp-sitewide-promo .fp-bar-section {
  /* Loud TV card — black field with the gold 90s bevel. The bar
     is the focal point of the band, so the card gets a thicker
     border and more padding than the default inline bars. */
  min-width: 0;
  background: #000;
  border: 3px solid var(--fp-gold, #f8c000);
  border-radius: 8px;
  padding: 1rem;
  margin: 0;
}

.fp-sitewide-promo .fp-bar-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--fp-gold, #f8c000);
  text-shadow: 1px 1px 0 #000;
}

.fp-sitewide-promo .fp-bar-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.fp-sitewide-promo .fp-bar-track {
  height: 14px;
  background: #000;
  border: 2px solid #fff;
  border-radius: 4px;
  overflow: hidden;
}

.fp-sitewide-promo .fp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff0000 0%, #c00 100%);
  border-radius: 4px 0 0 4px;
  transition: width 600ms ease-out;
}

.fp-sitewide-promo .fp-bar-end-marker {
  /* Show the GOAL: tag overlay on the loud bar. */
  display: block;
}

.fp-sitewide-promo .fp-bar-dates {
  display: flex;
  gap: 1.25rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.4rem;
}

.fp-sitewide-promo .fp-bar-date-key {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  color: var(--fp-gold, #f8c000);
}

.fp-sitewide-promo .fp-bar-status {
  font-size: 0.75rem;
  color: var(--fp-gold, #f8c000);
  margin: 0.35rem 0 0;
  font-weight: 700;
}

/* ── Conversion row: two CTAs, vertically stacked, on the right ── */
.fp-sitewide-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: stretch;
  min-width: 180px;
}

.fp-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 80ms ease-out, background-color 120ms ease-out, color 120ms ease-out;
}

.fp-banner-cta:hover {
  transform: translateY(-1px);
}

.fp-banner-cta:focus-visible {
  outline: 3px solid var(--fp-gold, #f8c000);
  outline-offset: 2px;
}

/* Primary CTA — "$1 buy now Founding Pitcher". Loud, high-contrast,
   matches the infomercial palette: red field, gold bevel, white
   text. The primary CTA must always be visually dominant so the
   conversion surface is unmistakable. */
.fp-banner-cta--primary {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--fp-red, #c40000);
  color: #ffffff;
  border-color: var(--fp-gold, #f8c000);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 0 #000, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fp-banner-cta--primary:hover {
  background: #a00000;
  color: var(--fp-gold, #f8c000);
}

.fp-banner-cta--primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #000;
}

/* Secondary CTA — "Learn more". Quieter, ghost button. Always
   stacks below the primary CTA. */
.fp-banner-cta--secondary {
  background: var(--hp-surface, #fff);
  color: var(--hp-text, #1f1b16);
  border-color: var(--hp-border, #d4c5a9);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.fp-banner-cta--secondary:hover {
  background: var(--hp-surface, #fff);
  border-color: var(--hp-text, #1f1b16);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Mobile rhythm (< 720 px) — collapse the two-row grid to a
   single column. Seal + infobar stack first, then the bar takes
   the full width, then the two CTAs stack full-width below. */
@media (max-width: 720px) {
  .fp-sitewide-top {
    flex-wrap: wrap;
  }
  .fp-sitewide-seal {
    width: 48px;
    height: 36px;
  }
  .fp-sitewide-promo .fp-infobar-text {
    white-space: normal;
    font-size: 0.75rem;
  }
  .fp-sitewide-main {
    grid-template-columns: 1fr;
  }
  .fp-sitewide-cta-row {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .fp-banner-cta {
    flex: 1 1 100%;
    text-align: center;
  }
  .fp-sitewide-promo .fp-bar-dates {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ── Home-page override ───────────────────────────────────────────
   The home page also stacks the decorative rotated "As seen on"
   seal from `fp-infomercial-chrome.njk` above this slot; that
   decorative seal is NOT styled here — it carries its own loud
   treatment. (The previous revision put these "loud inner"
   styles behind `.hp-system-home` / `.fp-demand-test-page` /
   `.fp-demand-test-flow` page-class overrides, but the slot is
   a SIBLING of <main>, not a descendant, so those selectors
   never fired. The slot's loud inner styling is now the base
   behaviour of `.fp-sitewide-promo` and applies everywhere.) */

