/**
 * Homepage (Index) Page Specific Styles
 */

/* Cream body for overscroll area (above nav) */
body {
  background: #FDFBF7;
}

/* Standardize section spacing on homepage */
.section,
.product-showcase-section,
.pillars-section,
.steps-section,
.scam-tabs-section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section,
  .product-showcase-section,
  .pillars-section,
  .steps-section,
  .scam-tabs-section {
    padding: 60px 0;
  }
}

/* B2B Announcement Bar */
.announcement-bar {
  background: #1e293b;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
}

.announcement-bar a {
  color: #60a5fa;
  font-weight: 600;
  margin-left: 8px;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(90deg, var(--color-indigo-600) 0%, var(--color-blue-600) 100%);
  padding: 10px 16px;
  text-align: center;
}
.announcement-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.announcement-banner a:hover {
  opacity: 0.9;
}
.announcement-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.announcement-banner svg {
  flex-shrink: 0;
}

/* ===== MODERN SAAS DESIGN SYSTEM ===== */

/* Modern SaaS Colors */
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #10B981;
  --color-secondary-dark: #059669;
  --color-accent: #F59E0B;
  --color-accent-dark: #D97706;

  --color-surface: #F8FAFC;
  --color-surface-dark: #F1F5F9;
  --color-text-primary: #0F172A;
  --color-text-secondary: #64748B;
  --color-border: #E2E8F0;

  /* Premium Shadows - Blue tinted for SaaS feel */
  --shadow-saas: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
  --shadow-saas-lg: 0 30px 60px -12px rgba(37, 99, 235, 0.2);
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 40px -12px rgba(37, 99, 235, 0.15);

  /* Modern Font */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Section title classes now in common.css for cross-page consistency */

/* Section backgrounds */
.section-white,
.section-cream {
}

/* Product showcase */
.product-showcase-section {
  padding: 20px 24px 80px;
  background: transparent;
}

.product-showcase-section .container {
  max-width: 1400px;
}

/* Product showcase shape styles moved to common.css */

/* Threat carousel (legacy - keeping for reference) */
.threat-carousel-section {
}

/* Scam tabs styles moved to common.css */

/* Implementation steps - styles moved to common.css for sitewide use */

/* ===== COLOR-CODED INDUSTRY CARDS ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  padding: 32px;
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Color-coded card accents */
.industry-card[href*="credit-unions"] { border-top: 3px solid var(--color-primary); }
.industry-card[href*="police"] { border-top: 3px solid #6366f1; }
.industry-card[href*="schools"] { border-top: 3px solid var(--color-secondary); }
.industry-card[href*="employers"] { border-top: 3px solid var(--color-accent); }
.industry-card[href*="associations"] { border-top: 3px solid #8b5cf6; }
.industry-card[href*="government"] { border-top: 3px solid #0d9488; }

/* Color-matched hover glows - reinforces accent color */
.industry-card[href*="credit-unions"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(37, 99, 235, 0.1); }
.industry-card[href*="police"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(99, 102, 241, 0.1); }
.industry-card[href*="schools"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(16, 185, 129, 0.1); }
.industry-card[href*="employers"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(245, 158, 11, 0.1); }
.industry-card[href*="associations"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(139, 92, 246, 0.1); }
.industry-card[href*="government"]:hover { box-shadow: var(--shadow-card-hover), 0 0 40px rgba(13, 148, 136, 0.1); }

.industry-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* Color-coded icon backgrounds */
.industry-card[href*="credit-unions"] .industry-card-icon { background: #dbeafe; color: var(--color-primary); }
.industry-card[href*="police"] .industry-card-icon { background: #e0e7ff; color: #6366f1; }
.industry-card[href*="schools"] .industry-card-icon { background: #d1fae5; color: var(--color-secondary); }
.industry-card[href*="employers"] .industry-card-icon { background: #fef3c7; color: var(--color-accent-dark); }
.industry-card[href*="associations"] .industry-card-icon { background: #ede9fe; color: #8b5cf6; }
.industry-card[href*="government"] .industry-card-icon { background: #ccfbf1; color: #0d9488; }

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-card-action {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.industry-card:hover .industry-card-action {
  gap: 10px;
}

/* ===== MODERN TIMELINE STEPS ===== */
.steps-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .steps-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
  }
}

/* Connecting line on desktop */
.steps-editorial::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 0;
  border-radius: 1px;
}

@media (max-width: 900px) {
  .steps-editorial::before {
    display: none;
  }
}

.step-editorial {
  position: relative;
  background: var(--color-white);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.step-watermark {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-editorial:nth-child(2) .step-watermark {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6366f1 100%);
}

.step-editorial:nth-child(3) .step-watermark {
  background: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (max-width: 900px) {
  .step-watermark {
    font-size: 0.875rem;
    top: -18px;
  }
}

.step-dot {
  display: none;
}

.step-editorial h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.step-editorial p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== THREE PILLARS SECTION ===== */
.pillars-section {
  padding-left: 24px;
  padding-right: 24px;
  background: transparent;
}

.pillars-section .container {
  max-width: 1400px;
}

/* Accordion icon colors for pillars */
.ew-accordion-icon-green {
  background: #10b981;
}

.ew-accordion-icon-purple {
  background: #8b5cf6;
}


/* ===== WHO WE SERVE SECTION (Index page overrides) ===== */
#who-we-serve {
  padding: 80px 24px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left side - Mockups */
.pillars-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mockup Container - Fixed size, centers content */
.pillars-mockup-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  width: 460px;
  height: 528px;
}

/* Mockup Panels - show/hide */
.pillars-mockup {
  display: none;
  position: relative;
  z-index: 1;
}

.pillars-mockup.active {
  display: block;
  animation: pillars-fade-in 0.3s ease;
}

/* Color-matched angled shapes behind each mockup */
.pillars-mockup::before {
  content: '';
  position: absolute;
  width: 483px;
  height: 555px;
  border-radius: 26px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: rotate(-4deg);
  top: -13px;
  left: -11px;
  z-index: -1;
  pointer-events: none;
}

/* Blue shape for Scam Checks */
.pillars-mockup[data-panel="checks"]::before {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9) 0%, rgba(224, 231, 255, 0.7) 100%);
}

/* Green shape for Education */
.pillars-mockup[data-panel="education"]::before {
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.9) 0%, rgba(167, 243, 208, 0.7) 100%);
}

/* Purple shape for Support */
.pillars-mockup[data-panel="recovery"]::before {
  background: linear-gradient(135deg, rgba(237, 233, 254, 0.9) 0%, rgba(221, 214, 254, 0.7) 100%);
}

/* Color-matched glows behind active mockups - reinforces pillar selection */
.pillars-mockup.active[data-panel="checks"] {
  filter: drop-shadow(0 0 60px rgba(37, 99, 235, 0.15));
}

.pillars-mockup.active[data-panel="education"] {
  filter: drop-shadow(0 0 60px rgba(16, 185, 129, 0.15));
}

.pillars-mockup.active[data-panel="recovery"] {
  filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.15));
}

/* All mockups must be exactly 460x528 */
.pillars-mockup .chat-mockup,
.pillars-mockup .alert-mockup,
.pillars-mockup .check-mockup {
  width: 460px;
  height: 528px;
  max-width: none;
}

/* Alert mockup styled to fit 460x528 */
.pillars-mockup .alert-mockup {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillars-mockup .alert-mockup .alert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fe 100%);
  border-bottom: 1px solid #e2e8f0;
}

.pillars-mockup .alert-mockup .alert-icon {
  width: 40px;
  height: 40px;
  background: #3089d9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.pillars-mockup .alert-mockup .alert-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillars-mockup .alert-mockup .alert-date {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillars-mockup .alert-mockup .alert-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.pillars-mockup .alert-mockup .alert-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f8fafc;
}

.pillars-mockup .alert-mockup .alert-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-mockup .alert-mockup .alert-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.pillars-mockup .alert-mockup .alert-text {
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.pillars-mockup .alert-mockup .alert-text.short {
  width: 70%;
}

.pillars-mockup .alert-mockup .alert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-mockup .alert-mockup .alert-list-item {
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  margin-left: 14px;
  position: relative;
}

.pillars-mockup .alert-mockup .alert-list-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #94a3b8;
  border-radius: 50%;
}

.pillars-mockup .alert-mockup .alert-list-item.short {
  width: 60%;
}

.pillars-mockup .alert-mockup .alert-warning {
  background: rgba(255, 179, 8, 0.1);
  border-left: 3px solid #ffb308;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-mockup .alert-mockup .alert-warning .alert-label {
  color: #d97706;
}

.pillars-mockup .alert-mockup .alert-warning .alert-list-item {
  background: rgba(180, 120, 0, 0.12);
}

.pillars-mockup .alert-mockup .alert-warning .alert-list-item::before {
  background: #d97706;
}

.pillars-mockup .alert-mockup .alert-protect {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid #22c55e;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-mockup .alert-mockup .alert-protect .alert-label {
  color: #16a34a;
}

.pillars-mockup .alert-mockup .alert-protect .alert-list-item {
  background: rgba(22, 163, 74, 0.15);
}

.pillars-mockup .alert-mockup .alert-protect .alert-list-item::before {
  background: #16a34a;
}

/* Alert mockup animation */
.pillars-mockup .alert-mockup.animate-sections .alert-body > *:nth-child(1),
.pillars-mockup .alert-mockup.animate-sections .alert-body > *:nth-child(2),
.pillars-mockup .alert-mockup.animate-sections .alert-body > *:nth-child(3),
.pillars-mockup .alert-mockup.animate-sections .alert-body > *:nth-child(4) {
  opacity: 0;
}

.pillars-mockup .alert-mockup.animate-sections.animated .alert-body > *:nth-child(1) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 0s;
}

