/* Honest Pitches — Site-wide styles */

/* ─── CSS Custom Properties ─────────────────────────────────────────── */
:root {
  --hp-primary: #2563eb;
  --hp-success: #16a34a;
  --hp-warning: #d97706;
  --hp-danger: #dc2626;
  --hp-hype: #f59e0b;
  --hp-reality: #10b981;
  --hp-bg: #f9fafb;
  --hp-surface: #ffffff;
  --hp-border: #e5e7eb;
  --hp-text: #111827;
  --hp-text-muted: #6b7280;
}

/* ─── 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 {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ─── 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-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; text-decoration: none; }

.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(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(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(37,99,235,0.08); 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(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); }
.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; }
.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 WAITLIST — Phase 0-WL
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Waitlist page layout ──────────────────────────────────────── */
.waitlist-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ─── Waitlist hero ────────────────────────────────────────────── */
.wl-hero {
  padding: 3rem 0 2rem;
}
.wl-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wl-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wl-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;
}

.wl-slots-left {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  font-weight: 500;
}

.wl-headline {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.wl-subhead {
  font-size: 1.05rem;
  color: var(--hp-text-muted);
  max-width: 540px;
  margin: 0;
  line-height: 1.65;
}

/* ─── Offer card ────────────────────────────────────────────────── */
.wl-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);
}

.wl-offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.wl-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--hp-primary);
  letter-spacing: -0.04em;
}

.wl-price-label {
  font-size: 1rem;
  color: var(--hp-text-muted);
}

/* ─── Benefits list ─────────────────────────────────────────────── */
.wl-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wl-benefit {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.wl-benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.wl-benefit div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.wl-benefit strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hp-text);
}

.wl-benefit span {
  font-size: 0.825rem;
  color: var(--hp-text-muted);
  line-height: 1.5;
}

/* ─── Checkout form ─────────────────────────────────────────────── */
.wl-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wl-form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wl-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;
}

.wl-input:focus {
  border-color: var(--hp-primary);
}

.wl-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;
}

.wl-btn-primary:hover { opacity: 0.88; }
.wl-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.wl-btn-loading {
  display: inline-block;
  animation: wl-spin 1s linear infinite;
}

@keyframes wl-spin {
  to { transform: rotate(360deg); }
}

.wl-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;
}

.wl-form-fine {
  font-size: 0.75rem;
  color: var(--hp-text-muted);
  margin: 0;
  text-align: center;
}

/* ─── Referred notice ───────────────────────────────────────────── */
.wl-referred-notice {
  padding: 0.625rem 1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1e40af;
  text-align: center;
}

/* ─── Referral explainer ────────────────────────────────────────── */
.wl-referral-explainer {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.wl-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.wl-referral-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wl-ref-step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.wl-ref-step p {
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  margin: 0;
  line-height: 1.5;
}

.wl-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;
}

.wl-ref-arrow {
  font-size: 1.25rem;
  color: var(--hp-text-muted);
  padding-top: 0.5rem;
  flex-shrink: 0;
}

/* ─── Pledge section (waitlist variant) ─────────────────────────── */
.waitlist-page .pledge {
  margin: 1.5rem 0;
}

/* ─── Waitlist footer ───────────────────────────────────────────── */
.wl-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--hp-border);
  font-size: 0.8rem;
  color: var(--hp-text-muted);
}
.wl-footer a { color: var(--hp-text-muted); }

/* ──────────────────────────────────────────────────────────────────
   Broadcast / “As Seen On TV” vibe overrides
   (Overrides the calmer defaults above without rewriting markup.)
   ────────────────────────────────────────────────────────────────── */

.wl-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 3.5rem 0 2.75rem;
}

.wl-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);
}

.wl-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;
}

.wl-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;
}

.wl-stage::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 2px dashed rgba(17, 24, 39, 0.18);
  pointer-events: none;
}

.wl-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);
}

.wl-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;
}

.wl-headline {
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.12),
    0 12px 28px rgba(0,0,0,0.18);
}

.wl-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);
}

.wl-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);
}

.wl-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);
}

.wl-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;
}

.wl-referral-explainer {
  border: 2px solid rgba(17,24,39,0.12);
}

.wl-section-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wl-ref-num {
  background: linear-gradient(180deg, #111827, #0b1020);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

/* Ribbon + live bug */
.wl-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;
}

.wl-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;
}
.wl-livebug span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.wl-livebug .wl-hd { color: #00eaff; }
.wl-livebug .wl-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff2d2d;
  box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.18);
  animation: wl-pulse 1.05s ease-in-out infinite;
}
@keyframes wl-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 520px) {
  .wl-ribbon {
    top: 10px;
    left: -92px;
    padding: 0.5rem 4.6rem;
    font-size: 0.72rem;
  }
  .wl-stage { padding: 1rem; }
  .wl-price-amount { font-size: 2.75rem; }
}

