/**
 * Nexus Axiom Landing Page Styles
 * Includes shared nav styles + page-specific content styles
 * 
 * @package CyberLeda Theme
 * @version 7.7.7.3
 */

/* ==========================================================================
   ROOT VARIABLES (shared with other pages)
   ========================================================================== */

:root {
  --navy-900: #0a1628;
  --navy-800: #111d32;
  --navy-700: #1a2942;
  --slate-500: #475569;
  --slate-400: #475569;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-600: #0a7c74;
  --teal-glow: rgba(20, 184, 166, 0.15);
  --green-500: #22c55e;
  --amber-500: #f59e0b;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 48px rgba(10, 22, 40, 0.16);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   BASE RESET (scoped - does NOT affect nav)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   NAVIGATION (shared styles - must be included for nav to render properly)
   ========================================================================== */

.nav { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  background: rgba(10, 22, 40, 0.95); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.nav .container,
.nav__inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 72px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo { 
  font-family: var(--font-display); 
  font-weight: 800; 
  font-size: 1.5rem; 
  color: var(--white); 
  display: flex; 
  align-items: center; 
  gap: var(--space-xs); 
}

.nav__logo-image { 
  height: 50px; 
  width: auto; 
}

.nav__links { 
  display: none; 
  list-style: none; 
  gap: var(--space-xl);
  margin: 0;
  padding: 0;
}

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

.nav__link { 
  font-family: var(--font-display); 
  font-weight: 500; 
  font-size: 0.95rem; 
  color: rgba(255, 255, 255, 0.8); 
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav__link:hover { 
  color: var(--teal-400); 
}

.nav__link--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
}

.nav__link--stacked span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.nav__social { 
  display: none; 
  align-items: center; 
  gap: var(--space-sm); 
  margin-right: var(--space-md); 
}

.nav__social-link { 
  width: 36px; 
  height: 36px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: rgba(255, 255, 255, 0.7); 
  transition: color var(--transition-fast); 
  border-radius: var(--radius-sm); 
}

.nav__social-link:hover { 
  color: var(--teal-400); 
  background: rgba(255, 255, 255, 0.05); 
}

.nav__mobile-toggle { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: var(--space-xs); 
}

.nav__mobile-toggle span { 
  width: 24px; 
  height: 2px; 
  background: var(--white); 
  border-radius: 2px; 
  transition: all var(--transition-base); 
}

.nav__mobile-toggle.active span:nth-child(1) { 
  transform: rotate(45deg) translateY(7px); 
}

.nav__mobile-toggle.active span:nth-child(2) { 
  opacity: 0; 
}

.nav__mobile-toggle.active span:nth-child(3) { 
  transform: rotate(-45deg) translateY(-7px); 
}

.nav__links--active { 
  display: flex !important; 
  flex-direction: column; 
  position: absolute; 
  top: 72px; 
  left: 0; 
  right: 0; 
  background: rgba(10, 22, 40, 0.98); 
  padding: var(--space-lg); 
  box-shadow: var(--shadow-lg);
  align-items: flex-start;
}

.nav__links--active .nav__link--stacked {
  align-items: flex-start;
  text-align: left;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__social { display: flex; }
  .nav__mobile-toggle { display: none; }
}

/* ==========================================================================
   NEXUS AXIOM PAGE-SPECIFIC VARIABLES
   ========================================================================== */

.nexus-axiom {
  --ne-dark: #0a0f1a;
  --ne-darker: #060810;
  --ne-navy: #0d1526;
  --ne-teal: #0ff4c6;
  --ne-teal-dim: rgba(15, 244, 198, 0.15);
  --ne-cyan: #00d4ff;
  --ne-purple: #8b5cf6;
  --ne-orange: #ff6b35;
  --ne-red: #ef4444;
  --ne-yellow: #fbbf24;
  --ne-green: #22c55e;
  --ne-white: #f8fafc;
  --ne-gray: #64748b;
  --ne-gray-light: #94a3b8;
  --ne-gradient-cyber: linear-gradient(135deg, #0ff4c6 0%, #00d4ff 50%, #8b5cf6 100%);
  --ne-gradient-ai: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  --ne-font-display: 'Outfit', sans-serif;
  --ne-font-mono: 'JetBrains Mono', monospace;
  --ne-font-body: 'Space Grotesk', sans-serif;
  --ne-shadow-glow: 0 0 60px rgba(15, 244, 198, 0.3);
}

/* ==========================================================================
   NEXUS AXIOM BASE STYLES
   ========================================================================== */

.nexus-axiom {
  background: var(--ne-dark);
  color: var(--ne-white);
  font-family: var(--ne-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

/* ==========================================================================
   CANVAS & OVERLAY (Background Effects)
   ========================================================================== */

.nexus-axiom #constellation-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.nexus-axiom .ne-gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(15, 244, 198, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.nexus-axiom .ne-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.nexus-axiom .ne-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
}

.nexus-axiom .ne-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ne-teal-dim);
  border: 1px solid rgba(15, 244, 198, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--ne-font-mono);
  font-size: 0.85rem;
  color: var(--ne-teal);
  margin-bottom: 2rem;
  animation: ne-pulse 2s ease-in-out infinite;
}

@keyframes ne-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 244, 198, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(15, 244, 198, 0); }
}