.pillars-mockup .alert-mockup.animate-sections.animated .alert-body > *:nth-child(2) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 0.4s;
}

.pillars-mockup .alert-mockup.animate-sections.animated .alert-body > *:nth-child(3) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 0.8s;
}

.pillars-mockup .alert-mockup.animate-sections.animated .alert-body > *:nth-child(4) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 1.2s;
}

@keyframes pillars-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scam Check mockup - light theme with header */
.pillars-mockup .check-mockup {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillars-mockup .check-mockup .check-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
}

.pillars-mockup .check-mockup .check-header-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.pillars-mockup .check-mockup .check-header-title {
  font-size: 16px;
  font-weight: 600;
}

.pillars-mockup .check-mockup .check-media {
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.pillars-mockup .check-mockup .check-media-inner {
  background: transparent;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.pillars-mockup .check-mockup .check-email-header {
  background: #f1f5f9;
  padding: 8px 12px;
  border-bottom: 1px solid #e2e8f0;
}

.pillars-mockup .check-mockup .check-email-from {
  font-size: 10px;
  color: #64748b;
}

.pillars-mockup .check-mockup .check-email-subject {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
}

.pillars-mockup .check-mockup .check-email-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pillars-mockup .check-mockup .check-email-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.pillars-mockup .check-mockup .check-email-line.short {
  width: 60%;
}

.pillars-mockup .check-mockup .check-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
}

.pillars-mockup .check-mockup .check-section {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.pillars-mockup .check-mockup .check-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.pillars-mockup .check-mockup .check-section-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillars-mockup .check-mockup .check-section-icon.found {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.pillars-mockup .check-mockup .check-section-icon.respond {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.pillars-mockup .check-mockup .check-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  flex: 1;
}

.pillars-mockup .check-mockup .check-section-count {
  width: 22px;
  height: 22px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.pillars-mockup .check-mockup .check-section-content {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-mockup .check-mockup .check-finding {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #334155;
  line-height: 1.4;
}

.pillars-mockup .check-mockup .check-finding::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #94a3b8;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Check mockup animation */
.pillars-mockup .check-mockup.animate-sections .check-body > *:nth-child(1),
.pillars-mockup .check-mockup.animate-sections .check-body > *:nth-child(2) {
  opacity: 0;
}

.pillars-mockup .check-mockup.animate-sections.animated .check-body > *:nth-child(1) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 0.3s;
}

.pillars-mockup .check-mockup.animate-sections.animated .check-body > *:nth-child(2) {
  animation: pillars-fade-in 0.4s ease-out forwards;
  animation-delay: 0.7s;
}

/* Right side - Content */
.pillars-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillars-header p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pillar-item {
  display: flex;
  gap: 24px;
  cursor: pointer;
  border-radius: 12px;
  padding: 16px;
  margin: -16px;
  transition: background 0.2s ease;
}

/* Active backgrounds and glows match icon colors */
.pillar-item:has(.pillar-icon-blue).active {
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.12);
}

.pillar-item:has(.pillar-icon-green).active {
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.12);
}

.pillar-item:has(.pillar-icon-purple).active {
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.12);
}

.pillar-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
}

.pillar-icon-blue {
  background: #dbeafe;
}

.pillar-icon-blue svg {
  color: #2563eb;
}

.pillar-item:hover .pillar-icon-blue,
.pillar-item.active .pillar-icon-blue {
  background: #2563eb;
}

.pillar-item:hover .pillar-icon-blue svg,
.pillar-item.active .pillar-icon-blue svg {
  color: white;
}

