/* ========================================
   ParentProtectAI — Facebook Ad Landing Page
   Conversion-optimized, mobile-first
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Honeypot field — hidden from humans, visible to bots */
.ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
}

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --green-50: #ecfdf5;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --red-500: #ef4444;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  background: var(--red-500);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-text strong {
  font-weight: 800;
}

/* ========================================
   Nav — minimal for conversion
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { display: flex; align-items: center; filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.25)); }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.03em; line-height: 1; }
.logo-accent { color: var(--blue-600); }
.logo-ai {
  color: var(--blue-600);
  font-weight: 900;
  font-size: 0.7em;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: super;
  margin-left: 1px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: -0.01em;
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

.btn-primary {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
}

.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-block { width: 100%; padding-top: 18px; padding-bottom: 18px; }

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 60px 0 80px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* ========================================
   Dashboard Mockup Background
   ======================================== */
.hero-dashboard {
  display: none;
}

.dash-window {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
  background: rgba(0,0,0,0.02);
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot-red { background: #ef4444; }
.dash-dot-yellow { background: #f59e0b; }
.dash-dot-green { background: #10b981; }

.dash-titlebar-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  margin-left: 8px;
}

.dash-body {
  display: flex;
  min-height: 420px;
}

.dash-sidebar {
  width: 180px;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  flex-shrink: 0;
}

.dash-sidebar-item {
  padding: 9px 18px;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  font-weight: 500;
}

.dash-sidebar-active {
  color: var(--gray-900);
  background: rgba(59,130,246,0.1);
  border-left: 2px solid var(--blue-500);
  font-weight: 700;
}

.dash-main {
  flex: 1;
  padding: 20px;
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 14px;
}

.dash-stat-label {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.dash-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.dash-stat-active {
  color: #10b981;
  font-size: 1.1rem;
}

.dash-stat-change {
  font-size: 0.6rem;
  color: rgba(0,0,0,0.3);
  margin-top: 4px;
}

.dash-stat-good {
  color: rgba(16,185,129,0.7);
}

.dash-alerts {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.dash-alert-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.72rem;
}

.dash-alert:last-child { border-bottom: none; }

.dash-alert-badge {
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.dash-badge-high {
  background: rgba(239,68,68,0.2);
  color: #ef4444;
}

.dash-badge-med {
  background: rgba(245,158,11,0.2);
  color: #f59e0b;
}

.dash-badge-low {
  background: rgba(59,130,246,0.2);
  color: #3b82f6;
}

.dash-alert-text {
  color: rgba(0,0,0,0.5);
  flex: 1;
}

.dash-alert-time {
  color: rgba(0,0,0,0.25);
  flex-shrink: 0;
  font-size: 0.65rem;
}

.hero .container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-dashboard-inline {
  max-width: 780px;
  margin: 0 auto 32px;
}

.hero-dashboard-inline .dash-window {
  border: 1px solid var(--gray-200);
  background: white;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.03);
}

.hero-dashboard-inline .dash-titlebar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.hero-dashboard-inline .dash-titlebar-text {
  color: var(--gray-600);
}

.hero-dashboard-inline .dash-sidebar {
  border-right: 1px solid var(--gray-200);
}

.hero-dashboard-inline .dash-sidebar-item {
  color: var(--gray-500);
}

.hero-dashboard-inline .dash-sidebar-active {
  color: var(--blue-700);
  background: var(--blue-50);
}

.hero-dashboard-inline .dash-stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.hero-dashboard-inline .dash-stat-label {
  color: var(--gray-500);
}

.hero-dashboard-inline .dash-stat-value {
  color: var(--gray-900);
}

.hero-dashboard-inline .dash-stat-change {
  color: var(--gray-400);
}

.hero-dashboard-inline .dash-stat-good {
  color: #10b981;
}

.hero-dashboard-inline .dash-alerts {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.hero-dashboard-inline .dash-alert-header {
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}

.hero-dashboard-inline .dash-alert {
  border-bottom: 1px solid var(--gray-100);
}

.hero-dashboard-inline .dash-alert-text {
  color: var(--gray-700);
}

.hero-dashboard-inline .dash-alert-time {
  color: var(--gray-400);
}

/* Hero centered layout (no form) */
.hero-content-centered {
  text-align: center;
  max-width: 780px;
}

.hero-content-centered .hero-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  margin-bottom: 20px;
}

.coming-soon-badge-dark {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  margin-bottom: 24px;
}

.coming-soon-pill {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 16px;
  display: inline-block;
}

/* Form Card */
.form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 80px;
  text-align: center;
}

.form-card .quick-form input {
  text-align: left;
}

.form-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  text-align: center;
}

.form-card-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 24px;
}

.quick-form .form-group { margin-bottom: 14px; }

.quick-form input,
.inline-form input,
.final-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-800);
  background: white;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.quick-form input:focus,
