/* ==========================================================================
   T2T Lead-x Landing Page Styles
   Inherits global rules from ../../styles.css and extends for Lead-x.
   ========================================================================== */

:root {
  --bg-dark: #030712;
  --bg-card: #0b1120;
  --border-glow: rgba(99, 102, 241, 0.18);
  --brand-indigo: #6366f1;
  --brand-indigo-hover: #4f46e5;
  --brand-violet: #8b5cf6;
  --brand-violet-hover: #7c3aed;
  --brand-gold: #fbbf24;
  --brand-gold-hover: #f59e0b;
  --brand-emerald: #10b981;
  --brand-emerald-hover: #059669;
  --text-primary: #f3f4f6;
  --text-muted: #9ca3af;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.leadx-theme {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080c16 50%, #020306 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Grid Mask Overlay */
.grid-mask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 100%);
  pointer-events: none;
  z-index: -2;
}

/* Ambient Glow Blobs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.7;
}

/* Sticky Header Style Extensions */
header.scrolled {
  background: rgba(3, 7, 18, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

nav ul li a {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-violet));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a.active-link::after,
nav ul li a:hover::after {
  width: 80%;
}

nav ul li a.active-link {
  color: var(--text-primary);
}

.header-cta {
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-violet) 100%);
  color: #ffffff !important;
  border: none !important;
  padding: 8px 22px !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
  transition: all 0.3s ease !important;
}

.header-cta:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  filter: saturate(1.1);
}

/* Section Header Styling */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(40px, 8vw, 60px);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 75%, #e0a7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

/* Premium Buttons */
.btn-premium {
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-violet) 100%);
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  filter: saturate(1.1);
}

