/* ========================================
   AI CONTENT FACTORY — Design System
   Color Palette:
   - Primary BG: #050A14
   - Secondary BG: #0A1021
   - Neon Green: #39FF14
   - Bright Red: #FF3366
   - Electric Blue: #00D4FF
   - Gold: #FFD700
   - Purple: #A855F7
   ======================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #050A14;
  --bg-secondary: #0A1021;
  --bg-card: rgba(10,16,31,0.6);
  --neon: #39FF14;
  --red: #FF3366;
  --cyan: #00D4FF;
  --gold: #FFD700;
  --purple: #A855F7;
  --border: #1e293b;
  --text: #e2e8f0;
  --text-muted: #64748b;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-accent: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  /* Grid pattern */
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---- UTILITY ---- */
.text-neon { color: var(--neon); }
.text-red { color: var(--red); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ---- GRADIENT ORBS ---- */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}
.orb-indigo { width: 400px; height: 400px; background: rgba(99,102,241,0.15); top: -100px; left: -100px; }
.orb-green { width: 350px; height: 350px; background: rgba(57,255,20,0.08); bottom: -80px; right: -80px; }

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.badge-green { background: rgba(57,255,20,0.15); color: var(--neon); border: 1px solid rgba(57,255,20,0.3); }
.badge-red { background: rgba(255,51,102,0.15); color: var(--red); border: 1px solid rgba(255,51,102,0.3); }
.badge-cyan { background: rgba(0,212,255,0.15); color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); }
.badge-gold { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.3); }
.badge-purple { background: rgba(168,85,247,0.15); color: var(--purple); border: 1px solid rgba(168,85,247,0.3); }

.pulse-badge {
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 10px rgba(57,255,20,0.3); }
  50% { box-shadow: 0 0 25px rgba(57,255,20,0.6), 0 0 50px rgba(57,255,20,0.2); }
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--neon);
  color: #000;
}
.btn-primary:hover {
  background: #2ee00f;
  transform: translateY(-2px);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(57,255,20,0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(57,255,20,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}
.btn-xl {
  padding: 20px 48px;
  font-size: 1.1rem;
  min-width: 260px;
  justify-content: center;
}

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.card-glow:hover {
  border-color: rgba(57,255,20,0.4);
  box-shadow: 0 0 30px rgba(57,255,20,0.1);
}
.card-hover-lift:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- GRIDS ---- */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quadrant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---- METRIC CARDS ---- */
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.metric-number {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--neon);
  margin-bottom: 8px;
}
.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.metric-gold .metric-number {
  color: var(--gold);
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5,10,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding: 0 24px;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(5,10,20,0.95);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo i {
  color: var(--neon);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--neon);
}
.nav-cta {
  background: var(--neon) !important;
  color: #000 !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 1px;
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ======== 1. HERO ======== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.hero-logo-icon {
  font-size: 4rem;
  color: var(--neon);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(57,255,20,0.5);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Video Avatar Block */
.hero-video-block {
  margin-bottom: 40px;
}
.video-avatar-container {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(57,255,20,0.3);
  background: rgba(10,16,31,0.8);
  box-shadow: 0 0 40px rgba(57,255,20,0.1);
}
.video-placeholder {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.video-placeholder:hover .video-thumbnail {
  filter: brightness(0.75);
  transform: scale(1.03);
}
.video-placeholder:hover {
  background: rgba(57,255,20,0.05);
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(57,255,20,0.2);
  border: 2px solid var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--neon);
  transition: all 0.3s ease;
  animation: pulsePlay 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.video-play-btn:hover {
  background: rgba(57,255,20,0.3);
  transform: scale(1.1);
}
@keyframes pulsePlay {
  0%, 100% { box-shadow: 0 0 10px rgba(57,255,20,0.3); }
  50% { box-shadow: 0 0 30px rgba(57,255,20,0.5); }
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.video-label i {
  color: var(--neon);
}
.video-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.bounce {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ======== 2. THE ASK ======== */
.the-ask-section {
  background: var(--bg-secondary);
}
.ask-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 60px;
  align-items: start;
}
.ask-amount {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--neon);
  text-shadow: 0 0 30px rgba(57,255,20,0.3);
  margin: 10px 0;
}
.ask-seeking {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ask-quote {
  background: rgba(57,255,20,0.05);
  border-left: 3px solid var(--neon);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}
.ask-quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
}
.ask-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ask-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ask-metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ask-metric-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
}
.ask-contact p {
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ask-contact i {
  color: var(--neon);
  width: 20px;
  margin-right: 8px;
}
.ask-right {
  padding-top: 20px;
}
.chart-container {
  max-width: 350px;
  margin: 0 auto 24px;
}
.chart-container-sm {
  max-width: 100%;
  margin-top: 24px;
}
.funds-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fund-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.fund-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ======== 4. OLD MODEL ======== */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.problem-list {
  margin-top: 24px;
}
.problem-item {
  padding: 12px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,51,102,0.1);
}
.old-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.old-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,51,102,0.05);
  border-radius: 8px;
  border-left: 3px solid var(--red);
}
.old-metric-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}
.old-metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ======== 5. SOLUTION ======== */
.solution-section {
  background: var(--bg-secondary);
}
.solution-tagline {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 750px;
  margin: 16px auto 0;
  text-align: center;
}
.flow-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 30px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
}
.flow-icon {
  font-size: 2rem;
}
.flow-step span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flow-arrow {
  color: var(--neon);
  font-size: 1.2rem;
}