.nexus-axiom .ne-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ne-teal);
  border-radius: 50%;
  animation: ne-blink 1s ease-in-out infinite;
}

@keyframes ne-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.nexus-axiom .ne-logo-icon {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: ne-float-logo 6s ease-in-out infinite;
}

.nexus-axiom .ne-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(15, 244, 198, 0.5));
}

@keyframes ne-float-logo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.nexus-axiom .ne-logo-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(15, 244, 198, 0.3), transparent, rgba(0, 212, 255, 0.2), transparent);
  animation: ne-rotate-glow 8s linear infinite;
  filter: blur(15px);
}

@keyframes ne-rotate-glow {
  100% { transform: rotate(360deg); }
}

.nexus-axiom .ne-hero-title {
  font-family: var(--ne-font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  background: var(--ne-gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nexus-axiom .ne-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--ne-gray-light);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.nexus-axiom .ne-hero-subtitle strong {
  color: var(--ne-teal);
  font-weight: 600;
}

.nexus-axiom .ne-tagline {
  font-family: var(--ne-font-mono);
  font-size: 1rem;
  color: var(--ne-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.nexus-axiom .ne-stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.nexus-axiom .ne-stat {
  text-align: center;
}

.nexus-axiom .ne-stat-value {
  font-family: var(--ne-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ne-teal);
  line-height: 1;
}

.nexus-axiom .ne-stat-label {
  font-size: 0.9rem;
  color: var(--ne-gray);
  margin-top: 0.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.nexus-axiom .ne-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nexus-axiom .ne-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: var(--ne-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.nexus-axiom .ne-btn-primary {
  background: var(--ne-gradient-cyber);
  color: var(--ne-dark);
  box-shadow: var(--ne-shadow-glow);
}

.nexus-axiom .ne-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(15, 244, 198, 0.5);
}

.nexus-axiom .ne-btn-secondary {
  background: transparent;
  color: var(--ne-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.nexus-axiom .ne-btn-secondary:hover {
  border-color: var(--ne-teal);
  color: var(--ne-teal);
  background: var(--ne-teal-dim);
}

.nexus-axiom .ne-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ne-gray);
  font-size: 0.85rem;
  animation: ne-bounce 2s ease-in-out infinite;
}

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

/* ==========================================================================
   SECTION SHARED STYLES
   ========================================================================== */

.nexus-axiom .ne-section-label {
  font-family: var(--ne-font-mono);
  font-size: 0.85rem;
  color: var(--ne-teal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-section-title {
  font-family: var(--ne-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ne-white);
}

.nexus-axiom .ne-section-subtitle {
  font-size: 1.25rem;
  color: var(--ne-gray-light);
  max-width: 700px;
  margin-bottom: 4rem;
}

/* ==========================================================================
   AI ENGINE SECTION
   ========================================================================== */

.nexus-axiom .ne-ai-engine {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.nexus-axiom .ne-ai-engine::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nexus-axiom .ne-ai-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.nexus-axiom .ne-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--ne-font-mono);
  font-size: 0.85rem;
  color: var(--ne-purple);
  margin-bottom: 1.5rem;
}

.nexus-axiom .ne-ai-title {
  font-family: var(--ne-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--ne-gradient-ai);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nexus-axiom .ne-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-ai-card {
  background: linear-gradient(135deg, var(--ne-navy) 0%, var(--ne-darker) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nexus-axiom .ne-ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ne-gradient-ai);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nexus-axiom .ne-ai-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
}

.nexus-axiom .ne-ai-card:hover::before {
  transform: scaleX(1);
}

.nexus-axiom .ne-ai-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.nexus-axiom .ne-ai-card h3 {
  font-family: var(--ne-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ne-white);
}

.nexus-axiom .ne-ai-card p {
  color: var(--ne-gray-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.nexus-axiom .ne-ai-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--ne-font-mono);
  font-size: 0.85rem;
}

.nexus-axiom .ne-ai-stat-value {
  color: var(--ne-purple);
  font-weight: 700;
}

.nexus-axiom .ne-ai-stat-label {
  color: var(--ne-gray-light);
}

/* ==========================================================================
   KNOWLEDGE LANES
   ========================================================================== */

.nexus-axiom .ne-lanes-section {
  background: var(--ne-navy);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 3rem;
}

.nexus-axiom .ne-lanes-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.nexus-axiom .ne-lanes-title {
  font-family: var(--ne-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ne-white);
}

.nexus-axiom .ne-lanes-subtitle {
  color: var(--ne-gray-light);
  font-size: 1rem;
}

.nexus-axiom .ne-lanes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.nexus-axiom .ne-lane {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-lane:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.nexus-axiom .ne-lane-id {
  font-family: var(--ne-font-mono);
  font-size: 0.75rem;
  color: var(--ne-purple);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-lane-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ne-white);
  line-height: 1.3;
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */

.nexus-axiom .ne-timeline {
  padding: 8rem 0;
}

.nexus-axiom .ne-timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-timeline-track {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.nexus-axiom .ne-timeline-track::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ne-teal), var(--ne-purple), var(--ne-red), var(--ne-orange));
}

.nexus-axiom .ne-timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.nexus-axiom .ne-timeline-item:last-child {
  padding-bottom: 0;
}

.nexus-axiom .ne-timeline-dot {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--ne-dark);
  border: 3px solid var(--ne-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexus-axiom .ne-timeline-dot.active {
  background: var(--ne-teal);
}

.nexus-axiom .ne-timeline-dot.active::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--ne-dark);
  border-radius: 50%;
}

.nexus-axiom .ne-timeline-dot.ai {
  border-color: var(--ne-purple);
}

.nexus-axiom .ne-timeline-dot.ai.active {
  background: var(--ne-purple);
}

.nexus-axiom .ne-timeline-dot.red {
  border-color: var(--ne-red);
}

.nexus-axiom .ne-timeline-dot.red.active {
  background: var(--ne-red);
}

.nexus-axiom .ne-timeline-dot.cyber {
  border-color: var(--ne-orange);
}

.nexus-axiom .ne-timeline-dot.cyber.active {
  background: var(--ne-orange);
}

.nexus-axiom .ne-timeline-date {
  font-family: var(--ne-font-mono);
  font-size: 0.85rem;
  color: var(--ne-teal);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-timeline-date.ai {
  color: var(--ne-purple);
}

.nexus-axiom .ne-timeline-date.red {
  color: var(--ne-red);
}

.nexus-axiom .ne-timeline-date.cyber {
  color: var(--ne-orange);
}

.nexus-axiom .ne-timeline-title {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ne-white);
}

.nexus-axiom .ne-timeline-desc {
  color: var(--ne-gray-light);
  font-size: 0.95rem;
}

.nexus-axiom .ne-timeline-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--ne-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-family: var(--ne-font-mono);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.nexus-axiom .ne-timeline-tag.red {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--ne-red);
}

.nexus-axiom .ne-timeline-tag.cyber {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--ne-orange);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.nexus-axiom .ne-cta {
  padding: 8rem 0;
  background: var(--ne-darker);
  position: relative;
  overflow: hidden;
}

.nexus-axiom .ne-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(15, 244, 198, 0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nexus-axiom .ne-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.nexus-axiom .ne-cta-title {
  font-family: var(--ne-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--ne-gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nexus-axiom .ne-cta-desc {
  font-size: 1.25rem;
  color: var(--ne-gray-light);
  margin-bottom: 2.5rem;
}

.nexus-axiom .ne-cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.nexus-axiom .ne-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ne-gray-light);
  font-size: 0.95rem;
}

.nexus-axiom .ne-cta-feature svg {
  color: var(--ne-teal);
}

/* ==========================================================================
   FEATURES / CAPABILITIES SECTION
   ========================================================================== */

.nexus-axiom .ne-features {
  padding: 8rem 0;
  background: var(--ne-darker);
}

.nexus-axiom .ne-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nexus-axiom .ne-feature-card {
  background: var(--ne-navy);
  border: 1px solid rgba(15, 244, 198, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-feature-card:hover {
  border-color: rgba(15, 244, 198, 0.3);
  transform: translateY(-4px);
}

.nexus-axiom .ne-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-feature-card h3 {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ne-white);
  margin-bottom: 0.75rem;
}

.nexus-axiom .ne-feature-card p {
  color: var(--ne-gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.nexus-axiom .ne-feature-metrics {
  display: flex;
  gap: 1.5rem;
}

.nexus-axiom .ne-metric {
  text-align: center;
}

.nexus-axiom .ne-metric-value {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ne-teal);
}

.nexus-axiom .ne-metric-label {
  font-size: 0.75rem;
  color: var(--ne-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   BREACH REPLAY SECTION
   ========================================================================== */

.nexus-axiom .ne-breach-replay {
  padding: 8rem 0;
}

.nexus-axiom .ne-breach-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-breach-demo {
  max-width: 900px;
  margin: 0 auto;
  background: var(--ne-navy);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.nexus-axiom .ne-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.nexus-axiom .ne-demo-title {
  font-family: var(--ne-font-mono);
  font-size: 0.9rem;
  color: var(--ne-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nexus-axiom .ne-demo-badge {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--ne-red);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-family: var(--ne-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}

.nexus-axiom .ne-demo-steps {
  padding: 1.5rem;
}

.nexus-axiom .ne-attack-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nexus-axiom .ne-attack-step:last-child {
  border-bottom: none;
}

.nexus-axiom .ne-step-status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ne-gray);
}

.nexus-axiom .ne-step-status.success {
  background: rgba(239, 68, 68, 0.15);
  color: var(--ne-red);
}

.nexus-axiom .ne-step-status.blocked {
  background: rgba(15, 244, 198, 0.15);
  color: var(--ne-teal);
}

.nexus-axiom .ne-step-content {
  flex: 1;
}

.nexus-axiom .ne-step-name {
  font-family: var(--ne-font-display);
  font-weight: 600;
  color: var(--ne-white);
  margin-bottom: 0.25rem;
}

.nexus-axiom .ne-step-desc {
  color: var(--ne-gray-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-step-tag {
  display: inline-block;
  font-family: var(--ne-font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--ne-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.nexus-axiom .ne-step-tag.ttp {
  background: rgba(251, 191, 36, 0.15);
  color: var(--ne-yellow);
  border-color: rgba(251, 191, 36, 0.2);
}

.nexus-axiom .ne-demo-result {
  padding: 1.5rem;
  background: rgba(15, 244, 198, 0.05);
  border-top: 1px solid rgba(15, 244, 198, 0.15);
  text-align: center;
}

.nexus-axiom .ne-result-title {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ne-teal);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-result-desc {
  color: var(--ne-gray-light);
  margin-bottom: 1rem;
}

.nexus-axiom .ne-result-savings {
  font-family: var(--ne-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ne-green);
}

/* ==========================================================================
   TECH / ARCHITECTURE SECTION
   ========================================================================== */

.nexus-axiom .ne-tech {
  padding: 8rem 0;
  background: var(--ne-darker);
}

.nexus-axiom .ne-tech-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.nexus-axiom .ne-tech-item {
  background: var(--ne-navy);
  border: 1px solid rgba(15, 244, 198, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-tech-item:hover {
  border-color: rgba(15, 244, 198, 0.25);
  transform: translateY(-3px);
}

.nexus-axiom .ne-tech-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.nexus-axiom .ne-tech-name {
  font-family: var(--ne-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ne-white);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-tech-desc {
  color: var(--ne-gray);
  font-size: 0.85rem;
}

/* ==========================================================================
   AUDIENCE SECTION
   ========================================================================== */

.nexus-axiom .ne-audience {
  padding: 8rem 0;
}

.nexus-axiom .ne-audience-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nexus-axiom .ne-audience-card {
  background: var(--ne-navy);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-audience-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.nexus-axiom .ne-audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-audience-card h3 {
  font-family: var(--ne-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ne-white);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-audience-card p {
  color: var(--ne-gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.nexus-axiom .ne-audience-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nexus-axiom .ne-audience-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--ne-gray-light);
  font-size: 0.9rem;
}

.nexus-axiom .ne-audience-benefits li::before {
  content: '✓';
  color: var(--ne-purple);
  font-weight: bold;
}

/* ==========================================================================
   FOOTER NOTE
   ========================================================================== */

.nexus-axiom .ne-footer-note {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--ne-gray);
  font-size: 0.85rem;
}

.nexus-axiom .ne-footer-note a {
  color: var(--ne-teal);
  text-decoration: none;
}

.nexus-axiom .ne-footer-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */

.nexus-axiom .ne-problem {
  padding: 8rem 0;
  position: relative;
}

.nexus-axiom .ne-problem > .ne-container > .ne-section-label,
.nexus-axiom .ne-problem > .ne-container > .ne-section-title,
.nexus-axiom .ne-problem > .ne-container > .ne-section-subtitle {
  text-align: center;
}

.nexus-axiom .ne-problem > .ne-container > .ne-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.nexus-axiom .ne-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nexus-axiom .ne-problem-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-problem-card:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
  transform: translateY(-4px);
}

.nexus-axiom .ne-problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-problem-card h3 {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ne-white);
  margin-bottom: 0.75rem;
}

.nexus-axiom .ne-problem-card p {
  color: var(--ne-gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   SOLUTION / BRAIN SECTION
   ========================================================================== */

.nexus-axiom .ne-solution {
  padding: 8rem 0;
  background: var(--ne-darker);
  position: relative;
  overflow: hidden;
}

.nexus-axiom .ne-solution::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(15, 244, 198, 0.05) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nexus-axiom .ne-solution-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.nexus-axiom .ne-brain-diagram {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nexus-axiom .ne-brain-visual {
  background: linear-gradient(135deg, var(--ne-navy) 0%, var(--ne-darker) 100%);
  border: 1px solid rgba(15, 244, 198, 0.2);
  border-radius: 24px;
  padding: 3rem;
}

.nexus-axiom .ne-brain-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nexus-axiom .ne-brain-center {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 244, 198, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(15, 244, 198, 0.1);
}

.nexus-axiom .ne-brain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.nexus-axiom .ne-brain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(15, 244, 198, 0.4));
}

.nexus-axiom .ne-brain-title {
  font-family: var(--ne-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ne-teal);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-brain-subtitle {
  color: var(--ne-gray-light);
  font-size: 1rem;
  margin: 0;
}

.nexus-axiom .ne-brain-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nexus-axiom .ne-brain-layer {
  background: rgba(15, 244, 198, 0.05);
  border: 1px solid rgba(15, 244, 198, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-brain-layer:hover {
  background: rgba(15, 244, 198, 0.08);
  border-color: rgba(15, 244, 198, 0.2);
}

.nexus-axiom .ne-layer-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-layer-name {
  font-family: var(--ne-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ne-teal);
  margin-bottom: 0.5rem;
}

.nexus-axiom .ne-layer-desc {
  color: var(--ne-gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.nexus-axiom .ne-how-it-works {
  padding: 8rem 0;
}

.nexus-axiom .ne-how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nexus-axiom .ne-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nexus-axiom .ne-flow-step {
  background: var(--ne-navy);
  border: 1px solid rgba(15, 244, 198, 0.15);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.nexus-axiom .ne-flow-step:hover {
  border-color: rgba(15, 244, 198, 0.3);
  transform: translateY(-4px);
}

.nexus-axiom .ne-flow-number {
  width: 48px;
  height: 48px;
  background: var(--ne-gradient-cyber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ne-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ne-dark);
  margin-bottom: 1.5rem;
}

.nexus-axiom .ne-flow-content h3,
.nexus-axiom .ne-flow-title {
  font-family: var(--ne-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ne-white);
  margin-bottom: 0.75rem;
}

.nexus-axiom .ne-flow-content p,
.nexus-axiom .ne-flow-desc {
  color: var(--ne-gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.nexus-axiom .ne-flow-highlight {
  display: inline-block;
  font-family: var(--ne-font-mono);
  font-size: 0.8rem;
  color: var(--ne-teal);
  background: rgba(15, 244, 198, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(15, 244, 198, 0.2);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
  .nexus-axiom .ne-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nexus-axiom .ne-brain-layers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nexus-axiom .ne-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nexus-axiom .ne-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nexus-axiom .ne-container {
    padding: 0 1.5rem;
  }
  
  .nexus-axiom .ne-hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  .nexus-axiom .ne-stats-row {
    gap: 2rem;
  }
  
  .nexus-axiom .ne-cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .nexus-axiom .ne-lanes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nexus-axiom .ne-ai-grid {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-problem-grid {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-flow {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-brain-layers {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-features-grid {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nexus-axiom .ne-audience-cards {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-demo-header {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .nexus-axiom .ne-feature-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .nexus-axiom .ne-lanes-grid {
    grid-template-columns: 1fr;
  }
  
  .nexus-axiom .ne-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nexus-axiom .ne-tech-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   FOOTER STYLES - UNIFIED
   ======================================== */
.footer { background: var(--navy-900); padding: var(--space-4xl) 0 var(--space-xl); }
.footer .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer__brand { max-width: 320px; }
.footer__logo { display: block; margin-bottom: var(--space-md); }
.footer__logo-image { height: 50px; width: auto; display: block; }
.footer__tagline { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; margin-bottom: var(--space-md); }
.footer__social { display: flex; gap: var(--space-sm); }
.footer__social-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: #cbd5e1; background: rgba(255, 255, 255, 0.05); border-radius: 6px; transition: all 0.25s ease; }
.footer__social-link:hover { color: #0ff4c6; background: rgba(20, 184, 166, 0.15); }
.footer__nav { }
.footer__nav h4 { font-family: var(--font-display), sans-serif; font-weight: 600; font-size: 0.9rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-md); }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.footer__link { padding: 0.35rem 0; margin: 0; }
.footer__link a { color: #e2e8f0; font-size: 0.95rem; transition: color 0.15s ease; text-decoration: none; }
.footer__link a:hover { color: #5eead4; }
.footer__contact-item { display: flex; align-items: center; gap: var(--space-sm); padding: 0.35rem 0; color: #e2e8f0; font-size: 0.95rem; }
.footer__contact-item svg { width: 18px; height: 18px; color: #5eead4; flex-shrink: 0; }
.footer__contact-item a { color: #e2e8f0; transition: color 0.15s ease; text-decoration: none; }
.footer__contact-item a:hover { color: #5eead4; }
.footer__map { margin-top: var(--space-md); }
.footer__map iframe { display: block; width: 100%; max-width: 200px; height: 120px; border-radius: 8px; border: 0; }
.footer__bottom { padding-top: var(--space-xl); margin-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.footer__copyright { color: #cbd5e1; font-size: 0.85rem; margin: 0; }
.footer__copyright a { color: #5eead4; text-decoration: none; }
.footer__copyright a:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
/* End Footer Styles */


/* Nav Social Icons */
.nav__social { display: none; align-items: center; gap: var(--space-md); margin-right: var(--space-md); }
.nav__social-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #475569; transition: all 0.2s ease; border-radius: 6px; border: 1px solid rgba(203,213,225,0.5); background: rgba(255,255,255,0.5); }
.nav__social-link:hover { color: #087f73; background: rgba(8,127,115,0.1); border-color: rgba(8,127,115,0.3); }
@media (min-width: 768px) { .nav__social { display: flex; } }

/* Mobile Menu Fixes */
.nav__links--active .nav__link--stacked { align-items: flex-start; text-align: left; }