.inline-form input:focus,
.final-form input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.quick-form input::placeholder,
.inline-form input::placeholder,
.final-form input::placeholder {
  color: var(--gray-400);
}

.quick-form .btn { margin-top: 4px; }

.form-fine-print {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.form-success { text-align: center; padding: 24px 0; }
.success-check { margin-bottom: 16px; }

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ========================================
   Urgency Bar
   ======================================== */
.urgency-bar {
  background: var(--gray-900);
  padding: 40px 0;
  padding-top: 180px;
  position: relative;
}

.urgency-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0.6) 30%, rgba(17,24,39,0.4) 70%, var(--gray-900) 100%);
  pointer-events: none;
}

.urgency-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.urgency-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2px;
}

.urgency-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.3;
}

/* ========================================
   Sections
   ======================================== */
.section { padding: 80px 0; }
.section-alt {
  background: var(--gray-50);
  padding-top: 200px;
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--gray-900) 0%, rgba(17,24,39,0.6) 30%, rgba(249,250,251,0.4) 70%, var(--gray-50) 100%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-shield {
  flex-shrink: 0;
}

.section-header h2 em {
  font-style: normal;
}


.section-header-red {
  color: var(--red-500) !important;
}

.section-header-blue {
  color: var(--gray-900) !important;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ========================================
   Story / Timeline
   ======================================== */
.story-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.story-section h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.story-timeline {
  text-align: left;
  margin-bottom: 40px;
}

.story-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-left: 3px solid var(--red-500);
  margin-bottom: 0;
}

.story-step p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.story-time {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red-500);
  white-space: nowrap;
  min-width: 64px;
  padding-top: 2px;
}

.story-step-save {
  border-left-color: var(--blue-500);
  background: var(--blue-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 8px;
}

.story-time-save {
  color: var(--blue-500) !important;
  min-width: auto;
}

.story-cta { text-align: center; }

/* ========================================
   Real Stories — Victim Cards
   ======================================== */
.victim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.victim-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 4px solid var(--red-500);
  transition: box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.victim-card:hover {
  box-shadow: var(--shadow-lg);
}

.victim-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.victim-tag-fatal {
  background: var(--red-50);
  color: var(--red-500);
}

.victim-tag-ai {
  background: var(--amber-50);
  color: #b45309;
}

.victim-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.victim-scam-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.victim-card > p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}

.victim-lost {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-500);
  margin-bottom: 12px;
}

.victim-source {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--blue-600);
  margin-top: auto;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.victim-source:hover {
  color: var(--blue-800);
}

/* Victim stat callout */
.victim-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.victim-stat-callout {
  text-align: center;
  color: white;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.victim-stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--red-500);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.victim-stat-text {
  font-size: 1.3rem;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.victim-stat-text strong {
  color: white;
}

.victim-stat-source {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: auto;
  padding-top: 20px;
  text-decoration: none;
  transition: color 0.35s ease;
}

a.victim-stat-source:hover {
  color: var(--gray-300);
}

/* ========================================
   Sources Bar
   ======================================== */
.hero-sources {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.sources-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.sources-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.source-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.35s ease;
}

.source-logo:hover {
  opacity: 0.8;
}

.source-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.source-logo:hover .source-logo-img {
  filter: grayscale(0%);
}

.source-inline-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.7;
}

/* ========================================
   Future Threats Section
   ======================================== */
.section-threats {
  background: var(--gray-900);
  padding: 80px 0;
  padding-top: 200px;
  position: relative;
}

.section-threats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--gray-50) 0%, rgba(249,250,251,0.6) 30%, rgba(17,24,39,0.4) 70%, var(--gray-900) 100%);
  pointer-events: none;
}

.section-threats .section-header h2 {
  color: white;
}

.section-threats .section-header h2.section-header-red {
  color: var(--red-500);
}

.section-threats .section-header p {
  color: var(--gray-400);
}

.section-threats .victim-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.section-threats .victim-card:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.section-threats .victim-card h3 {
  color: white;
}

.section-threats .victim-card > p {
  color: var(--gray-400);
}

.section-threats .victim-scam-type {
  color: var(--gray-500);
}

.section-threats .victim-source {
  color: var(--blue-200);
}

/* Generic dark section */
.section-dark {
  background: var(--gray-900);
  padding: 80px 0;
  padding-top: 200px;
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0.6) 30%, rgba(17,24,39,0.4) 70%, var(--gray-900) 100%);
  pointer-events: none;
}

.section-dark .section-header h2 {
  color: white;
}

.section-dark .section-header h2.section-header-red {
  color: var(--red-500);
}

.section-dark .section-header p {
  color: var(--gray-400);
}