/* ======== 7. COMPARISON TABLE ======== */
.comparison-section {
  background: var(--bg-secondary);
}
.comparison-table-wrapper {
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table thead {
  background: rgba(10,16,31,0.8);
}
.comparison-table th {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.comparison-table tbody tr:hover {
  background: rgba(57,255,20,0.03);
}
.col-old { color: var(--text-muted); }
.col-new { font-weight: 600; }

/* ======== 8. ROI ======== */
.roi-section { background: var(--bg-secondary); }
.roi-results { margin: 48px 0; }
.investment-card {
  text-align: center;
  position: relative;
  padding-top: 50px !important;
}
.invest-step {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--neon);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
}
.invest-amount {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2rem;
  margin: 12px 0;
}

/* ======== 9. TIMELINE ======== */
.timeline-section { background: var(--bg-secondary); }
.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 40px 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-20px);
}
.timeline-item {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 60px;
  height: 60px;
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-final .timeline-icon {
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(57,255,20,0.3);
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.timeline-metrics {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
}

/* ======== 10. MARKET SHIFTS ======== */
.quadrant-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.quadrant-card:hover {
  border-color: rgba(168,85,247,0.4);
  transform: translateY(-4px);
}
.quadrant-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.quadrant-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.quadrant-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ======== 11. WINNERS / LOSERS ======== */
.winners-section { background: var(--bg-secondary); }
.winners-panel, .losers-panel {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.panel-green { border-left: 4px solid var(--neon); }
.panel-red { border-left: 4px solid var(--red); }
.winners-panel h3, .losers-panel h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.winners-panel h3 i { color: var(--gold); }
.losers-panel h3 i { color: var(--red); }
.winners-list, .losers-list {
  list-style: none;
}
.winners-list li, .losers-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
}

/* ======== 12. NICHES TABLE ======== */
.niches-section { background: var(--bg-secondary); }
.niches-table-wrapper {
  overflow-x: auto;
}
.niches-table {
  width: 100%;
  border-collapse: collapse;
}
.niches-table thead {
  background: rgba(10,16,31,0.8);
}
.niches-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.niches-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.niches-table tbody tr:hover {
  background: rgba(168,85,247,0.05);
}
.niche-icon {
  margin-right: 8px;
}

/* ======== 13. EMPATHY / ACCORDION ======== */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s;
}
.accordion-header:hover {
  background: rgba(255,255,255,0.03);
}
.accordion-arrow {
  transition: transform 0.3s;
  color: var(--text-muted);
}
.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--neon);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-body {
  max-height: 1200px;
}
.accordion-body > * {
  padding: 0 24px;
}
.accordion-body > *:last-child {
  padding-bottom: 24px;
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0 24px !important;
}
.empathy-quadrant {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 16px;
}
.empathy-quadrant h4 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--cyan);
}
.empathy-quadrant p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.empathy-jobs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0 24px !important;
}
.empathy-jobs h4 {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.empathy-jobs p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.product-ladder {
  background: rgba(168,85,247,0.05);
  border-radius: 8px;
  padding: 16px 24px !important;
  margin: 0 24px 0 !important;
}
.product-ladder h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--purple);
}
.ladder-items {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ladder-item {
  background: rgba(0,0,0,0.3);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
}
.ladder-metrics {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
}

/* ======== 14. TECH STACK ======== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tech-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.tech-tile:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
}
.tech-free {
  border-color: rgba(57,255,20,0.2);
}
.tech-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.tech-tile h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.tech-tile p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tech-cost {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}

/* ======== 15. CASE STUDIES ======== */
.cases-section { background: var(--bg-secondary); }
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}
.case-card:hover {
  border-color: rgba(57,255,20,0.3);
  transform: translateY(-4px);
}
.case-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.case-industry {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.case-before, .case-after {
  margin-bottom: 16px;
}
.case-before h4, .case-after h4 {
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.case-before ul, .case-after ul {
  list-style: none;
  padding-left: 0;
}
.case-before li, .case-after li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.case-results {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-metric {
  text-align: center;
}
.case-metric span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
}
.case-metric small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ======== 16. FAQ ======== */
.faq-section { background: var(--bg-secondary); }

/* ======== 17. FINAL CTA ======== */
.final-cta-section {
  background: linear-gradient(135deg, rgba(57,255,20,0.05) 0%, var(--bg-primary) 50%, rgba(168,85,247,0.05) 100%);
  text-align: center;
  padding: 120px 0;
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.final-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.final-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2rem;
}
.final-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.final-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.final-contact p {
  color: var(--text-muted);
  margin-bottom: 6px;
}
.final-contact i {
  color: var(--neon);
  margin-right: 8px;
}

/* ======== 18. FOOTER ======== */
.footer {
  background: #020408;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.footer-brand i { color: var(--neon); }
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--neon); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.footer-series {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon);
  margin-top: 6px;
  letter-spacing: 2px;
}

/* ======== 1.5 INVESTOR MATERIALS / PODCAST & DECK ======== */
.materials-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.material-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}
.material-podcast::before {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.material-deck::before {
  background: linear-gradient(90deg, var(--neon), var(--gold));
}
.material-finance::before {
  background: linear-gradient(90deg, var(--gold), #FF8C00);
}
.material-card:hover {
  border-color: rgba(168,85,247,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.material-icon-wrapper {
  margin-bottom: 20px;
}
.material-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 2rem;
}
.podcast-pulse {
  background: rgba(168,85,247,0.15);
  color: var(--purple);
  animation: pulsePodcast 2s ease-in-out infinite;
}
@keyframes pulsePodcast {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(168,85,247,0.15); }
}
.deck-glow {
  background: rgba(57,255,20,0.1);
  color: var(--neon);
  animation: glowDeck 2.5s ease-in-out infinite;
}
@keyframes glowDeck {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57,255,20,0.3); }
  50% { box-shadow: 0 0 20px 10px rgba(57,255,20,0.1); }
}
.finance-glow {
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  animation: glowFinance 2.5s ease-in-out infinite;
}
@keyframes glowFinance {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.3); }
  50% { box-shadow: 0 0 20px 10px rgba(255,215,0,0.12); }
}
.deck-page-gold {
  background: rgba(255,215,0,0.06) !important;
  border-color: rgba(255,215,0,0.2) !important;
}
.deck-page-gold:hover {
  background: rgba(255,215,0,0.12) !important;
  color: var(--gold) !important;
}
.deck-page-gold i {
  color: var(--gold) !important;
}
.btn-gold {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.btn-gold:hover {
  background: rgba(255,215,0,0.1) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
}
.material-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.material-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Podcast Player */
.podcast-player {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 12px;
  padding: 16px 20px;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.player-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.player-btn:hover {
  background: #c084fc;
  transform: scale(1.08);
}
.player-progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.player-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}
.player-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
}