.btn.secondary-premium {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.btn.secondary-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* 1. HERO SECTION */
.hero-leadx {
  padding: 140px 0 clamp(60px, 12vw, 100px);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-badge {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge.highlight {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
  color: var(--brand-gold);
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #a5f3fc 70%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.hero-subtitle span.gold-text {
  color: var(--brand-gold);
  background: linear-gradient(90deg, var(--brand-gold), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-scarcity {
  font-size: 0.9rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scarcity span {
  width: 10px;
  height: 10px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
  position: relative;
  width: 100%;
}

.dashboard-mockup {
  background: rgba(10, 16, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  padding: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.db-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-emerald);
}

.db-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Charts Grid inside Dashboard */
.db-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.chart-panel {
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.chart-svg-container {
  height: 120px;
  position: relative;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite alternate;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-fill {
  opacity: 0.15;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: fillChart 3s cubic-bezier(0.4, 0, 0.2, 1) forwards infinite alternate;
}

@keyframes fillChart {
  to {
    transform: scaleY(1);
  }
}

/* AI Copilot Panel */
.ai-copilot-panel {
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.copilot-bubble {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.copilot-bubble.user {
  border-color: rgba(255, 255, 255, 0.1);
  align-self: flex-end;
}

.copilot-bubble.ai {
  border-color: rgba(139, 92, 246, 0.2);
  color: #c084fc;
}

.copilot-input-mimic {
  display: flex;
  align-items: center;
  background: rgba(3, 7, 18, 0.8);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cursor-blink {
  width: 2px;
  height: 12px;
  background: var(--brand-indigo);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* KPI Gauges block */
.db-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.kpi-gauge-card {
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.kpi-val {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.kpi-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Floating Badges in Hero */
.floating-badge {
  position: absolute;
  background: rgba(11, 17, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 10;
  backdrop-filter: blur(8px);
}

.floating-badge.badge-left {
  top: 15%;
  left: -40px;
  animation: floatUpDown 6s ease-in-out infinite;
}

.floating-badge.badge-right {
  bottom: 15%;
  right: -30px;
  animation: floatUpDown 6s ease-in-out infinite 3s;
}

.f-icon {
  width: 24px;
  height: 24px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 0.8rem;
}

.floating-badge.badge-left .f-icon {
  background: rgba(99, 102, 241, 0.1);
  color: var(--brand-indigo);
}

.f-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: left;
}

.f-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 2. THE PROBLEM SECTION */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.problem-card {
  padding: 30px;
  text-align: left;
  border-left: 3px solid rgba(239, 68, 68, 0.2);
}

.problem-card:hover {
  border-left-color: rgba(239, 68, 68, 0.6);
}

.p-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #f87171;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* 3. PROGRAM PROMISE SECTION */
.promise-panel {
  max-width: 900px;
  margin: 0 auto;
  border-color: rgba(99, 102, 241, 0.15);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, rgba(11, 17, 32, 0.6) 100%);
  padding: clamp(30px, 6vw, 48px);
}

.promise-quote-block {
  text-align: center;
  margin-bottom: 40px;
}

.promise-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.promise-quote span.glow-accent {
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-violet));
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  color: #ffffff;
}

.mindset-shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.m-column {
  text-align: left;
}

.m-column.from {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 30px;
}

.m-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.m-column.from h4 {
  color: #ef4444;
}

.m-column.to h4 {
  color: var(--brand-emerald);
}

.m-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.m-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.95rem;
}

.m-column.from .m-list li::before {
  content: '✕';
  color: #f87171;
}

.m-column.to .m-list li::before {
  content: '✓';
  color: #34d399;
}

.m-column.to .m-list li {
  color: var(--text-primary);
}

/* 4. WHO SHOULD APPLY SECTION */
.audience-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.audience-pill-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.audience-pill-card:hover {
  background: rgba(99, 102, 241, 0.04);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.ap-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.audience-pill-card strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: block;
}

.audience-pill-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.highlight-banner {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  padding: 20px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.highlight-banner p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.highlight-banner p span {
  color: var(--brand-gold);
}

/* 5. CORE PILLARS SECTION */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pillar-card {
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-top {
  margin-bottom: 24px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-indigo);
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: var(--brand-indigo);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.pillar-card:nth-child(2n):hover .pillar-icon {
  background: var(--brand-violet);
  border-color: var(--brand-violet);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.pillar-card:nth-child(2n) .pillar-icon {
  color: var(--brand-violet);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pillar-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
  display: block;
}

/* 6. WEEKLY JOURNEY (CURRICULUM) */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.week-card {
  background: rgba(10, 16, 31, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.week-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-indigo), transparent);
  opacity: 0.3;
}

.week-card:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.week-card:hover::after {
  opacity: 1;
}

.week-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.week-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}

/* 7. SIGNATURE EXPERIENCE: BOARDROOM CHALLENGE */
.boardroom-challenge {
  max-width: 1000px;
  margin: 0 auto;
}

.boardroom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.boardroom-left {
  text-align: left;
}

.boardroom-left p.desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.challenge-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.deliverable-item {
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.del-bullet {
  width: 20px;
  height: 20px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-item strong {
  font-size: 0.88rem;
  color: var(--text-primary);
  display: block;
}

.boardroom-visual-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bv-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.bv-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--brand-indigo);
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.bv-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.bv-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bv-step {
  display: flex;
  gap: 16px;
}

.bvs-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.bvs-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.bvs-content span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* 8. PROGRAM DETAILS SECTION */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.details-card {
  padding: 24px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.det-icon {
  width: 42px;
  height: 42px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.details-card:nth-child(even) .det-icon {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
  color: var(--brand-indigo);
}

.det-content h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}

.det-content p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.det-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* 9. WHY LEARN WITH T2T SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  padding: 28px;
  text-align: left;
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* 10. OUTCOMES SECTION */
.outcomes-container {
  max-width: 900px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.outcome-item {
  background: rgba(11, 17, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.outcome-item:hover {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.02);
  transform: translateX(4px);
}

.outcome-check {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-emerald);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.outcome-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* 11. APPLICATION PROCESS SECTION */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

.process-step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-badge {
  width: 44px;
  height: 44px;
  background: #0b1120;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.process-step-card:hover .step-number-badge {
  border-color: var(--brand-indigo);
  color: var(--brand-indigo);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.process-step-card:nth-child(even):hover .step-number-badge {
  border-color: var(--brand-violet);
  color: var(--brand-violet);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.process-step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.process-step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Timeline link line for process */
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  z-index: 1;
}

/* 12. FAQ ACCORDION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  text-align: left;
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--brand-indigo);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--brand-indigo);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 8px;
}

.faq-row.active .faq-answer {
  max-height: 200px; /* Large enough to hold text */
  padding: 8px 8px 24px;
}

.faq-row.active .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-gold);
}

/* 13. FINAL CTA SECTION */
.final-cta-block {
  background: linear-gradient(135deg, rgba(10, 16, 31, 0.9) 0%, rgba(3, 7, 18, 0.95) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius);
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.final-cta-block::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  top: -200px;
  right: -200px;
  z-index: -1;
  filter: blur(50px);
}

.final-cta-block h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 80%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-block p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-inline: auto;
}

/* ==========================================================================
   APPLICATION MODAL POPUP STYLE
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0b1120;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.modal-box h3 {
  font-size: 1.65rem;
  color: #ffffff;
  margin: 0 0 8px;
  font-weight: 800;
}

.modal-box p.intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Custom Drag-and-Drop Area */
.drag-drop-area {
  border: 2px dashed rgba(99, 102, 241, 0.25);
  background: rgba(3, 7, 18, 0.4);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.drag-drop-area:hover, .drag-drop-area.dragover {
  border-color: var(--brand-indigo);
  background: rgba(99, 102, 241, 0.05);
}

.upload-icon {
  font-size: 2rem;
  color: var(--brand-indigo);
  margin-bottom: 12px;
  display: block;
}

.drag-drop-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.drag-drop-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* File Selected Status Indicator */
.file-status-indicator {
  display: none;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.file-status-indicator.active {
  display: flex;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-icon {
  color: var(--brand-emerald);
  font-size: 1.2rem;
}

.file-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-all;
}

.file-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
}

/* Success Screen inside Modal */
.success-screen {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--brand-emerald);
  color: var(--brand-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}

.success-screen h3 {
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Form Styling */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.modal-submit-btn {
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-violet) 100%);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 8px;
}

.modal-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Laptop / Desktop - 1024px */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }
}

/* Tablet - 900px */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-scarcity {
    justify-content: center;
  }

  .floating-badge {
    display: none; /* Hide floating badges on tablet for cleanliness */
  }

  .mindset-shift {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .m-column.from {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 0;
    padding-bottom: 24px;
  }

  .boardroom-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-steps::before {
    display: none; /* Hide horizontal timeline line on mobile */
  }

  .process-step-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .step-number-badge {
    margin: 0;
    flex-shrink: 0;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .hero-leadx {
    padding-top: 110px;
  }

  .db-grid {
    grid-template-columns: 1fr;
  }

  .ai-copilot-panel {
    min-height: 140px;
  }

  .challenge-deliverables {
    grid-template-columns: 1fr;
  }

  .kpi-gauge-card {
    padding: 8px 4px;
  }

  .kpi-val {
    font-size: 1.05rem;
  }

  .kpi-label {
    font-size: 0.6rem;
  }
}