.section-dark .threat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.section-dark .threat-card:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  border-color: rgba(255,255,255,0.2);
}

.section-dark .threat-card h3 {
  color: white;
}

.section-dark .threat-card p {
  color: var(--gray-400);
}

.section-dark .victim-source {
  color: var(--blue-200);
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.threat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.threat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.threat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  margin-bottom: 12px;
}

.threat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.threat-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 10px;
}

.threat-card p strong {
  color: var(--red-500);
  font-size: 0.95rem;
}

.threat-card .victim-source {
  color: var(--blue-600);
  margin-top: auto;
}

.threat-card .victim-source:hover {
  color: var(--blue-800);
}

.threat-cta {
  text-align: center;
  margin-top: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.threat-cta-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.threat-cta-text-red {
  color: var(--red-500);
  font-weight: 700;
}

/* ========================================
   Channel Cards
   ======================================== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s ease;
  text-align: center;
  align-items: center;
}

.channel-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.channel-card-highlight {
}

.channel-emoji {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin: 0 auto 12px;
}

.channel-auto {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: 10px;
}

.auto-exclusive {
  background: var(--blue-100);
  color: var(--blue-700);
}

.channel-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.channel-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   "You Can't Do This Alone" Section
   ======================================== */
.section-alone {
  background: var(--gray-900);
  padding: 80px 0;
}

.section-alone .section-header h2 {
  color: white;
}

.section-alone .section-header h2 em {
  text-decoration-color: var(--red-500);
}

.section-alone .section-header p {
  color: var(--gray-400);
}

.alone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 48px;
}

.alone-cta {
  margin-top: 48px;
}

.alone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s ease;
}

.alone-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.alone-what {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  font-style: italic;
}

.alone-but {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.65;
}

.alone-bottom {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.alone-bottom p {
  font-size: 1.2rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.alone-bottom p strong {
  color: white;
}

.underline-red {
}

/* ========================================
   "How It Works" Section
   ======================================== */
.section-how {
  background: white;
  padding-top: 200px;
  position: relative;
}

.section-how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--gray-900) 0%, rgba(17,24,39,0.6) 30%, rgba(255,255,255,0.4) 70%, #fff 100%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========================================
   Primary Signup Section
   ======================================== */
.section-signup {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  padding: 80px 0;
}

.signup-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.signup-card h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.signup-card > p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.signup-form .form-group {
  margin-bottom: 14px;
}

.signup-form input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-800);
  background: white;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.signup-form input::placeholder {
  color: var(--gray-400);
}

.signup-form .btn {
  margin-top: 4px;
}

/* ========================================
   Mid CTA
   ======================================== */
.section-mid-cta {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  padding: 56px 0;
}

.mid-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.mid-cta-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.inline-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.inline-form input {
  flex: 1;
  border-radius: var(--radius-sm);
}

.inline-form .btn {
  white-space: nowrap;
  padding: 14px 28px;
}

.section-mid-cta .form-fine-print {
  color: rgba(255,255,255,0.6);
}

/* ========================================
   Dashboard Showcase
   ======================================== */
.section-dashboard .dashboard-showcase {
  max-width: 960px;
  margin: 0 auto;
}

.section-dashboard .dash-window {
  border: 1px solid var(--gray-200);
  background: white;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.03);
}

.section-dashboard .dash-titlebar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.section-dashboard .dash-titlebar-text {
  color: var(--gray-600);
}

.section-dashboard .dash-sidebar {
  border-right: 1px solid var(--gray-200);
}

.section-dashboard .dash-sidebar-item {
  color: var(--gray-500);
}

.section-dashboard .dash-sidebar-active {
  color: var(--blue-700);
  background: var(--blue-50);
}

.section-dashboard .dash-stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.section-dashboard .dash-stat-label {
  color: var(--gray-500);
}

.section-dashboard .dash-stat-value {
  color: var(--gray-900);
}

.section-dashboard .dash-stat-change {
  color: var(--gray-400);
}

.section-dashboard .dash-stat-good {
  color: #10b981;
}

.section-dashboard .dash-alerts {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.section-dashboard .dash-alert-header {
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}

.section-dashboard .dash-alert {
  border-bottom: 1px solid var(--gray-100);
}

.section-dashboard .dash-alert-text {
  color: var(--gray-700);
}

.section-dashboard .dash-alert-time {
  color: var(--gray-400);
}

/* ========================================
   Final CTA
   ======================================== */
.section-final {
  background: white;
  padding: 80px 0;
  padding-top: 200px;
  position: relative;
}

.section-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--gray-900) 0%, rgba(17,24,39,0.6) 30%, rgba(255,255,255,0.4) 70%, #fff 100%);
  pointer-events: none;
}

.final-content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.final-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.final-content > p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.final-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.final-form input {
  flex: 1;
  border: 2px solid var(--gray-200);
}