/* Deck Preview Tiles */
.deck-preview {
  margin-bottom: 8px;
}
.deck-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.deck-page {
  background: rgba(57,255,20,0.05);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 8px;
  padding: 14px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.deck-page:hover {
  background: rgba(57,255,20,0.1);
  color: var(--neon);
}
.deck-page i {
  color: var(--neon);
  margin-right: 6px;
}

/* Pro Tip Banner */
.materials-tip {
  margin-top: 32px;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tip-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.materials-tip p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.materials-tip strong {
  color: var(--gold);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .materials-tip {
    flex-direction: column;
    text-align: center;
  }
}

/* ======== MODAL ======== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--text); }
.modal h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}
.form-input:focus {
  border-color: var(--neon);
}
.form-input::placeholder {
  color: var(--text-muted);
}
select.form-input {
  appearance: none;
  cursor: pointer;
}
.success-icon {
  font-size: 4rem;
  color: var(--neon);
  text-align: center;
  margin-bottom: 16px;
}

/* ======== ANIMATIONS ======== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.2s; }
.reveal.delay-2 { transition-delay: 0.4s; }
.reveal.delay-3 { transition-delay: 0.6s; }

/* ======== PARTICLES ======== */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(57,255,20,0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(150px, -300px) scale(0); opacity: 0; }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5,10,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-burger {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  
  .ask-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .split-screen {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .quadrant-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-pipeline {
    flex-direction: column;
    gap: 4px;
    padding: 20px;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    transform: none;
  }
  .timeline-item {
    flex-direction: row;
    flex: auto;
    gap: 16px;
    text-align: left;
  }
  .timeline-icon {
    flex-shrink: 0;
  }
  
  .empathy-grid {
    grid-template-columns: 1fr;
  }
  .empathy-jobs {
    grid-template-columns: 1fr;
  }
  
  .final-metrics {
    gap: 20px;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-xl {
    min-width: 100%;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .ask-metric-value {
    font-size: 1.3rem;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  
  .niches-table th, .niches-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ladder-items {
    flex-direction: column;
    gap: 8px;
  }
  .ask-metrics {
    flex-direction: column;
  }
  .final-metrics {
    flex-direction: column;
    align-items: center;
  }
}