.pillar-icon-green {
  background: #d1fae5;
}

.pillar-icon-green svg {
  color: #10b981;
}

.pillar-item:hover .pillar-icon-green,
.pillar-item.active .pillar-icon-green {
  background: #10b981;
}

.pillar-item:hover .pillar-icon-green svg,
.pillar-item.active .pillar-icon-green svg {
  color: white;
}

.pillar-icon-purple {
  background: #ede9fe;
}

.pillar-icon-purple svg {
  color: #8b5cf6;
}

.pillar-item:hover .pillar-icon-purple,
.pillar-item.active .pillar-icon-purple {
  background: #8b5cf6;
}

.pillar-item:hover .pillar-icon-purple svg,
.pillar-item.active .pillar-icon-purple svg {
  color: white;
}

.pillar-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillars-visual {
    display: none;
  }

  .pillars-mockup-container {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
  }

  .pillars-mockup::before {
    display: none;
  }

  .pillars-mockup .chat-mockup,
  .pillars-mockup .alert-mockup,
  .pillars-mockup .check-mockup {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .pillars-section {
    padding-left: 0;
    padding-right: 0;
  }

  .pillars-grid {
    gap: 32px;
  }

  /* pillars header uses section-title/section-description from common.css */

  .pillars-list {
    gap: 24px;
  }

  .pillar-item {
    gap: 14px;
    padding: 0;
    margin: 0;
    border-radius: 0;
    cursor: default;
    pointer-events: none;
    background: transparent !important;
    box-shadow: none !important;
  }

  .pillar-item.active {
    background: transparent !important;
    box-shadow: none !important;
  }

  .pillar-icon {
    width: 44px;
    height: 44px;
  }

  .pillar-content h3 {
    font-size: 1rem;
  }

  .pillar-content p {
    font-size: 0.875rem;
  }
}

/* ===== INDUSTRY BADGES (Compact Row) ===== */
.industry-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.industry-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.industry-badge:hover {
  transform: translateY(-4px);
}

.industry-badge-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease;
}

.industry-badge-icon svg {
  width: 44px;
  height: 44px;
  stroke: white;
  stroke-width: 1.5;
}

.industry-badge:hover .industry-badge-icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.industry-badge-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 90px;
}

/* Industry badge colors */
.industry-badge-blue .industry-badge-icon {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.industry-badge-indigo .industry-badge-icon {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.industry-badge-green .industry-badge-icon {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.industry-badge-amber .industry-badge-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.industry-badge-purple .industry-badge-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.industry-badge-teal .industry-badge-icon {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.industry-badge-rose .industry-badge-icon {
  background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%);
}

/* ===== INDUSTRY CARDS ===== */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.industry-card {
  background: transparent;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.industry-card:hover {
  box-shadow: var(--shadow-layered);
  transform: translateY(-2px);
}

/* Color-coded hover borders */
.industry-card[data-color="green"]:hover { border-color: var(--color-mint-500); }
.industry-card[data-color="blue"]:hover { border-color: var(--color-blue-500); }
.industry-card[data-color="indigo"]:hover { border-color: var(--color-indigo-500); }
.industry-card[data-color="purple"]:hover { border-color: var(--color-purple-500); }
.industry-card[data-color="teal"]:hover { border-color: var(--color-teal-500); }
.industry-card[data-color="rose"]:hover { border-color: #e11d48; }

/* Rounded-square icon containers */
.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon background colors (subtle tint) */
.industry-card[data-color="green"] .industry-card-icon { background: var(--color-mint-100); }
.industry-card[data-color="blue"] .industry-card-icon { background: var(--color-blue-100); }
.industry-card[data-color="indigo"] .industry-card-icon { background: var(--color-indigo-100); }
.industry-card[data-color="purple"] .industry-card-icon { background: var(--color-purple-100); }
.industry-card[data-color="teal"] .industry-card-icon { background: var(--color-teal-100); }
.industry-card[data-color="rose"] .industry-card-icon { background: #ffe4e6; }

.industry-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}

/* Icon stroke colors */
.industry-card[data-color="green"] .industry-card-icon svg { stroke: var(--color-mint-600); }
.industry-card[data-color="blue"] .industry-card-icon svg { stroke: var(--color-blue-600); }
.industry-card[data-color="indigo"] .industry-card-icon svg { stroke: var(--color-indigo-600); }
.industry-card[data-color="purple"] .industry-card-icon svg { stroke: var(--color-purple-600); }
.industry-card[data-color="teal"] .industry-card-icon svg { stroke: var(--color-teal-600); }
.industry-card[data-color="rose"] .industry-card-icon svg { stroke: #e11d48; }

.industry-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin: 0;
}

.industry-card-desc {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin: 0;
  line-height: 1.5;
}

/* Industry cards - responsive */
@media (max-width: 768px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .industry-cards {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 20px;
  }
}

/* ===== WHO WE SERVE - MONDAY STYLE INFO CARDS ===== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.serve-card {
  padding: 32px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Brand header with icon */
.serve-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.serve-brand svg {
  flex-shrink: 0;
}

.serve-brand span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-color);
}

/* Card title - large headline */
.serve-title {
  font-size: 1.375rem;
  line-height: 1.3;
  color: #1e293b;
  margin: 0 0 12px 0;
  font-weight: 500;
}

/* Card description */
.serve-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  flex: 1;
}

/* Theme colors - logical colors based on organization type */
.serve-card.theme-blue {
  /* Credit Unions: Green for money/financial */
  background: #d1fae5;
  --brand-color: #047857;
}
.serve-card.theme-navy {
  /* Police: Blue for authority/law enforcement */
  background: #dbeafe;
  --brand-color: #1d4ed8;
}
.serve-card.theme-green {
  /* Universities: Purple for academic/scholarly */
  background: #ede9fe;
  --brand-color: #7c3aed;
}
.serve-card.theme-slate {
  /* Government: Slate gray for formal/institutional */
  background: #e2e8f0;
  --brand-color: #475569;
}
.serve-card.theme-deepblue {
  /* Associations: Orange for community/warmth */
  background: #ffedd5;
  --brand-color: #c2410c;
}
.serve-card.theme-teal {
  /* EAP: Pink/coral for wellness/care */
  background: #fce7f3;
  --brand-color: #be185d;
}

/* Responsive */
@media (max-width: 991px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .serve-card {
    padding: 24px;
  }

  .serve-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .industry-badges {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }

  .industry-badge-icon {
    width: 60px;
    height: 60px;
  }

  .industry-badge-icon svg {
    width: 28px;
    height: 28px;
  }

  .industry-badge-label {
    font-size: 0.875rem;
  }

  /* Center all text content on mobile */
  .section-title-modern,
  .section-subtitle-modern,
  .section-title-editorial,
  .section-subtitle-editorial,
  .hero-title,
  .hero-description,
  .hero-content h1,
  .hero-content p,
  .pillars-header h2,
  .pillars-header p {
    text-align: center !important;
  }

  .section-subtitle-modern,
  .section-subtitle-editorial {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== MODERN SECTION HEADER ===== */
.section-header-editorial {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .section-header-editorial {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header-editorial .section-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.section-header-editorial .section-action:hover {
  color: var(--color-primary-dark);
}

.section-header-editorial .section-action svg {
  transition: transform 0.2s ease;
}

.section-header-editorial .section-action:hover svg {
  transform: translateX(4px);
}

/* ===== CONTACT SECTION WRAPPER ===== */
#contact {
  background: linear-gradient(180deg, white 0%, #f8fafc 100%);
  position: relative;
  padding-top: 60px;
}

/* CTA editorial and form card styles are in common.css */

/* ===== MODERN PRODUCT SHOWCASE ===== */
.product-showcase-editorial {
  position: relative;
}

.product-frame {
  background: var(--color-white);
  padding: 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-saas);
  transition: all 0.4s ease;
  border: 1px solid var(--color-border);
  position: relative;
}

.product-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--color-surface);
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding-left: 16px;
}

.product-frame::after {
  content: '● ● ●';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 4px;
  color: #cbd5e1;
}

.product-frame .product-screenshot {
  margin-top: 32px;
  border-radius: 12px;
}

/* ===== MODERN SCAM ANALYSIS ===== */
.scam-types-section {
}

.scam-example-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.evidence-bridge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

/* ===== MODERN FOOTER ===== */
.footer-modern {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.footer-tagline {
  color: white;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  color: white;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,0.08);
}

.footer-copyright {
  color: white;
  font-size: 0.8125rem;
}

/* Fork-in-the-road Hero CTAs */
.hero-fork-ctas {
  margin-top: var(--space-5);
}
.fork-cta-row {
  display: flex;
  gap: var(--space-4);
}
.fork-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-gray-900);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.fork-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.fork-cta.fork-cta-police:hover {
  border-color: var(--color-blue-400);
}
.fork-cta.fork-cta-cu:hover {
  border-color: var(--color-mint-400);
}
.fork-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fork-cta-icon.police {
  background: var(--color-blue-100);
}
.fork-cta-icon.police svg {
  color: var(--color-blue-600);
}
.fork-cta-icon.credit-union {
  background: var(--color-mint-100);
}
.fork-cta-icon.credit-union svg {
  color: var(--color-mint-600);
}
.fork-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fork-cta-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
}
.fork-cta-sublabel {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}
.fork-cta-arrow {
  color: var(--color-gray-400);
  transition: transform 0.2s ease;
  margin-left: 8px;
}
.fork-cta:hover .fork-cta-arrow {
  transform: translateX(3px);
}
.fork-cta.fork-cta-police:hover .fork-cta-arrow {
  color: var(--color-blue-600);
}
.fork-cta.fork-cta-cu:hover .fork-cta-arrow {
  color: var(--color-mint-600);
}

/* Who We Serve Cards */
.serve-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .serve-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .serve-cards-grid {
    grid-template-columns: 1fr;
  }
  .fork-cta-row {
    flex-direction: column;
    gap: var(--space-3);
  }
}
@media (max-width: 480px) {
  .fork-cta {
    padding: 14px 18px;
  }
  .fork-cta-icon {
    width: 40px;
    height: 40px;
  }
}
.serve-card {
  background: transparent;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--color-gray-100);
  text-align: left;
}
.serve-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.serve-card-icon.police {
  background: var(--color-blue-100);
}
.serve-card-icon.police svg {
  color: var(--color-blue-600);
}
.serve-card-icon.credit-union {
  background: var(--color-mint-100);
}
.serve-card-icon.credit-union svg {
  color: var(--color-mint-600);
}
.serve-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}
.serve-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.serve-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-blue-600);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.serve-card-link:hover {
  gap: var(--space-3);
}