/* ──────────────────────────────────────────────────────────────────
   Waitlist — full “90s infomercial / late-night TV” pass
   ────────────────────────────────────────────────────────────────── */

.waitlist-page.wl-infomercial {
  --wl-gold: #ffff00;
  --wl-orange: #ff6b00;
  --wl-red: #ff0000;
  --wl-teal: #00ffff;
  --wl-purple: #7c3aed;
  --wl-green: #00ff00;
  --wl-tv-black: #000000;
  --wl-blue: #0000ff;

  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--wl-blue);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.waitlist-page.wl-infomercial a {
  color: var(--wl-gold);
  text-decoration: underline;
}

.waitlist-page.wl-infomercial a:hover {
  color: #ffffff;
}

/* Urgent top bar */
.wl-infobar {
  background: var(--wl-red);
  border-bottom: 4px solid var(--wl-gold);
  text-align: center;
  padding: 5px;
}

.wl-infobar-text {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.2rem;
  color: var(--wl-gold);
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.wl-infobar-pulse {
  color: #ffffff;
  animation: wl-infobar-blink 0.5s steps(2, end) infinite;
}

@keyframes wl-infobar-blink {
  50% { opacity: 0; }
}

.waitlist-page.wl-infomercial .wl-hero {
  padding: 2rem 1rem;
  text-align: center;
}

.waitlist-page.wl-infomercial .wl-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Credit cards */
.wl-cc-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.wl-cc {
  background: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: bold;
  color: #000;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  box-shadow: 2px 2px 0 #000;
}
.wl-cc.visa { color: #1a1f71; border-color: #1a1f71; font-style: italic; }
.wl-cc.mc { color: #eb001b; border-color: #eb001b; }
.wl-cc.amex { color: #002663; border-color: #002663; }
.wl-cc.disc { color: #f9a01b; border-color: #f9a01b; }

.wl-phone-number {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--wl-gold);
  text-shadow: 4px 4px 0 #000;
  margin: 10px 0;
  line-height: 1;
}

.wl-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; }
}

.wl-plus-sh {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--wl-gold);
  text-shadow: 2px 2px 0 #000;
  font-weight: bold;
}

.waitlist-page.wl-infomercial .wl-you-get {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--wl-gold);
  text-shadow: 3px 3px 0 #000;
  text-transform: uppercase;
  margin: 20px auto 4px;
  letter-spacing: 0.08em;
}

.waitlist-page.wl-infomercial .wl-you-get + .wl-benefits-list {
  margin-top: 12px;
}

.wl-not-available {
  display: inline-block;
  border: 4px solid var(--wl-red);
  padding: 5px 15px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.5rem;
  color: var(--wl-gold);
  text-shadow: 2px 2px 0 #000;
  margin: 20px 0;
  background: rgba(0,0,0,0.3);
  box-shadow: 4px 4px 0 #000;
}

.wl-product-title {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 5rem;
  color: var(--wl-gold);
  text-shadow: 5px 5px 0 #000;
  text-transform: uppercase;
  margin: 20px 0 10px;
  line-height: 1.1;
}

.wl-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;
}

.wl-subtagline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--wl-gold);
  text-shadow: 2px 2px 0 #000;
  margin: 0;
  line-height: 1.3;
  font-style: italic;
}

.waitlist-page.wl-infomercial .wl-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;
}

.waitlist-page.wl-infomercial .wl-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(--wl-gold);
  background: rgba(0, 0, 0, 0.35);
  text-align: left;
  box-shadow: 4px 4px 0 #000;
}

.waitlist-page.wl-infomercial .wl-agent-note a {
  color: var(--wl-gold);
  font-weight: bold;
}

.waitlist-page.wl-infomercial .wl-story-box {
  margin-top: 40px;
  background: #fff;
  color: #000;
  padding: 20px;
  border: 4px solid var(--wl-gold);
  text-align: left;
  box-shadow: 6px 6px 0 #000;
}