.final-form .btn {
  white-space: nowrap;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: white;
  color: var(--gray-500);
  padding: 32px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-top .logo-text { color: var(--gray-900); font-size: 1.05rem; font-weight: 800; letter-spacing: -0.03em; }

.footer-links-row {
  display: flex;
  gap: 24px;
}

.footer-links-row a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: color 0.35s ease;
}

.footer-links-row a:hover { color: var(--gray-900); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  font-size: 0.8rem;
}

/* ========================================
   Hero Inline Form
   ======================================== */
.hero-form {
  max-width: 520px;
  margin: 32px auto 0;
}

.hero-form-row {
  display: flex;
  gap: 10px;
}

.hero-form input {
  flex: 1;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-800);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  background: white;
}

.hero-form input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.hero-form input::placeholder {
  color: var(--gray-400);
}

.hero-form .btn {
  white-space: nowrap;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.hero-form .form-fine-print {
  margin-top: 12px;
}

.hero-form-success {
  max-width: 520px;
  margin: 0 auto;
}

/* ========================================
   Hero Trust Row
   ======================================== */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
}

.hero-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* ========================================
   Share Prompt (Post-Signup)
   ======================================== */
.share-prompt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.share-prompt-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: white;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.share-btn:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

/* ========================================
   Sticky Mobile CTA Bar
   ======================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: white;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}

.sticky-cta-btn {
  flex-shrink: 0;
}


/* ========================================
   Accessibility — reduced motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sticky-cta-bar { transition: none; }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.25rem; }

  .channels-grid { grid-template-columns: 1fr; }
  .victim-grid { grid-template-columns: 1fr; }
  .threat-grid { grid-template-columns: 1fr; }
  .alone-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-dashboard { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 1.9rem; }

  .hero-dashboard-inline .dash-sidebar { display: none; }
  .hero-dashboard-inline .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-dashboard-inline .dash-alert-time { display: none; }

  .hero-form-row {
    flex-direction: column;
  }

  .hero-form .btn {
    width: 100%;
  }

  .sticky-cta-bar {
    display: block;
  }

  .urgency-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .victim-stat-row { grid-template-columns: 1fr; gap: 0; }
  .victim-stat-number {
    font-size: 3rem;
  }

  .inline-form,
  .final-form {
    flex-direction: column;
  }

  .section { padding: 56px 0; }
  .section-alone { padding: 56px 0; }
  .section-signup { padding: 56px 0; }

  .urgency-bar { padding-top: 100px; }
  .urgency-bar::before { height: 100px; }
  .section-alt { padding-top: 120px; }
  .section-alt::before { height: 120px; }
  .section-threats { padding-top: 120px; }
  .section-threats::before { height: 120px; }
  .section-dark { padding-top: 120px; }
  .section-dark::before { height: 120px; }
  .section-how { padding-top: 120px; }
  .section-how::before { height: 120px; }
  .section-final { padding-top: 120px; }
  .section-final::before { height: 120px; }

  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.65rem; }
  .section-mid-cta { padding: 48px 0; }

  .story-section h2 { font-size: 1.65rem; }

  .signup-card { padding: 36px 28px; }

  .footer-top { flex-direction: column; gap: 16px; }
  .footer-links-row { gap: 16px; }
  .final-trust { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-dashboard-inline .dash-stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-dashboard-inline .dash-stat-card { padding: 10px; }
  .hero-dashboard-inline .dash-stat-value { font-size: 1.2rem; }
  .hero-dashboard-inline .dash-alert { font-size: 0.65rem; padding: 8px 12px; }
  .hero-dashboard-inline .dash-alert-badge { font-size: 0.5rem; }

  .top-bar { font-size: 0.78rem; padding: 8px 0; }
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .form-card { padding: 24px 20px; }
  .section-header h2 { font-size: 1.45rem; }
  .mid-cta-content h2 { font-size: 1.4rem; }
  .final-content h2 { font-size: 1.5rem; }

  .urgency-content { grid-template-columns: 1fr 1fr; }
  .urgency-number { font-size: 1.4rem; }

  .victim-stat-number { font-size: 2.5rem; }
  .victim-stat-text { font-size: 1.05rem; }
  .victim-stat-callout { padding: 28px 20px; }

  .story-step { flex-direction: column; gap: 4px; padding: 12px 16px; }
  .story-time { min-width: auto; }

  .signup-card { padding: 28px 20px; }
  .signup-card h2 { font-size: 1.35rem; }
  .alone-bottom p { font-size: 1rem; }

  .hero-trust-row {
    gap: 8px;
  }

  .hero-trust-sep {
    display: none;
  }

  .share-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .sticky-cta-bar {
    padding: 10px 12px;
  }

  .sticky-cta-text {
    font-size: 0.75rem;
  }
}