/* Content Engine Section */
.content-engine-section {
}
.content-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto var(--space-10);
}
@media (max-width: 900px) {
  .content-engine-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.content-card {
  background: transparent;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--color-gray-100);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-card-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-500) 0%, var(--color-blue-600) 100%);
  color: white;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: 0 4px 12px rgba(39, 131, 207, 0.3);
}
.content-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--color-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.content-card-icon svg {
  color: var(--color-blue-600);
  width: 32px;
  height: 32px;
}
.content-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-3);
}
.content-card p {
  color: var(--color-gray-600);
  line-height: 1.7;
  font-size: var(--text-base);
}
.content-engine-pitch {
  text-align: center;
  color: var(--color-gray-700);
  font-size: var(--text-lg);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: var(--font-medium);
}

/* ===== HOMEPAGE HERO OVERRIDES ===== */
.hero-modern {
  padding-top: 3rem;
}

.theme-blue .hero-modern {
  background: transparent;
}

.hero-modern .hero-container {
  gap: 180px;
}

.hero-visual .dating-mockup {
  width: 450px;
  min-height: 440px;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* ===== HOMEPAGE HERO ===== */
.hero-home {
  padding: 80px 24px 140px;
  background: transparent;
}

.hero-home-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-home-content {
  text-align: center;
  max-width: 950px;
}

.hero-home-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1.2;
  color: #333333;
  text-align: center;
  margin: 0 0 24px 0;
}