.waitlist-page.wl-infomercial .wl-story-box .wl-section-title {
  margin-top: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.waitlist-page.wl-infomercial .wl-section-twist {
  background: var(--wl-red);
  color: #fff;
  padding: 0 5px;
}

.waitlist-page.wl-infomercial .wl-vent-quote {
  margin: 0 0 16px 0;
  padding: 12px 16px;
  border-left: 6px solid var(--wl-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  background: #f5f5f5;
}

.waitlist-page.wl-infomercial .wl-story-lead {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.waitlist-page.wl-infomercial .wl-versus-label {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 0.04em;
}

.waitlist-page.wl-infomercial .wl-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;
}

.waitlist-page.wl-infomercial .wl-versus-table th,
.waitlist-page.wl-infomercial .wl-versus-table td {
  border: 3px solid #000;
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}

.waitlist-page.wl-infomercial .wl-versus-table thead th {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: #000;
  color: #fff;
}

.waitlist-page.wl-infomercial .wl-versus-table thead th.wl-versus-new {
  background: var(--wl-red);
  color: #fff;
}

.waitlist-page.wl-infomercial .wl-versus-table tbody th {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  background: #f0f0f0;
  width: 22%;
}

.waitlist-page.wl-infomercial .wl-versus-table tbody td.wl-versus-old {
  background: #eee;
}

.waitlist-page.wl-infomercial .wl-versus-table tbody td.wl-versus-new {
  background: #fffde0;
}

.waitlist-page.wl-infomercial .wl-story-kicker {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.waitlist-page.wl-infomercial .wl-faq {
  margin-top: 40px;
  background: #000;
  color: #fff;
  padding: 24px 20px;
  border: 4px solid var(--wl-gold);
  text-align: left;
}

.waitlist-page.wl-infomercial .wl-faq .wl-section-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--wl-gold);
}

.waitlist-page.wl-infomercial .wl-faq-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #333;
}

.waitlist-page.wl-infomercial .wl-faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.waitlist-page.wl-infomercial .wl-faq-q {
  margin: 0 0 6px 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--wl-gold);
}

.waitlist-page.wl-infomercial .wl-faq-a {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

.waitlist-page.wl-infomercial .wl-referral-explainer .wl-ref-num {
  color: #000;
}

@media (max-width: 560px) {
  .waitlist-page.wl-infomercial .wl-versus-table {
    font-size: 0.78rem;
  }

  .waitlist-page.wl-infomercial .wl-versus-table th,
  .waitlist-page.wl-infomercial .wl-versus-table td {
    padding: 6px 8px;
  }

  .waitlist-page.wl-infomercial .wl-versus-table tbody th {
    width: 26%;
  }
}

.wl-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;
}

.waitlist-page.wl-infomercial .wl-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;
}

.wl-as-seen {
  --wl-asotv-red: #e51923;
  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;
}

.wl-as-seen-svg {
  display: block;
  width: 100%;
  height: auto;
}

.wl-as-seen-shape {
  fill: var(--wl-asotv-red);
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linejoin: round;
}

.wl-as-seen-copy {
  fill: #fff;
  font-family: "Arial Black", Impact, "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

/* Font metrics tuned in SVG user units (see index.njk tspans) */

/* Checkout form */
.wl-checkout-form {
  margin-top: 40px;
  background: var(--wl-red);
  padding: 30px;
  border: 6px solid var(--wl-gold);
  box-shadow: 8px 8px 0 #000;
}

.wl-form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.wl-input {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 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);
}

.wl-btn-primary {
  background: var(--wl-gold);
  color: #000;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2.5rem;
  padding: 15px 50px;
  border: 6px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s;
}

.wl-btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #000;
  background: #fff;
}

.wl-btn-primary:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 #000;
}

.wl-form-error {
  color: #fff;
  background: #000;
  padding: 10px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.wl-form-fine {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000;
}

.wl-benefits-list {
  text-align: left;
  margin: 40px auto;
  max-width: 650px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  line-height: 1.4;
  list-style: none;
  padding: 0;
}
.wl-benefits-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
.wl-benefits-list li::before {
  content: "⭐";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wl-gold);
}
.wl-benefits-list li span {
  color: #fff;
}
.wl-benefits-list li strong {
  color: var(--wl-gold);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.waitlist-page.wl-infomercial .wl-footer {
  text-align: center;
  padding: 30px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: #000;
  border-top: 4px solid var(--wl-gold);
}

@media (max-width: 768px) {
  .wl-as-seen {
    position: relative;
    top: 0;
    left: 0;
    margin: 16px auto 0;
    width: min(140px, 52vw);
    transform: none;
  }
  .wl-guarantee-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   WAITLIST SUCCESS PAGE
   ═══════════════════════════════════════════════════════════════════ */

.waitlist-success {
  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 {
  font-size: 3.5rem;
}

.ws-title {
  font-size: 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;
}

/* ─── 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;
}

.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.625rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.15s;
}
.ws-share-btn:hover { opacity: 0.85; text-decoration: none; }

.ws-share-twitter {
  background: #1da1f2;
  color: #fff;
}
.ws-share-facebook {
  background: #1877f2;
  color: #fff;
}

/* ─── Stats ────────────────────────────────────────────────────── */
.ws-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.ws-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.ws-stat-num {
  font-size: 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;
}