.hero-home-title .text-gradient-hero {
  background: linear-gradient(90deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400 !important;
  animation: sentinel-shimmer 5s ease-in-out infinite alternate;
}

.hero-home-description {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(103, 104, 121);
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.hero-home-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Pill buttons */
.hero-home-actions .btn,
.hero-home-actions .btn-theme,
.hero-home-actions .btn-demo {
  border-radius: 9999px;
}

.hero-home-visual {
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0 auto;
}

/* ===== FLOATING SCAM MOCKUPS ===== */
.hero-home {
  position: relative;
  overflow: hidden;
}

.scam-float {
  position: absolute;
  width: 320px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle, #E6E9EF);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.08),
    0 20px 40px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
  opacity: 0.65;
}

.scam-float-left-outer {
  left: -80px;
  top: 70%;
  transform: translateY(-50%) rotate(-8deg) scale(0.95);
  filter: grayscale(70%) brightness(0.92) blur(0.5px);
}

.scam-float-left-inner {
  left: 15%;
  top: 70%;
  transform: translateY(-50%) rotate(-4deg) scale(0.97);
  filter: grayscale(55%) brightness(0.95) blur(0.3px);
}

.scam-float-right-inner {
  right: 15%;
  top: 70%;
  transform: translateY(-50%) rotate(4deg) scale(0.97);
  filter: grayscale(55%) brightness(0.95) blur(0.3px);
}

.scam-float-right-outer {
  right: -80px;
  top: 70%;
  transform: translateY(-50%) rotate(8deg) scale(0.95);
  filter: grayscale(70%) brightness(0.92) blur(0.5px);
}

/* Mockup images - fill container width */
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.dating-mockup-img {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Center dating mockup stays on top */
.hero-home-visual {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

/* Phishing email mockup - Netflix style */
.phishing-mockup {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', -apple-system, sans-serif;
}

.phishing-header {
  padding: 12px 16px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phishing-logo {
  width: 24px;
  height: 24px;
  background: #e50914;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 18px;
}

.phishing-title {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #e5e5e5;
  text-transform: uppercase;
}

.phishing-body {
  padding: 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phishing-subject {
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  margin-bottom: 4px;
}

.phishing-message {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #444;
}

.phishing-link {
  display: inline-block;
  padding: 12px 20px;
  background: #0078d4;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

/* SMS mockup - iOS 19+ style */
/* SMS mockup - iOS style */
.sms-mockup {
  display: flex;
  flex-direction: column;
  background: #f2f2f7;
  border-radius: 12px;
  font-family: -apple-system, 'SF Pro Text', sans-serif;
}

.sms-header {
  padding: 12px 16px;
  background: rgba(242, 242, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.18);
  text-align: center;
}

.sms-contact {
  font-weight: 600;
  font-size: 0.9rem;
  color: #000;
  letter-spacing: -0.2px;
}

.sms-number {
  font-size: 0.75rem;
  color: #8e8e93;
  margin-top: 2px;
}

.sms-body {
  padding: 20px 16px;
  background: #f2f2f7;
}

.sms-bubble {
  background: transparent;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sms-link {
  color: #007aff;
  text-decoration: underline;
  word-break: break-all;
}

.sms-timestamp {
  font-size: 0.7rem;
  color: #8e8e93;
  margin-top: 12px;
  text-align: center;
  letter-spacing: -0.1px;
}

/* Tech support popup mockup - Clean institutional style */
.popup-mockup {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Inter', -apple-system, sans-serif;
}

.popup-browser-bar {
  padding: 10px 14px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #f1f5f9;
}

.popup-browser-dots {
  display: flex;
  gap: 6px;
}

.popup-browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.popup-browser-dots span:nth-child(1) { background: #ff5f56; }
.popup-browser-dots span:nth-child(2) { background: #ffbd2e; }
.popup-browser-dots span:nth-child(3) { background: #27ca40; }

.popup-url {
  flex: 1;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.popup-content {
  background: transparent;
  padding: 32px 24px;
  text-align: center;
}

.popup-warning-icon {
  width: 56px;
  height: 56px;
  background: #fee2e2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.75rem;
}

.popup-alert-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.popup-alert-text {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.5;
}

.popup-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-top: 16px;
  padding: 12px 20px;
  background: #1e40af;
  border-radius: 6px;
  display: block;
  width: 100%;
  letter-spacing: 0.2px;
}

/* Account recovery scam mockup - Meta/Facebook light style */
.investment-mockup {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: -apple-system, 'Segoe UI', sans-serif;
}

.investment-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.investment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.investment-name {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.9rem;
}

.investment-status {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0;
}

.investment-status::before {
  display: none;
}

.investment-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
}

.investment-bubble {
  background: #f0f2f5;
  padding: 12px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #1c1e21;
}

.investment-highlight {
  color: #1877f2;
  font-weight: 500;
  text-decoration: underline;
}

/* Responsive - hide floating mockups on smaller screens */
@media (max-width: 1400px) {
  .scam-float-left-outer,
  .scam-float-right-outer {
    display: none;
  }
}

@media (max-width: 1100px) {
  .scam-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 60px 16px 40px;
  }

  .hero-home-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-home-description {
    font-size: 1.125rem;
  }

  .hero-home-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-home-visual {
    display: none;
  }

  .hero-home-actions .btn,
  .hero-home-actions .btn-demo {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ROTATING HERO TEXT ===== */
.hero-rotating-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1.15;
  color: #333333;
  text-align: center;
  text-transform: none;
  text-decoration: none;
}

.hero-rotating-title .text-gradient-hero {
  background: linear-gradient(90deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400 !important;
  animation: sentinel-shimmer 5s ease-in-out infinite alternate;
}

@keyframes sentinel-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-line-nowrap {
  white-space: nowrap;
}

.hero-rotating-container {
  display: inline-block;
  position: relative;
  min-width: 600px;
  height: 1.2em;
  vertical-align: middle;
  overflow: hidden;
}

.hero-home-title .hero-rotating-text {
  left: 50%;
  transform: translateX(-50%) translateY(0);
}

.hero-home-title .hero-rotating-text.fade-out {
  transform: translateX(-50%) translateY(-100%);
}

.hero-home-title .hero-rotating-text.fade-in {
  transform: translateX(-50%) translateY(100%);
}

.hero-rotating-text {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotating-text.fade-out {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-rotating-text.fade-in {
  opacity: 0;
  transform: translateY(100%);
}

@media (max-width: 768px) {
  .hero-rotating-container {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-rotating-container {
    min-width: 160px;
    height: 1.3em;
  }
}

/* ===== HERO VIDEO ===== */
.hero-video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-video-container {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
  }
}

/* Live badge */
.video-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Show/hide video based on screen size */
.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
  }
  .video-live-badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* ===== VIBRANT HUB HERO ===== */
.hero-hub {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  /* Bold gradient background with warmth */
  background: linear-gradient(135deg, #fefdfb 0%, #fff5f2 30%, #f0f7ff 70%, #eff6ff 100%);
}

/* Large organic blob - top right */
.hero-hub::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
  animation: morph 25s ease-in-out infinite, drift 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Large organic blob - bottom left */
.hero-hub::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.06) 50%, transparent 70%);
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  animation: morph 20s ease-in-out infinite reverse, drift 25s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

/* Community Mosaic Background */
.hero-mosaic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}

/* Organic curved fade overlay - strong fade so faces blend into organic background */
.hero-mosaic::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top-left readability fade */
    linear-gradient(160deg, rgba(254, 253, 251, 0.95) 0%, rgba(254, 253, 251, 0.4) 25%, transparent 45%),
    /* Bottom organic curved fade - STRONG so faces disappear organically */
    radial-gradient(ellipse 150% 50% at 50% 100%, rgba(254, 253, 251, 0.98) 0%, rgba(254, 253, 251, 0.7) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.mosaic-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.mosaic-grid img {
  display: block;
  width: 16.666%;
  height: 25%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-mosaic {
    display: none;
  }
}

.hero-hub-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-hub-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  /* Hide hero animation on tablet/mobile */
  .product-window-container {
    display: none !important;
  }
}

.hero-hub-content {
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

@media (max-width: 1024px) {
  .hero-hub-content {
    margin-top: 0;
  }
}

.hero-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero-hub-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}


@media (max-width: 1024px) {
  .hero-hub-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-hub-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-hub-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-hub-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-hub-cta-primary,
  .hero-hub-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.hero-hub-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.hero-hub-cta-primary:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-hub-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-gray-300, #cbd5e1);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hero-hub-cta-secondary:hover {
  border-color: var(--color-gray-400);
  color: var(--color-text-primary);
}

/* ========================================
   Hero Cards - Overlapping Design
   ======================================== */

.hero-cards-container {
  position: relative;
  width: 450px;
  flex-shrink: 0;
  z-index: 2;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .hero-cards-container {
    display: none;
  }
}

/* Main Scam Card */
.hero-card-main {
  position: relative;
  width: 400px;
  height: 480px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Make mockups fill the card */
.hero-card-main .email-mockup,
.hero-card-main .imessage-mockup,
.hero-card-main .dating-mockup {
  height: 100%;
}

.hero-email-header {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.hero-email-subject {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.hero-email-sender {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-email-avatar {
  width: 40px;
  height: 40px;
  background: #e50914;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.hero-email-sender-info {
  flex: 1;
}

.hero-email-sender-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

.hero-email-sender-address {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.hero-email-time {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.hero-email-body {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-email-body p {
  margin-bottom: 12px;
}

.hero-email-body p:last-child {
  margin-bottom: 0;
}

.hero-email-link {
  color: #2563eb;
  cursor: pointer;
}

/* Scam Slide Animation - Smooth slide up */

.hero-scam-slide {
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero-scam-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  position: relative;
  pointer-events: auto;
}

.hero-scam-slide.exiting {
  opacity: 0;
  transform: translateY(-15px) scale(0.98);
}

/* Analysis items smooth transition */
.hero-analysis-item span {
  transition: opacity 0.4s ease;
}

/* SMS Mockup Styles */
.hero-sms-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}

.hero-sms-back {
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: 300;
}

.hero-sms-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-sms-avatar {
  width: 36px;
  height: 36px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}

.hero-sms-name {
  font-weight: 600;
  color: var(--color-text-primary);
}

.hero-sms-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-sms-time {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.hero-sms-bubble {
  background: #e5e7eb;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  max-width: 90%;
  line-height: 1.5;
}

/* Chat/Romance Mockup Styles */
.hero-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}

.hero-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-chat-info {
  flex: 1;
}

.hero-chat-name {
  font-weight: 600;
  color: var(--color-text-primary);
}

.hero-chat-status {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.hero-chat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-chat-time {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.hero-chat-bubble {
  background: #e5e7eb;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  max-width: 90%;
  line-height: 1.5;
}

/* Floating Analysis Card - Light Theme (matches product) */
.hero-card-analysis {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.08);
  z-index: 2;
  overflow: hidden;
  /* Smooth animation */
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-analysis.exiting {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
}

.hero-analysis-section {
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
}

.hero-analysis-section:last-child {
  border-bottom: none;
}

.hero-analysis-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-icon-search {
  background: #dbeafe;
  color: #2563eb;
}

.hero-section-icon-warning {
  background: #fef3c7;
  color: #d97706;
}

.hero-section-title {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
  flex: 1;
}

.hero-section-count {
  width: 24px;
  height: 24px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.hero-analysis-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 72px;
}

.hero-analysis-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.hero-analysis-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #94a3b8;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ========================================
   Product Demo - Realistic Swipe Animation (Legacy)
   ======================================== */

.product-window-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
}

/* Soft glow behind the demo */
.product-window-container::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.product-window {
  position: relative;
  z-index: 1;
  width: 460px;
  height: 525px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.1);
  transform: scale(0.82);
  transform-origin: center center;
}

/* ===== SCAM EXAMPLES CONTAINER ===== */
.scam-examples {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Each scam example container */
.scam-example {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: opacity;
  pointer-events: none;
}

.scam-example.active {
  opacity: 1;
  pointer-events: auto;
}

.scam-example.exiting {
  opacity: 0;
}

/* The scam mockup itself */
.scam-example .scam-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Dark overlay that dims the scam - lighter so scam stays visible */
.scam-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 5;
}

.scam-example.analyzed .scam-dark-overlay {
  opacity: 1;
}

/* Minimal HUD overlay - compact floating panel */
.analysis-hud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - 40px);
  max-width: 340px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.scam-example.analyzed .analysis-hud {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.hud-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F59E0B;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.hud-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hud-findings {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-finding {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.hud-finding::before {
  content: '•';
  color: rgba(245, 158, 11, 0.7);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Staggered findings animation */
.hud-finding {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hud-finding.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Pulsing warning icon */
.hud-badge svg {
  animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s, height 0.2s;
}

.typing-indicator.visible {
  opacity: 1;
  height: auto;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* Dating app typing indicator variant */
.dating-body .typing-indicator {
  background: transparent;
  border-radius: 20px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* iMessage typing indicator variant */
.imessage-body .typing-indicator {
  background: #e5e5ea;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

/* ===== iMESSAGE MOCKUP ===== */
.imessage-mockup {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.imessage-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.imessage-back {
  position: absolute;
  left: 12px;
  color: #007aff;
  font-size: 1.5rem;
  font-weight: 300;
}

.imessage-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imessage-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3478f6 0%, #0051d5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.imessage-name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #000;
}

.imessage-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  overflow-y: auto;
}

.imessage-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.9375rem;
  line-height: 1.4;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.imessage-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.imessage-bubble.incoming {
  background: #e5e5ea;
  color: #000;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.imessage-bubble.outgoing {
  background: #007aff;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.imessage-time {
  font-size: 0.6875rem;
  color: #8e8e93;
  text-align: center;
  margin: 8px 0;
}

/* iMessage delivered indicator */
.imessage-delivered {
  font-size: 0.6875rem;
  color: #8e8e93;
  text-align: right;
  margin-top: 4px;
}

/* iMessage footer with input field */
.imessage-footer {
  padding: 8px 12px;
  background: #f6f6f6;
  border-top: 1px solid #e5e5e5;
  pointer-events: none;
}

.imessage-input {
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 10px 16px;
}

.imessage-input-placeholder {
  color: #c7c7cc;
  font-size: 0.9375rem;
}

/* ===== DATING APP MOCKUP (Bumble/Tinder style) ===== */
.dating-mockup {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.dating-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: radial-gradient(circle at 30% 50%, #FF9EAA 0%, #FFD0D0 40%, #B0D8FF 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #1e293b;
}

.dating-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dating-avatar svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

.dating-info {
  flex: 1;
}

.dating-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.dating-name::after {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #3b82f6;
  color: white;
  font-size: 11px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dating-match {
  font-size: 0.75rem;
  opacity: 0.9;
}

.dating-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFAF8;
}

.dating-bubble {
  max-width: 85%;
  padding: 14px 18px;
  background: transparent;
  border-radius: 28px;
  border-bottom-left-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  align-self: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.dating-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.dating-bubble.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: white;
  border-radius: 28px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 28px;
  position: relative;
}

.dating-reaction {
  position: absolute;
  bottom: -6px;
  right: 8px;
  font-size: 12px;
  background: transparent;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12), 0 0 8px rgba(255,255,255,0.5);
}

.dating-timestamp {
  font-size: 0.6875rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
}

/* Dating location text */
.dating-location {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Dating avatar image */
.dating-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Dating footer with action buttons */
.dating-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  background: #fafafa;
  border-top: 1px solid #eee;
  pointer-events: none;
}

.dating-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dating-action-x {
  background: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dating-action-x svg {
  width: 28px;
  height: 28px;
  color: #ff6b6b;
}

.dating-action-heart {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  box-shadow: 0 4px 12px rgba(238, 90, 90, 0.35);
}

.dating-action-heart svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* ===== EMAIL MOCKUP ===== */
.email-mockup {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.email-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.email-toolbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #5f6368;
  pointer-events: none;
}

.email-header {
  padding: 20px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.email-subject {
  font-size: 1.25rem;
  font-weight: 400;
  color: #202124;
  margin-bottom: 16px;
}

.email-sender-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-sender-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e50914;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.email-sender-info {
  flex: 1;
}

.email-sender-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #202124;
}

.email-sender-address {
  font-size: 0.75rem;
  color: #5f6368;
}

.email-date {
  font-size: 0.75rem;
  color: #5f6368;
}

.email-body {
  flex: 1;
  padding: 20px 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #202124;
}

.email-body p {
  margin: 0 0 16px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.email-body p.visible {
  opacity: 1;
  transform: translateY(0);
}

.email-link {
  color: #1a73e8;
  text-decoration: underline;
}

/* Email footer with reply field */
.email-footer {
  padding: 12px 16px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
  pointer-events: none;
}

.email-reply-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #5f6368;
  font-size: 0.875rem;
}

.email-reply-field svg {
  color: #5f6368;
  flex-shrink: 0;
}

/* ===== ANALYSIS SLIDE ===== */
.analysis-mockup {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: transparent;
}

.analysis-verdict {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: 16px;
  margin-bottom: 20px;
}

.analysis-verdict-icon {
  width: 48px;
  height: 48px;
  background: #ef4444;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.analysis-verdict-icon svg {
  width: 28px;
  height: 28px;
}

.analysis-verdict-text {
  flex: 1;
}

.analysis-verdict-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 2px;
}

.analysis-verdict-sub {
  font-size: 0.8125rem;
  color: #991b1b;
}

.analysis-flags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.analysis-flag {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #fafafa;
  border-radius: 12px;
  border-left: 3px solid #ef4444;
}

.analysis-flag-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
}

.analysis-flag-text {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #374151;
}

.analysis-recommendation {
  padding: 16px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 16px;
  border: 1px solid #a7f3d0;
  margin-top: auto;
}

.analysis-recommendation-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.analysis-recommendation-label svg {
  width: 14px;
  height: 14px;
}

.analysis-recommendation-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #065f46;
}

/* Mobile */
@media (max-width: 1024px) {
  .product-window {
    width: 100%;
    max-width: 380px;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .product-window {
    max-width: 340px;
    height: 400px;
  }
}


/* Showcase Tabs */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  background: var(--color-gray-200);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.showcase-tab {
  padding: var(--space-3) var(--space-8);
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.showcase-tab:hover {
  color: var(--color-gray-900);
}

.showcase-tab.active {
  background: var(--color-navy-800, #1e3a5f);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.showcase-panels-container {
  width: 100%;
}

.showcase-panel {
  display: none;
}

.showcase-panel.active {
  display: block;
  animation: showcaseFadeIn 0.3s ease;
}

@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   THREAT MARQUEE - "We Help Protect Against Any Scam"
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .threat-card.spotlight {
    animation: none;
  }

  .threat-marquee-track {
    animation: none !important;
  }
}

.threat-marquee-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: clip;
  overflow-y: visible;
  margin-top: 0;
  padding: 40px 0 60px;
  /* No background - cards float on cream */
}

.threat-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.threat-marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, white 0%, rgba(255,255,255,0) 100%);
}

.threat-marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, white 0%, rgba(255,255,255,0) 100%);
}

.threat-marquee {
  overflow-x: clip;
  overflow-y: visible;
}

.threat-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  padding: 40px 0;
  pointer-events: none;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.threat-marquee-track .threat-card {
  flex-shrink: 0;
  width: 300px;
  height: 380px;
  border-radius: 24px;
  padding: 20px;
  /* Premium layered shadows - Apple/Stripe style */
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.06),
    0 24px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  /* Subtle glass effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.threat-marquee-track .threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  z-index: 0;
}

.threat-marquee-track .threat-card > * {
  position: relative;
  z-index: 1;
}

.threat-marquee-track .threat-card:nth-child(odd) {
  transform: translateY(-35px);
}

.threat-marquee-track .threat-card:nth-child(even) {
  transform: translateY(35px);
}

.threat-marquee-track .threat-card:nth-child(3n) {
  border-radius: 32px;
}

.threat-marquee-track .threat-card:nth-child(5n) {
  border-radius: 20px 20px 32px 32px;
}

.threat-marquee-track .threat-card:nth-child(7n) {
  border-radius: 32px 32px 20px 20px;
}

.device-frame {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  /* Premium device shadow */
  box-shadow:
    0 1px 3px rgba(0,0,0,0.06),
    0 4px 12px rgba(0,0,0,0.08),
    0 8px 24px rgba(0,0,0,0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}

.device-header {
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.device-screen {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  font-size: 13px;
}

.card-title {
  font-weight: 600;
  color: #1e5a99;
}

.card-type {
  opacity: 0.6;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.device-iphone .device-header {
  background: #f5f5f5;
  justify-content: space-between;
}

.device-iphone .device-back {
  color: #007AFF;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.device-iphone .device-contact {
  font-weight: 600;
  color: #000;
  flex: 1;
  text-align: center;
}

.device-iphone .device-time {
  color: #4b5563;
  font-size: 11px;
}

.device-iphone .device-screen {
  gap: 6px;
}

.sms-bubble.sms-incoming {
  background: #e5e5ea;
  border-radius: 18px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  align-self: flex-start;
  max-width: 95%;
}

.sms-bubble.sms-incoming strong {
  color: #b91c1c;
  font-weight: 700;
}

.device-email .device-header {
  background: #f8f9fa;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px;
}

.device-email .email-from {
  font-size: 11px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.device-email .email-subject {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.device-email .device-screen {
  justify-content: center;
  align-items: center;
}

.device-email .email-body {
  text-align: center;
}

.device-email .email-amount {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.device-email .email-body p {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: #4b5563;
}

.device-email .email-action {
  font-size: 12px;
}

.device-email .email-body strong {
  color: #dc2626;
}

.device-email .email-prize {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  padding: 20px;
  border-radius: 8px;
  margin: 0 -12px;
}

.device-email .email-prize .prize-amount {
  font-size: 32px;
  font-weight: 900;
  color: #78716c;
  margin-bottom: 8px;
}

.device-email .email-prize p {
  color: #78716c;
}

.device-email .email-prize strong {
  color: #dc2626;
}

.device-browser .device-header {
  background: #dee2e6;
  gap: 10px;
}

.device-browser .browser-dots {
  font-size: 10px;
  letter-spacing: 2px;
  color: #6c757d;
}

.device-browser .browser-url {
  flex: 1;
  background: transparent;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: #4b5563;
  text-align: center;
}

.device-browser .device-screen {
  background: #1a1a2e;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.device-browser .popup-alert {
  background: #fee2e2;
  border: 2px solid #dc2626;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  width: 100%;
}

.device-browser .popup-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.device-browser .popup-title {
  font-size: 14px;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 4px;
  display: block;
}

.device-browser .popup-text {
  font-size: 12px;
  color: #7f1d1d;
  margin-bottom: 10px;
}

.device-browser .popup-cta {
  background: #dc2626;
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

.device-phone .device-header {
  background: #1f2937;
  color: white;
  justify-content: space-between;
  padding: 14px;
}

.device-phone .vm-caller {
  font-weight: 600;
  font-size: 13px;
}

.device-phone .vm-duration {
  font-size: 12px;
  color: #9ca3af;
}

.device-phone .device-screen {
  background: #111827;
  color: white;
  gap: 12px;
}

.device-phone .vm-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.device-phone .vm-play {
  width: 36px;
  height: 36px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.device-phone .vm-waveform {
  flex: 1;
  height: 24px;
  background: linear-gradient(90deg,
    #4b5563 0%, #4b5563 8%, transparent 8%, transparent 10%,
    #6b7280 10%, #6b7280 18%, transparent 18%, transparent 20%,
    #9ca3af 20%, #9ca3af 28%, transparent 28%, transparent 30%,
    #6b7280 30%, #6b7280 38%, transparent 38%, transparent 40%,
    #4b5563 40%, #4b5563 48%, transparent 48%, transparent 50%,
    #6b7280 50%, #6b7280 58%, transparent 58%, transparent 60%,
    #9ca3af 60%, #9ca3af 68%, transparent 68%, transparent 70%,
    #6b7280 70%, #6b7280 78%, transparent 78%, transparent 80%,
    #4b5563 80%, #4b5563 88%, transparent 88%, transparent 90%,
    #6b7280 90%, #6b7280 98%, transparent 98%
  );
  background-size: 100% 100%;
  border-radius: 2px;
}

.device-phone .vm-transcript {
  font-size: 13px;
  font-style: italic;
  color: #d1d5db;
  line-height: 1.5;
}

.device-phone .vm-transcript strong {
  color: #fca5a5;
  font-weight: 700;
  font-style: normal;
}

/* Professional muted palette - soft tints only */
.threat-card-sms {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.threat-card-popup {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%) !important;
}

.threat-card-romance {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%) !important;
}

.threat-card-gov {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%) !important;
}

.threat-card-package {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%) !important;
}

.threat-card-invoice {
  background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 100%) !important;
}

.threat-card-chat {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%) !important;
}

.threat-card-ssa {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%) !important;
}

.threat-card-toll {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%) !important;
}

.threat-card-prize {
  background: linear-gradient(180deg, #f7fee7 0%, #ecfccb 100%) !important;
}

.device-social .device-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  gap: 10px;
  padding: 12px;
}

.device-social .social-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.device-social .social-info {
  flex: 1;
}

.device-social .social-name {
  font-weight: 600;
  font-size: 13px;
}

.device-social .social-status {
  font-size: 10px;
  opacity: 0.85;
}

.device-social .device-screen {
  background: #fdf2f8;
}

.device-social .social-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.device-social .social-msg {
  background: transparent;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.device-social .social-msg strong {
  color: #db2777;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .threat-marquee-wrapper {
    margin-top: var(--space-6);
    padding: 30px 0 40px;
  }

  .threat-marquee-fade {
    width: 40px;
  }

  .threat-marquee-track {
    gap: 16px;
    padding: 20px 0;
    animation-duration: 35s;
  }

  .threat-marquee-track .threat-card {
    width: 260px;
    height: 320px;
    padding: 14px;
    border-radius: 20px;
  }

  .threat-marquee-track .threat-card:nth-child(3n),
  .threat-marquee-track .threat-card:nth-child(5n),
  .threat-marquee-track .threat-card:nth-child(7n) {
    border-radius: 20px;
  }

  .threat-marquee-track .threat-card:nth-child(odd) {
    transform: translateY(-15px);
  }

  .threat-marquee-track .threat-card:nth-child(even) {
    transform: translateY(15px);
  }

  .device-frame {
    border-radius: 10px;
  }

  .device-header {
    padding: 8px 10px;
    font-size: 11px;
  }

  .device-screen {
    padding: 10px;
  }

  .card-label {
    padding-top: 10px;
    font-size: 12px;
  }

  .sms-bubble.sms-incoming {
    font-size: 13px;
    padding: 8px 12px;
  }

  .device-email .email-amount {
    font-size: 28px;
  }

  .device-email .email-prize .prize-amount {
    font-size: 26px;
  }

  .device-phone .vm-transcript {
    font-size: 12px;
  }

  .device-browser .popup-title {
    font-size: 12px;
  }

  .device-browser .popup-cta {
    font-size: 11px;
    padding: 6px 10px;
  }
}
