/* =========================================================
   NEO NETWORK - UI/UX PRO MAX (AWARD-WINNING AESTHETIC)
   ========================================================= */

:root {
  /* Ultra-Premium Pro Max Palette */
  --bg-deep: #030305;
  --bg-glass: rgba(15, 15, 20, 0.4);
  --bg-glass-heavy: rgba(10, 10, 12, 0.7);
  
  --color-ferrari-red: #E60000;
  --color-ferrari-neon: #FF1A1A;
  --color-gold: #D4AF37;
  --color-gold-bright: #F9E596;
  --color-white: #FFFFFF;
  --color-muted: #A0A0B0;

  /* Fonts */
  --font-hero: 'Montserrat', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Geometry & Glass */
  --glass-border: 1px solid rgba(255, 255, 255, 0.06);
  --glass-border-gold: 1px solid rgba(212, 175, 55, 0.2);
  --shadow-pro: 0 40px 80px rgba(0, 0, 0, 0.9);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* =========================================
   PRO MAX PLASMA ENVIRONMENT
   ========================================= */
.plasma-environment {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: -2; pointer-events: none; overflow: hidden;
}

.plasma-orb {
  position: absolute; border-radius: 50%;
  opacity: 0.3;
  /* Replaced mix-blend-mode and blur with simple opacity for massive performance gain */
}
.orb-ferrari {
  width: 70vw; height: 70vh;
  background: radial-gradient(circle, var(--color-ferrari-red) 0%, transparent 70%);
  top: -10vh; right: -20vw;
  animation: move-plasma-1 15s infinite alternate ease-in-out;
  will-change: transform;
}
.orb-gold {
  width: 50vw; height: 50vh;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  bottom: -10vh; left: -10vw;
  animation: move-plasma-2 18s infinite alternate-reverse ease-in-out;
  opacity: 0.3;
  will-change: transform;
}
.orb-dark { /* Adds depth to the middle */
  width: 100vw; height: 100vh;
  background: radial-gradient(circle, transparent 40%, var(--bg-deep) 100%);
  top: 0; left: 0; z-index: 1; filter: none; opacity: 1; mix-blend-mode: normal;
}

.glass-noise-filter {
  /* DISABLED: SVG feTurbulence layer spanning 100vh is a catastrophic frame killer */
  display: none;
}

/* =========================================
   PREMIUM NAV
   ========================================= */
.premium-nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(3, 3, 5, 0.4);
  -webkit- 
  border-bottom: var(--glass-border);
  padding: 18px 0; z-index: 1000;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 14px; }
.nnt-actual-logo { width: 44px; height: auto; object-fit: contain; }
.brand-text { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; line-height: 1.1; letter-spacing: 2px;}
.brand-accent { color: var(--color-gold); font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 3px; font-weight: 500;}


/* =========================================
   ASYMMETRICAL PRO MAX HERO
   ========================================= */
.pro-max-hero {
  padding-top: 100px; padding-bottom: 60px; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-grid-asymmetric {
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; position: relative;
}

/* --- Left Layer --- */
.hero-content-layer { z-index: 10; max-width: 800px; display: flex; flex-direction: column; }

.pro-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px; background: rgba(255, 255, 255, 0.03);
  border: var(--glass-border); border-radius: 100px;
  font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 2px;
  color: var(--color-muted); margin-bottom: 15px; align-self: flex-start;
  -webkit- 
}
.pulse-ring {
  width: 8px; height: 8px; background: var(--color-ferrari-neon); border-radius: 50%;
  box-shadow: 0 0 15px var(--color-ferrari-neon); animation: pulse-ring 2s infinite; position: relative;
}

.pro-headline {
  font-family: var(--font-hero); font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 24px; text-transform: uppercase;
}
.liquid-gradient-text {
  background: linear-gradient(to right, #FFF 0%, var(--color-gold-bright) 50%, var(--color-ferrari-neon) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: liquid-shine 6s linear infinite;
}

.pro-subhead {
  font-size: 1.15rem; color: var(--color-muted); font-weight: 400;
  max-width: 600px; margin-bottom: 25px; line-height: 1.6;
}

/* --- Pro Max Buttons --- */
.pro-cta-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }
.btn-pro {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 1px; border-radius: 6px;
  text-decoration: none; transition: var(--transition); position: relative;
  overflow: hidden;
}
.btn-pro-outline { border: var(--glass-border); color: var(--color-white); padding: 10px 20px; font-size: 0.8rem; border-radius: 8px;}
.btn-pro-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.btn-pro-primary {
  background: var(--color-white); color: var(--bg-deep);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); border: none;
}
.btn-pro-primary:hover {
  transform: translateY(-4px); box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}
.btn-pro-ghost {
  border: 1px solid rgba(229, 0, 0, 0.3); color: var(--color-white); background: rgba(229, 0, 0, 0.05);
}
.btn-pro-ghost:hover {
  border-color: var(--color-ferrari-red); background: rgba(229, 0, 0, 0.1); transform: translateY(-4px);
}

/* --- Pill Trust Badges --- */
.pro-pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(255, 255, 255, 0.02);
  border: var(--glass-border); border-radius: 40px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--color-muted);
  -webkit-  transition: var(--transition);
}
.glass-pill:hover { background: rgba(255,255,255,0.06); color: var(--color-white); border-color: rgba(255,255,255,0.2);}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; }
.pill-dot.red { background: var(--color-ferrari-neon); box-shadow: 0 0 10px var(--color-ferrari-neon); }
.pill-dot.gold { background: var(--color-gold); box-shadow: 0 0 10px var(--color-gold); }


/* --- Right Layer: 3D Frosted Overlap --- */
.hero-visual-layer { position: relative; z-index: 5; perspective: 1200px; display: flex; justify-content: center; }

.glass-video-card {
  width: 100%; max-width: 650px; aspect-ratio: 16/10;
  background: var(--bg-glass-heavy); border: var(--glass-border); border-radius: 16px;
  -webkit- 
  box-shadow: var(--shadow-pro), inset 0 0 40px rgba(255,255,255,0.02);
  display: flex; flex-direction: column; overflow: hidden;
  transform: rotateY(-10deg) rotateX(5deg) scale(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s;
}
.glass-video-card:hover { transform: rotateY(0deg) rotateX(0deg) scale(1); box-shadow: 0 50px 100px rgba(0,0,0,1), inset 0 0 60px rgba(255,255,255,0.05); }

.glass-header {
  padding: 12px 20px; border-bottom: var(--glass-border); display: flex; align-items: center; justify-content: space-between;
}
.mac-dots { display: flex; gap: 6px; }
.mac-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.glass-url { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 1px;}

.glass-body { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; background: radial-gradient(circle at center, rgba(229,0,0,0.1) 0%, transparent 60%); }

.video-placeholder-rich { text-align: center; cursor: pointer; }
.play-button-glass {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.3);
  -webkit- 
  display: flex; justify-content: center; align-items: center; margin: 0 auto 16px; transition: var(--transition);
}
.play-triangle {
  width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid var(--color-white); margin-left: 6px; transition: var(--transition);
}
.glass-video-card:hover .play-button-glass { background: var(--color-white); box-shadow: 0 0 30px rgba(255,255,255,0.4); transform: scale(1.1); border-color: white;}
.glass-video-card:hover .play-triangle { border-left-color: var(--color-ferrari-red); }

.video-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; letter-spacing: 1px; }
.video-duration { color: var(--color-gold); font-size: 0.8rem; font-family: var(--font-body); letter-spacing: 2px;}

/* Ornaments */
.ornament { position: absolute; width: 48px; height: 48px; background: rgba(255,255,255,0.02); border: var(--glass-border); border-radius: 12px; display: flex; justify-content: center; align-items: center; -webkit-  animation: float-slow 6s ease-in-out infinite alternate;}
.ornament-tr { top: 10%; right: -24px; animation-delay: 1s;}
.ornament-bl { bottom: 10%; left: -24px; animation-delay: 0s;}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
@keyframes move-plasma-1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-10vw, 5vh) scale(1.1); } }
@keyframes move-plasma-2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(10vw, -5vh) scale(1.2); } }
@keyframes liquid-shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(255, 26, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0); } }
@keyframes float-slow { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }

.floating-pro { animation: float-slow 8s ease-in-out infinite alternate; }

.fade-up { opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in { opacity: 0; transition: all 1s ease-out; }
.fade-down { opacity: 0; transform: translateY(-20px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Asymmetrical Layout for Desktop */
@media (min-width: 992px) {
  .hero-grid-asymmetric {
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 0; /* Important for overlap */
  }
  .hero-content-layer { padding-right: 40px; }
  .pro-cta-group { flex-direction: row; }
  
  /* Create the extreme overlap */
  .hero-visual-layer { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 50%; }
}
@media (min-width: 1200px) {
  .hero-visual-layer { width: 55%; right: -5%; } /* Pushes screen boundaries for immersive depth */
}


/* =========================================
   PHASE 2: 9-IN-1 ECOSYSTEM STICKY SCROLL
   ========================================= */
.ecosystem-section {
  position: relative; padding: 120px 0; background: var(--bg-deep); z-index: 20; border-top: var(--glass-border);
}
.eco-grid-split {
  display: grid; grid-template-columns: 1fr; gap: 60px;
}

/* --- Left Layer: Sticky Visual --- */
.eco-sticky-column { display: none; } /* Hidden on mobile */


/* --- Right Layer: Scrollable Content --- */
.eco-scroll-column { width: 100%; }

.ui-layer {
  will-change: opacity;
}
.ui-layer.show-layer {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.scroll-header { margin-bottom: 60px; text-align: center; }
.section-title { font-family: var(--font-hero); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px;}
.section-sub { font-size: 1.1rem; color: var(--color-muted); max-width: 600px; margin: 0 auto;}

.eco-cards-container { display: flex; flex-direction: column; gap: 24px; padding-bottom: 20px; }

.eco-card {
  padding: 32px; background: rgba(30, 30, 35, 0.4); border: var(--glass-border); border-radius: 16px;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s, border-color 0.6s;
  opacity: 0.4; transform: scale(0.95) translateZ(0); position: relative; overflow: hidden;
  will-change: opacity, transform;
}

/* Base Card Typo */
.card-icon {
  width: 50px; height: 50px; background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.2); 
  border-radius: 12px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px;
  transition: var(--transition);
}
.card-number { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 800; color: var(--color-ferrari-red); letter-spacing: 2px; margin-bottom: 12px; }
.eco-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 12px; }
.eco-card p { font-size: 0.95rem; color: var(--color-muted); line-height: 1.6; }

/* The "Active" Interaction State from JS */
.eco-card.active-card {
  opacity: 1; transform: scale(1); border-color: rgba(212, 175, 55, 0.5); background: rgba(20, 15, 5, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(212, 175, 55, 0.05);
}
.eco-card.active-card .card-number { color: var(--color-gold); }
.eco-card.active-card .card-icon { background: rgba(212, 175, 55, 0.15); box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); border-color: var(--color-gold);}

/* Dev Ecosystem Specifics (Card 01) */
.tech-icon-box { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; width: 85px; height: 85px; gap: 10px; color: var(--color-white); font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 0.5px; opacity: 0.8; transition: all 0.3s; padding: 5px; text-align: center;}
.tech-icon-box img { width: 32px; height: 32px; object-fit: contain; transition: transform 0.3s; }
.tech-icon-box span { width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.tech-icon-box:hover { opacity: 1; background: rgba(212, 175, 55, 0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }
.tech-icon-box:hover img { transform: scale(1.15); }

/* Client Glow Boxes (Yellow Borders & Glow Effect) */
.client-glow-box {
  width: 42px; height: 42px;
  background: rgba(212, 175, 55, 0.05); 
  border: 1px solid rgba(212, 175, 55, 0.2); 
  border-radius: 8px; 
  display: flex; justify-content: center; align-items: center;
  transition: var(--transition);
}
.eco-card.active-card .client-glow-box {
  background: rgba(212, 175, 55, 0.15); 
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); 
  border-color: var(--color-gold);
}
.client-glow-box img {
    max-width: 75%; max-height: 75%; object-fit: contain;
    transition: all 0.3s ease;
}
.client-glow-box:hover {
    transform: translateY(-2px);
}
.client-glow-box:hover img {
    transform: scale(1.05);
}

/* The 5-Step Pipeline (Card 01) */
.dev-pipeline-container { padding: 20px; background: rgba(10, 0, 0, 0.8); border-top: 1px solid rgba(212, 175, 55, 0.2); }
.pipeline-track { display: flex; justify-content: space-between; position: relative; }
.pipeline-track::before { content: ''; position: absolute; top: 10px; left: 10%; right: 10%; height: 2px; background: rgba(255,255,255,0.1); z-index: 1; }
.pipe-step { position: relative; z-index: 2; text-align: center; font-size: 0.65rem; color: var(--color-muted); font-family: var(--font-body); letter-spacing: 0.5px; opacity: 0.5; transition: all 0.3s; width: 20%;}
.pipe-step span { display: inline-flex; justify-content: center; align-items: center; width: 22px; height: 22px; background: var(--bg-deep); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; font-family: var(--font-heading); font-size: 0.6rem; margin-bottom: 8px;}
.pipe-step.active-step { opacity: 1; color: var(--color-white); }
.pipe-step.active-step span { border-color: var(--color-gold); background: var(--color-ferrari-red); box-shadow: var(--glow-red); color: white;}

/* Card 02 Premium E-Commerce Marketplace UI */
.pro-market-grid::-webkit-scrollbar { width: 4px; }
.pro-market-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
.pro-market-grid::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 4px; }

.pro-card {
  display: flex; flex-direction: column; 
  background: rgba(15,15,15, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.pro-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.1);
}

.pro-cover {
  height: 100px;
  background-size: cover; background-position: center; border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.pro-cover::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(15,15,15,1));
}

.pro-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,0.1); 
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  padding: 3px 8px; font-family: var(--font-heading); font-size: 0.5rem; font-weight: bold;
  color: var(--color-white); letter-spacing: 1px;
}

.pro-info {
  padding: 15px; display: flex; flex-direction: column; flex-grow: 1; z-index: 1; margin-top: -10px;
}
.pro-info h5 {
  font-family: var(--font-heading); font-size: 0.85rem; color: var(--color-white); margin-bottom: 5px;
}
.pro-desc {
  font-size: 0.65rem; color: var(--color-muted); line-height: 1.4; margin-bottom: 15px; flex-grow: 1;
}

.pro-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.pro-price {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--color-gold);
}
.pro-btn {
  background: var(--color-white); color: var(--bg-deep); border: none; border-radius: 6px;
  padding: 6px 14px; font-family: var(--font-heading); font-size: 0.6rem; font-weight: bold;
  cursor: pointer; transition: all 0.3s;
}
.pro-btn:hover { background: var(--color-gold); box-shadow: 0 0 10px rgba(212,175,55,0.5); }

/* Card 03 KYC Verification UI */
:root {
  --color-neon-green: #00ffaa;
  --kyc-rgb: 0, 255, 170;
}

.kyc-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 15px; height: 100%;
}
.kyc-panel {
  background: rgba(15,15,15,0.7);
  border: 1px solid rgba(var(--kyc-rgb), 0.15);
  border-radius: 12px; padding: 15px;
  display: flex; flex-direction: column; gap: 10px;
}
.kyc-panel-header {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); color: var(--color-white); font-size: 0.7rem;
}
.kyc-panel-header small { color: var(--color-neon-green); font-size: 0.5rem; letter-spacing: 1px; }

.kyc-scanner-box {
  flex-grow: 1; border: 1px solid rgba(var(--kyc-rgb), 0.2); border-radius: 8px;
  background: radial-gradient(circle at center, rgba(var(--kyc-rgb), 0.1) 0%, transparent 80%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Face Scanner */
.kyc-face-mesh {
  width: 120px; height: 140px; position: relative;
}
.kyc-crosshair {
  position: absolute; width: 15px; height: 15px; border: 2px solid var(--color-neon-green);
}
.kyc-crosshair.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.kyc-crosshair.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.kyc-crosshair.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.kyc-crosshair.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.kyc-scan-line {
  position: absolute; left: -10%; top: 0; width: 120%; height: 2px;
  background: var(--color-neon-green); box-shadow: 0 0 10px var(--color-neon-green);
  z-index: 10; animation: scanUpDown 3s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scanUpDown {
  0% { transform: translateY(0); opacity: 0; }
  10% { transform: translateY(14px); opacity: 1; }
  90% { transform: translateY(126px); opacity: 1; }
  100% { transform: translateY(140px); opacity: 0; }
}

@keyframes scrollLogsVertical {
    0% { transform: translateY(10px); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-70px); opacity: 0; }
}

@keyframes orb-travel {
    0%   { top: 0; left: 0; opacity: 0; }
    2%   { top: 0; left: 0; opacity: 1; }
    30%  { top: 0; left: 100%; }
    32%  { top: 2px; left: calc(100% + 15px); }
    35%  { top: 25%; left: calc(100% + 25px); }
    38%  { top: calc(50% - 2px); left: calc(100% + 15px); }
    40%  { top: 50%; left: 100%; }
    60%  { top: 50%; left: 0; }
    62%  { top: calc(50% + 2px); left: -15px; }
    65%  { top: 75%; left: -25px; }
    68%  { top: calc(100% - 2px); left: -15px; }
    70%  { top: 100%; left: 0; }
    98%  { top: 100%; left: 100%; opacity: 1; }
    100% { top: 100%; left: 100%; opacity: 0; }
}

/* Document Scanner */
.kyc-id-card {
  width: 140px; height: 90px; background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0, 255, 170, 0.3);
  border-radius: 6px; display: flex; padding: 10px; gap: 10px;
  box-shadow: inset 0 0 15px rgba(0,255,170,0.15);
}
.kyc-id-photo {
  width: 30px; height: 40px; border: 1px solid rgba(0, 255, 170, 0.6); border-radius: 4px;
  background: linear-gradient(135deg, rgba(0,255,170,0.2), transparent);
}
.kyc-id-text { flex-grow: 1; display: flex; flex-direction: column; gap: 6px; margin-top: 5px; }
.kyc-line.skeleton { height: 4px; background: rgba(0,255,170,0.4); border-radius: 2px; width: 90%; }
.kyc-line.skeleton.short { width: 50%; }

.kyc-scan-box-bounds {
  position: absolute; width: 160px; height: 110px; 
  border: 2px solid var(--color-neon-green); border-radius: 8px;
  animation: pulseBounds 2s infinite; pointer-events: none;
}
@keyframes pulseBounds {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.kyc-match-badge {
  position: absolute; bottom: 10px; background: rgba(var(--kyc-rgb), 0.2);
  border: 1px solid var(--color-neon-green); border-radius: 6px;
  padding: 6px 12px; display: flex; align-items: center; gap: 8px;
  color: var(--color-white);
  
  -webkit-
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards; opacity: 0; transform: translateY(10px);
}
.kyc-match-badge strong { font-size: 0.65rem; font-family: var(--font-heading); letter-spacing: 1px;}
.kyc-match-badge span { font-size: 0.45rem; font-family: var(--font-mono, monospace); color: rgba(255,255,255,0.7); opacity: 0.8; }

/* Card 04 Social Commerce UI */
:root {
  --soc-color: #D4AF37;
  --soc-rgb: 212, 175, 55;
}

.soc-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 15px; height: 100%;
}
.soc-panel {
  background: rgba(15,15,15,0.7);
  border: 1px solid rgba(var(--soc-rgb), 0.15);
  border-radius: 12px; padding: 15px;
  display: flex; flex-direction: column;
}
.soc-panel-header {
  font-family: var(--font-heading); color: var(--soc-color); font-size: 0.6rem; letter-spacing: 1px;
  border-bottom: 1px solid rgba(var(--soc-rgb), 0.2); padding-bottom: 8px; margin-bottom: 10px;
}
.soc-network-box {
  flex-grow: 1; display: flex; align-items: center; justify-content: center;
}
.soc-line { stroke: rgba(var(--soc-rgb), 0.3); stroke-width: 2; stroke-dasharray: 4; animation: dashMove 2s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -20; } }

.soc-node { fill: rgba(10,10,10,0.8); stroke: var(--soc-color); stroke-width: 2; }
.soc-node.core { fill: rgba(var(--soc-rgb), 0.2); stroke-width: 4; box-shadow: 0 0 20px rgba(var(--soc-rgb), 0.5); }
.soc-node.pulsing { animation: socPulse 1.5s infinite alternate; }
@keyframes socPulse { from { r: 10; stroke-width: 1; } to { r: 15; stroke-width: 3; } }

.peso-blink {
  fill: #00ff66; /* Vibrant Green */
  font-family: var(--font-hero);
  font-size: 16px;
  animation: pesoPulse 1.2s infinite alternate;
}
@keyframes pesoPulse {
  from { opacity: 0.3; transform: scale(1); text-shadow: 0 0 5px rgba(0,255,102,0.2); }
  to { opacity: 1; transform: scale(1.2); text-shadow: 0 0 15px rgba(0,255,102,0.8); }
}

.soc-bar { width: 15px; background: linear-gradient(to top, rgba(var(--soc-rgb), 0.1), var(--soc-color)); border-radius: 3px 3px 0 0; }
.soc-logs p { font-family: var(--font-mono, monospace); font-size: 0.65rem; color: rgba(255,255,255,0.5); margin: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 4px;}
@keyframes popIn { to { opacity: 1; transform: translateY(0); } }

.kyc-logs p {
  font-size: 0.55rem; color: var(--color-muted); margin: 3px 0; font-family: monospace;
}

/* Blinking dot utility */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.blinking-dot { animation: blink 1s infinite; }

/* Holographic Visual Mockup Design (Global structure) */
.sticky-visual-wrapper { position: relative; width: 100%; max-width: 500px; aspect-ratio: 4/5; perspective: 1000px; margin: 0 auto;}
.eco-floating-orb { position: absolute; top: 50%; left: 50%; transform: translate3d(-50%, -50%, 0); width: 100%; height: 100%; max-width: 300px; max-height: 300px; background: radial-gradient(circle, var(--color-ferrari-red) 0%, transparent 70%); opacity: 0.4; animation: pulse 4s infinite alternate; will-change: transform, opacity; }

.holographic-mockup {
  width: 100%; height: 100%; background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(20,0,0,0.5) 100%);
  border: 1px solid rgba(229,0,0,0.3); border-radius: 24px; -webkit- 
  box-shadow: var(--shadow-pro), inset 0 0 60px rgba(229,0,0,0.1); display: flex; flex-direction: column; overflow: hidden;
  transform: rotateY(5deg) rotateX(2deg) translateZ(0); padding: 30px; will-change: transform;
}
.mockup-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; margin-bottom: 30px;}
.mockup-header span { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; color: var(--color-muted);}
.status-indicator { width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; box-shadow: 0 0 10px var(--color-gold);}

.mockup-title { font-family: var(--font-hero); font-size: 1.8rem; margin-bottom: 5px; color: var(--color-white);}
.mockup-sub { font-size: 0.9rem; color: var(--color-ferrari-neon); margin-bottom: 40px;}

.data-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px;}
.line { height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; }

.central-core-ring { width: 120px; height: 120px; border: 2px dashed rgba(212,175,55,0.4); border-radius: 50%; margin: 0 auto; animation: rotate 20s linear infinite;}
@keyframes rotate { 100% { transform: rotate(360deg); } }

@media (min-width: 992px) {
  .eco-grid-split { grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
  .eco-sticky-column { display: block; position: sticky; top: 180px; height: calc(100vh - 200px); display: flex; align-items: center;}
  .scroll-header { text-align: left; }
  .section-sub { margin: 0; }
}

/* =========================================
   STRATEGIC MOAT SECTION
   ========================================= */
.strategic-moat-section {
  position: relative;
  background-color: #030303;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.moat-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.moat-content-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moat-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moat-title {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.moat-subtitle {
  font-family: var(--font-body);
  color: #a0a0a0;
  font-size: 1.1rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  /* Ecosystem Mobile Header & Animation Reordering */
  .eco-grid-split {
    display: flex;
    flex-direction: column;
  }
  .eco-scroll-column {
    display: contents; /* Strip wrapper so children flex directly under eco-grid-split */
  }
  .scroll-header {
    order: 1;
    margin-bottom: 40px;
  }
  .eco-sticky-column {
    display: flex !important; /* Reveal animation block on mobile */
    order: 2;
    margin-bottom: 60px;
    height: 450px; 
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .holographic-mockup {
    transform: none; /* Disable 3D tilt for cleaner mobile read */
    padding: 20px;
  }
  .eco-cards-container {
    order: 3;
  }

  /* Force Display the Constellation (06) Graphic instead of 01 on Mobile */
  #recurring-transactions-06 {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 100 !important;
  }
}

/* Card 06 Animations */
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Card 07 Animations (Website Builder) */
@keyframes smooth-scroll-page {
  0% { transform: translateY(0); }
  10% { transform: translateY(0); }
  40% { transform: translateY(-10%); }
  60% { transform: translateY(-10%); }
  90% { transform: translateY(-20%); }
  100% { transform: translateY(-20%); }
}

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

@keyframes float-iso {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -15px; }
}

/* ========================================================================= */
/* 9 DIGITAL BUSINESS PILLARS SECTION                                        */
/* ========================================================================= */
.business-pillars-section {
  position: relative;
  padding: 100px 20px;
  background: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.network-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.network-grid-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, #050505 80%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.pillar-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 5, 5, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
  
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 20px rgba(0, 0, 0, 0.8);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1), 0 5px 15px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.pillar-icon-box img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  border-color: #d4af37;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3), 0 8px 20px rgba(212,175,55,0.2);
}

.pillar-card:hover .pillar-icon-box img {
  transform: scale(1.15) translateY(-2px);
}

.pillar-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-title {
  color: #d4af37;
}

.pillar-desc {
  font-family: var(--font-body);
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-desc {
  color: #ccc;
}

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

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pillar-card {
    padding: 25px 20px;
  }
}@keyframes pulse-green {
  from { box-shadow: 0 0 10px rgba(0,255,102,0.2); }
  to { box-shadow: 0 0 30px rgba(0,255,102,0.8); }
}

/* ========================================================================= */
/* SUPPLIER HUB & SPOKE ECOSYSTEM                                            */
/* ========================================================================= */
.supplier-hub-section {
  position: relative;
  padding: 40px 20px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.supplier-ambient-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1500px;
  height: 1500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hub-spoke-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1400px;
  margin: 15px auto;
}

/* SPOKES */
.spoke-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 5;
}
.left-spokes { text-align: right; }
.right-spokes { text-align: left; }

.spoke-card {
  position: relative;
  padding: 15px;
  background: linear-gradient(135deg, rgba(20,5,5,0.95), rgba(5,5,5,0.98));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.spoke-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212,175,55,0.15), 0 0 20px rgba(212,175,55,0.3) inset;
}

.left-spokes .spoke-card {
  border-right: 3px solid #ff3333;
}
.right-spokes .spoke-card {
  border-left: 3px solid #ff3333;
}

.spoke-icon {
  position: absolute;
  top: -20px;
  background: #0d0d0f;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-spokes .spoke-icon { right: 20px; }
.right-spokes .spoke-icon { left: 20px; }
.spoke-icon img { width: 28px; height: 28px; }

.spoke-content h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 5px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}
.spoke-content p {
  color: #a0a0a0;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.spoke-badge {
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #ff3333;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.spoke-card:hover .spoke-badge { color: #d4af37; }

/* SVG/CSS Lines - Targeted Starburst Connection */
.spoke-line-right, .spoke-line-left {
  position: absolute;
  top: 50%;
  height: 2px;
  opacity: 0.4;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Base fade gradients and transform origins */
.left-spokes .spoke-line-right { 
  background: linear-gradient(90deg, #ff3333, rgba(212,175,55,0)); 
  transform-origin: left center;
}
.right-spokes .spoke-line-left { 
  background: linear-gradient(90deg, rgba(212,175,55,0), #ff3333); 
  transform-origin: right center;
}

/* Top Level */
.left-spokes .spoke-card:nth-child(1) .spoke-line-right { width: 140px; right: -140px; transform: translateY(-50%) rotate(25deg); }
.right-spokes .spoke-card:nth-child(1) .spoke-line-left { width: 140px; left: -140px; transform: translateY(-50%) rotate(-25deg); }

/* Middle Level */
.left-spokes .spoke-card:nth-child(2) .spoke-line-right { width: 90px; right: -90px; transform: translateY(-50%) rotate(0deg); }
.right-spokes .spoke-card:nth-child(2) .spoke-line-left { width: 90px; left: -90px; transform: translateY(-50%) rotate(0deg); }

/* Bottom Level */
.left-spokes .spoke-card:nth-child(3) .spoke-line-right { width: 140px; right: -140px; transform: translateY(-50%) rotate(-25deg); }
.right-spokes .spoke-card:nth-child(3) .spoke-line-left { width: 140px; left: -140px; transform: translateY(-50%) rotate(25deg); }

.spoke-card:hover .spoke-line-right, .spoke-card:hover .spoke-line-left {
  opacity: 1;
  box-shadow: 0 0 10px #ff3333;
}

/* REACTOR CORE */
.hub-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.floating-animation {
  animation: floatOrb 6s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.reactor-core {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.core-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.3);
  animation: spinRing linear infinite;
}
.ring-1 {
  border: 2px solid rgba(212,175,55,0.4);
  border-top-color: transparent;
  animation-duration: 20s;
}
.ring-2 {
  top: 20px; bottom: 20px; left: 20px; right: 20px;
  border: 1px solid rgba(255,51,51,0.5);
  border-bottom-color: transparent;
  animation-duration: 15s;
  animation-direction: reverse;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.core-center {
  position: relative;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #2a0a0a 0%, #0d0000 80%);
  border: 3px solid #d4af37;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px rgba(255,51,51,0.4), inset 0 0 30px rgba(212,175,55,0.2);
  z-index: 10;
  padding-bottom: 8px; /* Lift contents to clear bottom shield */
}
.core-logo {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fffaf0; /* ultra hot core white */
  margin: -10px 0 -5px 0;
  font-style: italic;
  letter-spacing: -2px;
  animation: motherFlame 0.6s linear infinite alternate;
}

@keyframes motherFlame {
  0% {
    text-shadow: 
      0 1px 5px #fff,
      0 -2px 10px #ffcc00,
      -2px -5px 15px #ff6600;
  }
  50% {
    text-shadow: 
      0 1px 5px #fff,
      1px -4px 15px #ffcc00,
      -2px -8px 20px #ff6600;
  }
  100% {
    text-shadow: 
      0 1px 5px #fff,
      0 -2px 10px #ffcc00,
      -1px -5px 15px #ff6600;
  }
}

.core-sub {
  font-family: 'Courier New', monospace;
  font-size: 0.55rem;
  color: #d4af37;
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.2;
}
.core-shield {
  position: absolute;
  bottom: -15px;
  background: #050505;
  border: 2px solid #d4af37;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-banner {
  position: absolute;
  bottom: -60px;
  background: linear-gradient(90deg, #8b0000, #ff3333, #8b0000);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 10px 30px;
  border-radius: 4px;
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 5px 20px rgba(255,51,51,0.4);
  text-transform: uppercase;
  white-space: nowrap;
}

/* FOOTER */
.supplier-footer {
  margin-top: 30px;
  padding: 15px 30px;
  background: rgba(20,5,5,0.6);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  text-align: center;
}
.footer-top {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-bottom {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsive Hub & Spoke */
@media (max-width: 1024px) {
  .hub-spoke-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .left-spokes, .right-spokes {
    text-align: center;
    align-items: center;
  }
  .left-spokes .spoke-card, .right-spokes .spoke-card {
    border: 1px solid rgba(212,175,55,0.2);
    border-top: 3px solid #ff3333;
    max-width: 500px;
  }
  .spoke-line-right, .spoke-line-left { display: none; }
  .left-spokes .spoke-icon, .right-spokes .spoke-icon { right: auto; left: 50%; transform: translateX(-50%); }
  .hub-center { grid-row: 1; margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .supplier-hub-section { padding: 60px 15px; }
  .supplier-title { font-size: 2.2rem !important; }
  .reactor-core { transform: scale(0.85); margin: 0 auto; }
  .footer-bottom { font-size: 1.4rem !important; }
  .hub-spoke-grid { gap: 40px; margin-top: 40px; }
  .spoke-card { padding: 20px; }
}

/* ========================================================================= */
/* 9 DIGITAL BUSINESS PILLARS (BATTERY BUILDING TOWER)                       */
/* ========================================================================= */
.battery-pillars-section {
  position: relative;
  padding: 100px 20px;
  background: #000;
  color: #fff;
  overflow: hidden;
  z-index: 10;
}

.battery-network-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at right center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
              radial-gradient(circle at left center, rgba(255, 51, 51, 0.05) 0%, transparent 70%),
              linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100px 100px, 100px 100px;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0); /* Hardware accelerate the grid pattern */
  will-change: transform;
}

.battery-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Panel */
.battery-left-panel {
  padding-right: 20px;
}

.layer-descriptions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.layer-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: linear-gradient(90deg, rgba(20,5,5,0.8), transparent);
  border: 1px solid rgba(255,51,51,0.1);
  border-left: 4px solid #ff3333;
  border-radius: 8px;
  background: rgba(20,5,5,0.9);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.layer-item:hover {
  transform: translateX(10px);
  border-left-color: #d4af37;
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.layer-badge {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ff3333;
  padding-right: 15px;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.layer-text {
  flex-grow: 1;
}

.layer-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.layer-text p {
  color: #aaa;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

/* Right Panel: Isometric Tower */
.battery-tower-panel {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.isometric-tower {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 15px;
  width: 100%;
}

/* Base glowing electricity line behind everything */
.isometric-tower::before {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 0px;
  width: 6px;
  background: linear-gradient(180deg, #d4af37, #ff3333, #8b0000, #ff3333);
  box-shadow: 0 0 15px #d4af37, 0 0 30px #ff3333;
  z-index: 0;
  animation: pulseElectricity 1.5s infinite alternate;
  border-radius: 6px;
}

/* Tower Base & Floors */
.tower-floor {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.tower-floor:hover {
  transform: translateY(-5px);
  z-index: 10;
}

/* The platform disk */
.floor-plate {
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, #1a0505 0%, #050000 100%);
  border: 1px solid rgba(255,51,51,0.4);
  border-bottom: 3px solid #d4af37;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(255,51,51,0.2), inset 0 -2px 10px rgba(212,175,55,0.4);
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.tower-floor:hover .floor-plate {
  border-bottom: 3px solid #ff3333;
  box-shadow: 0 15px 30px rgba(255,51,51,0.4), inset 0 -3px 15px rgba(212,175,55,0.6);
}

/* Center node distribution */
.floor-nodes {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 15px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}
.center-node {
  justify-content: center;
}

.tower-node {
  background: linear-gradient(180deg, rgba(30,5,5,0.9), rgba(5,5,5,0.95));
  border: 1px solid rgba(212,175,55,0.2);
  border-bottom: 2px solid #8b0000;
  border-radius: 12px;
  padding: 15px;
  width: calc(50% - 15px);
  max-width: 280px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.8), inset 0 0 15px rgba(255,51,51,0.05);
  text-align: center;
  position: relative;
  background: rgba(30,5,5,0.95);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tower-node:hover {
  border-color: #d4af37;
  border-bottom: 2px solid #ffcc00;
  box-shadow: 0 15px 30px rgba(255,51,51,0.3), inset 0 0 20px rgba(212,175,55,0.2);
  transform: translateY(-8px);
}

.node-badge {
  position: absolute;
  top: -10px; left: -10px;
  background: #111;
  color: #ff3333;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,51,51,0.5);
  box-shadow: 0 0 10px rgba(255,51,51,0.3);
}

.tower-node:hover .node-badge {
  background: #ff3333;
  color: #fff;
}

.node-icon-wrapper {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.node-asset {
  max-width: 100%;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}

.tower-node h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.tower-node p {
  color: #a0a0a0;
  font-size: 0.7rem;
  line-height: 1.4;
  margin: 0;
}

/* Tower Roof & NNT Logo */
.tower-roof {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: -5px;
  z-index: 10;
}

.reactor-core-top {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #2a0a0a 0%, #050505 80%);
  border-radius: 50%;
  border: 4px solid #ffcc00;
  box-shadow: 0 0 50px rgba(255,51,51,0.6), inset 0 0 30px rgba(212,175,55,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.reactor-core-top::after {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 3px dashed rgba(255,51,51,0.5);
  border-radius: 50%;
  animation: spinRing 5s linear infinite reverse;
}

.nnt-top-logo {
  max-width: 80px;
  filter: drop-shadow(0 0 10px #fff);
  animation: motherFlameIcon 0.4s linear infinite alternate;
}

.reactor-core-top p {
  font-family: 'Courier New', monospace;
  font-size: 0.55rem;
  color: #d4af37;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

.roof-base {
  width: 250px;
  height: 20px;
  background: linear-gradient(180deg, #1a0505 0%, #050000 100%);
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: 0 10px 20px rgba(255,51,51,0.4);
  margin-top: -20px;
  z-index: 1;
}

.tower-base-landing {
  width: 120%;
  margin-left: -10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255,200,0,0.2) 0%, transparent 70%);
  border-bottom: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  margin-top: 10px;
  box-shadow: 0 20px 50px rgba(255,51,51,0.4);
}

/* Animations optimized for 60fps scrolling (Hardware Accelerated) */
@keyframes pulseElectricity {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@keyframes motherFlameIcon {
  0% { transform: translate3d(0, 0px, 0) scale(0.98); opacity: 0.8; }
  100% { transform: translate3d(0, -2px, 0) scale(1.02); opacity: 1; }
}

/* Media Queries for Tower Section */
@media (max-width: 1024px) {
  .battery-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .battery-left-panel {
    padding-right: 0;
    text-align: center;
  }
  .section-subtitle {
    margin: 20px auto !important;
    text-align: center !important;
  }
  .layer-descriptions {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
  .layer-item {
    width: 45%;
    flex-direction: column;
    text-align: center;
    border-left: 1px solid rgba(255,51,51,0.1);
    border-top: 4px solid #ff3333;
  }
  .layer-badge {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    transform: none;
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 768px) {
  .layer-item { width: 100%; }
  .floor-nodes {
    flex-direction: column;
    align-items: center;
  }
  .tower-node { width: 100%; max-width: 100%; margin-bottom: 15px; }
  .floor-plate {
    display: none; 
  }
  .isometric-tower::before {
    display: none; 
  }
  .tower-roof {
    margin-bottom: 30px;
  }
  .roof-base { display: none; }
  .tower-base-landing { display: none; }
}

/* Bottom Info Badges */
.info-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(10,5,5,0.8);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.info-badge:hover {
  background: rgba(20,5,5,0.9);
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.info-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,51,51,0.1);
  border-radius: 50%;
  border: 1px solid rgba(255,51,51,0.3);
  flex-shrink: 0;
}
.info-icon img { width: 24px; height: 24px; }
.info-text { flex-grow: 1; }
.info-text h5 { color: #fff; font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 5px; letter-spacing: 0.5px; }
.info-text p { color: #aaa; font-size: 0.75rem; margin: 0; line-height: 1.3; }

@media (max-width: 1024px) {
  .bottom-badges-container { grid-template-columns: repeat(2, 1fr) !important; padding: 20px !important; }
}
@media (max-width: 768px) {
  .bottom-badges-container { grid-template-columns: 1fr !important; padding: 15px !important; }
}

/* ========================================================= */
/* ONE PIECE CONQUEROR'S HAKI (MOTHER FLAME TOWER CORE)      */
/* ========================================================= */
/* ========================================================= */
/* NEXT-GEN PLASMA REACTOR CORE (MOTHER FLAME / ENERGY)      */
/* ========================================================= */
.plasma-reactor-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.core-plasma-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
  z-index: 20;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px #ff3300, 0 0 40px #ff0000;
  animation: plasmaPulse 2s ease-in-out infinite alternate;
}

.core-plasma-orb {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at center, rgba(255,51,51,0.8), rgba(139,0,0,0.2) 70%, transparent 100%);
  border-radius: 50%;
  z-index: 5;
  filter: blur(5px);
  animation: orbBreathe 1.5s ease-in-out infinite alternate;
}

.plasma-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
  z-index: 10;
}

.plasma-ring-1 {
  width: 100px; height: 100px;
  margin-top: -50px; margin-left: -50px;
  border-top-color: #ff3300;
  border-bottom-color: #d4af37;
  animation: spinPlasma 3s linear infinite;
  box-shadow: 0 0 15px rgba(255,51,51,0.3);
}

.plasma-ring-2 {
  width: 120px; height: 120px;
  margin-top: -60px; margin-left: -60px;
  border-left-color: #ff0000;
  border-right-color: #d4af37;
  animation: spinPlasma 4s linear infinite reverse;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.plasma-ring-3 {
  width: 140px; height: 140px;
  margin-top: -70px; margin-left: -70px;
  border: 2px dashed rgba(255,51,51,0.4);
  animation: spinPlasma 6s linear infinite;
}

@keyframes spinPlasma {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbBreathe {
  0% { transform: scale3d(0.8, 0.8, 1); opacity: 0.6; }
  100% { transform: scale3d(1.3, 1.3, 1); opacity: 1; }
}

@keyframes plasmaPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* ========================================================================= */
/* REVENUE ARCHITECTURE SECTION                                              */
/* ========================================================================= */
.revenue-architecture-section {
  position: relative;
  padding: 120px 20px;
  background: #000;
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.revenue-dashboard-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(rgba(255,51,51,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,51,51,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.revenue-grid-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, #000 85%);
}

.revenue-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.revenue-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.revenue-matrix-hub {
  position: relative;
}

/* --- HYPER-MINIMALIST PIPELINE DIAGRAM (Premium Upgrade) --- */
.pipeline-diagram-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 120px auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.pipeline-svg-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 15;
  /* Removed drop-shadow filter to fix severe paint lag on scroll */
}

.pipeline-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(130px, auto);
  gap: 20px;
  width: 100%;
}

/* Explicit Grid Placements for the 12-Node "Processor Chip" Layout */
#pipe-node-1 { grid-area: 1 / 1 / 2 / 2; }
#pipe-node-2 { grid-area: 1 / 2 / 2 / 3; }
#pipe-node-3 { grid-area: 1 / 3 / 2 / 4; }
#pipe-node-4 { grid-area: 1 / 4 / 2 / 5; }

#pipe-node-5 { grid-area: 2 / 1 / 3 / 2; }
#pipe-node-6 { grid-area: 3 / 1 / 4 / 2; }

#pipe-core-node { grid-area: 2 / 2 / 4 / 4; margin: auto; }

#pipe-node-7 { grid-area: 2 / 4 / 3 / 5; }
#pipe-node-8 { grid-area: 3 / 4 / 4 / 5; }

#pipe-node-9 { grid-area: 4 / 1 / 5 / 2; }
#pipe-node-10 { grid-area: 4 / 2 / 5 / 3; }
#pipe-node-11 { grid-area: 4 / 3 / 5 / 4; }
#pipe-node-12 { grid-area: 4 / 4 / 5 / 5; }

/* Upgraded node style - Heavier, punchier, high contrast */
.pipeline-node {
  background: rgba(15, 20, 15, 0.95); /* Deepened opacity to compensate for removed blur */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(0, 255, 136, 0.4); 
  border-top-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Removed backdrop-filter to prevent 60fps frame drops on scrolling */
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.03), 0 15px 30px rgba(0,0,0,0.6); 
  transform: translateZ(0); 
  will-change: transform;
}

.pipeline-node:hover {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(30, 25, 15, 0.95);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05);
  transform: translateY(-4px) scale(1.02);
}

.node-icon {
  width: 44px;
  height: 44px;
  display: flex;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.node-icon img {
  width: 100%;
  height: auto;
}

.node-text {
  display: flex;
  flex-direction: column;
}

.node-text h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.micro-stat {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.profit-stat { color: #00FF88; }
.highlighted-stat { color: var(--color-gold); }

/* Carry over the massive typography from Cinematic iteration */
.impact-stat {
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.gold-color {
  background: linear-gradient(135deg, #FFDF00, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.profit-color {
  color: #00FF88;
  text-shadow: 0 0 30px rgba(0,255,136,0.4);
}

/* MASSIVE PHYSICAL VAULT CHASSIS */
.vault-core-chassis {
    grid-area: 2 / 2 / 4 / 4; 
    margin: auto;
    width: min(340px, 90vw);
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(135deg, #cca842 0%, #9e7500 100%);
    box-shadow: 
        inset 0 0 0 10px #634a00, 
        inset 0 0 20px 10px rgba(0,0,0,0.6), 
        0 30px 60px rgba(0,0,0,0.6),
        0 0 80px rgba(212,175,55,0.5); 
    border: 3px solid #3b2b00;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Vault Rivets in Corners */
.vault-core-chassis::before,
.vault-core-chassis::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #543f00;
    box-shadow: inset 0 2px 2px #ffe999;
}
.vault-core-chassis::before { top: 15px; left: 15px; box-shadow: inset 0 2px 2px #ffe999, 296px 0 0 #543f00, 296px 0 0 inset 0 2px 2px #ffe999; } 

/* The Vault Circular Door embedded in the chassis */
.vault-door {
    width: 82%;
    height: 82%;
    background: radial-gradient(circle at top left, #ffd700 0%, #7e5c08 80%);
    border-radius: 50%;
    border: 10px solid #503a00;
    box-shadow: 
        inset 0 0 40px rgba(0,0,0,0.8), 
        0 10px 15px rgba(0,0,0,0.7),
        0 0 0 4px #d8ae38; /* Metallic rim */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing Keypad/Lock Reader at top of the door */
.vault-keypad {
    position: absolute;
    top: 25px;
    display: flex;
    gap: 10px;
    background: #0a0a0a;
    padding: 6px 16px;
    border-radius: 6px;
    border: 2px solid #222;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.8), 0 2px 0 rgba(255,255,255,0.1);
}
.vault-keypad .led {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00FF88;
    box-shadow: 0 0 10px #00FF88, 0 0 20px #00FF88;
}
.led.blink-1 { animation: ledBlink 1.2s infinite alternate; }
.led.blink-2 { animation: ledBlink 0.8s infinite alternate-reverse; }

@keyframes ledBlink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* The Turning Wheel (Gold) */
.vault-wheel {
    position: relative;
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 12px solid #d4af37;
    box-shadow: 
        inset 0 10px 20px rgba(0,0,0,0.6), 
        0 15px 30px rgba(0,0,0,0.7),
        0 0 0 2px #aa8000;
    /* Spinning animation to show unlock sequence */
    animation: vaultTurn 15s ease-in-out infinite alternate;
}

/* Handles attached to wheel */
.vault-handle {
    position: absolute;
    width: 16px; height: 180px;
    background: linear-gradient(90deg, #8b6508 0%, #ffd700 50%, #8b6508 100%);
    top: 50%; left: 50%;
    transform-origin: center;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.6);
    z-index: 1;
}
.h-1 { transform: translate(-50%, -50%) rotate(0deg); }
.h-2 { transform: translate(-50%, -50%) rotate(45deg); }
.h-3 { transform: translate(-50%, -50%) rotate(90deg); }
.h-4 { transform: translate(-50%, -50%) rotate(135deg); }

/* Center Hub covering handles */
.vault-wheel-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #aa8000 100%);
    border-radius: 50%;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.4), 0 5px 15px rgba(0,0,0,0.6);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vault-wheel-inner {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #111;
    box-shadow: inset 0 2px 5px #000, 0 1px 0 rgba(255,255,255,0.4);
}

@keyframes vaultTurn {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(0deg); }
    40% { transform: rotate(180deg); }
    60% { transform: rotate(180deg); }
    90% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

/* Title Plaque physically mounted below wheel */
.vault-plaque {
    position: absolute;
    bottom: -15px; 
    background: linear-gradient(to bottom, #efd054, #b28900);
    border: 3px solid #ffea87;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.9),
        inset 0 2px 5px rgba(255,255,255,0.6);
    text-align: center;
    z-index: 20;
    min-width: 260px;
    transform: translateY(10%); /* Hangs significantly less to free up the space below */
}
.vault-plaque h4 {
    color: #3f3100;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.vault-plaque h2 {
    color: #111 !important; 
    font-size: 1.8rem !important;
    font-weight: 900;
    margin: 5px 0 !important;
    line-height: 1.1;
    text-shadow: 0 2px 0 rgba(255,255,255,0.3) !important;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}
.vault-plaque .micro-bold {
    color: #fff;
    background: #111;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.9);
}

/* SVG Path Animation Layers - Increased glow and thickness! */
.svg-tracer-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15); 
  stroke-width: 2; 
}

.svg-tracer-line {
  fill: none;
  stroke: url(#goldGradient); /* Injected via JS */
  stroke-width: 4; /* Visibly thick glowing pipe! */
  stroke-dasharray: 12 24;
  animation: traceStream 1.2s linear infinite; /* Faster flow */
  opacity: 1;
  will-change: stroke-dashoffset; /* Optimize animation */
  transform: translateZ(0);
}

@keyframes traceStream {
  from { stroke-dashoffset: 36; }
  to { stroke-dashoffset: 0; }
}

.gold-coin-particle {
    position: absolute;
    top: 0; left: 0;
    width: 24px; height: 24px;
    background-image: url('https://api.iconify.design/solar:dollar-circle-bold.svg?color=%23FFD700');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 16; /* above laser lines */
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 1));
    pointer-events: none;
    offset-rotate: 0deg; /* Keep coins upright */
    animation: flowCoin 2s linear infinite;
    opacity: 0; /* Base state hidden */
}

@keyframes flowCoin {
    0% { offset-distance: 0%; opacity: 0; transform: scale(0.5); }
    5% { opacity: 1; transform: scale(1); }
    95% { opacity: 1; transform: scale(1); }
    100% { offset-distance: 100%; opacity: 0; transform: scale(0.5); }
}

/* =========================================================================
   5. EMPOWERING PEOPLE SECTION (Premium Vision)
   ========================================================================= */
/* SECTION 5: THE RISING SUN */
.empowerment-section.rising-sun {
    position: relative;
    min-height: 120vh; /* Extremely tall for a proper movie-poster scroll */
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15vh;
    padding-bottom: 100px;
    overflow: hidden;
    /* Native Local Background Image - NEVER FAILS to load */
    background-image: url('nnt-nation-building.png');
    background-size: cover;
    background-position: center bottom;
    background-color: #1b132e;
}

/* Masterpiece $30k Sky Gradient layered ON TOP of the image */
.sky-gradient-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, 
        rgba(6, 8, 20, 0.95) 0%,      
        rgba(27, 19, 46, 0.9) 25%,     
        rgba(79, 29, 56, 0.8) 50%,     
        rgba(184, 58, 36, 0.7) 75%,     
        #ff9500 90%,     
        #ffd700 100%     
    );
    z-index: 1;
    /* Softly blends our golden/magenta gradient into the sky perfectly */
    mix-blend-mode: hard-light;
}

/* Add a glowing orb right behind the logo */
.sky-gradient-bg::after {
    content: '';
    position: absolute;
    bottom: -10%; left: 50%;
    transform: translateX(-50%);
    width: 150vw; height: 80vh;
    background: radial-gradient(ellipse at bottom center, rgba(255,230,100,0.9) 0%, rgba(255,149,0,0.5) 40%, transparent 70%);
    z-index: 2;
    mix-blend-mode: screen;
}

/* Typography sitting in the dark portion of the sky */
.sky-typography {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.vision-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: #ffaa44;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.vision-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1.15; /* Increased from 1.05 for healthy multi-line text breathing room */
    letter-spacing: -2px;
    margin: 0 0 40px 0;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.vision-manifesto {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.7;
    color: #e0d0e8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

/* =========================================
   The Glassmorphic Infrastructure Node
   ========================================= */
.sun-logo-container {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Premium Glass Processor Ring */
.glass-infrastructure-node {
    position: relative;
    width: clamp(280px, 25vw, 450px);
    height: clamp(280px, 25vw, 450px);
    border-radius: 50%;
    background: rgba(10, 8, 20, 0.3); /* Deep dark tint */
    backdrop-filter: blur(25px); /* Breathtaking frosted glass over the sunset */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Tech glass highlight */
    box-shadow: 0 30px 60px rgba(0,0,0,0.6),
                inset 0 0 50px rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Structural Tech Rings */
.orbital-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbital-ring.ring-1 {
    width: 110%; height: 110%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 2px solid rgba(212, 175, 55, 0.8);
    animation: spinClockwise 15s linear infinite;
}

.orbital-ring.ring-2 {
    width: 125%; height: 125%;
    border: 1px dashed rgba(0, 255, 136, 0.15);
    border-bottom: 2px solid rgba(0, 255, 136, 0.5);
    animation: spinCounter 25s linear infinite;
}

@keyframes spinClockwise {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinCounter {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.sun-logo-image {
    position: relative;
    width: 70%; /* Constrained beautifully inside the glass lens */
    height: auto;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.7));
    z-index: 10;
    animation: gentleHover 4s ease-in-out infinite;
}

@keyframes gentleHover {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* NATION-BUILDING Golden Beams anchored from the Glass Node */
.nation-core-beam {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.8), transparent);
    z-index: 1; /* Sits beneath the glass lens */
    pointer-events: none;
}

.left-beam {
    width: 40vw; height: 2px;
    right: 50%; top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    transform-origin: right center;
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.right-beam {
    width: 40vw; height: 2px;
    left: 50%; top: 50%;
    transform: translateY(-50%) rotate(10deg);
    transform-origin: left center;
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.bottom-beam {
    width: 2px; height: 60vh;
    left: 50%; top: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0,255,136,0.8), rgba(212,175,55,0));
    box-shadow: 0 0 20px rgba(0,255,136,0.4);
}

@media (max-width: 1100px) {
  .pipeline-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  #pipe-core-node { grid-area: auto !important; order: -1; margin-bottom: 40px; }
  .pipeline-node { grid-area: auto !important; margin-top: 0 !important; }
  .pipeline-svg-canvas { display: none; }
}
@media (max-width: 650px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
}

.column-metrics {
  flex-direction: column;
  align-items: flex-start;
}

.metric-pill {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-muted);
}

.highlighted-pill {
  color: var(--color-gold);
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.05);
}

.profit-pill {
  color: #00FF88;
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.05);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.node-chip-icon {
  margin-bottom: 25px;
}

.node-chip-icon img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(255,51,51,0.2));
}

.node-chip-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.node-chip-content p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.node-chip-status {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Specific styling for Future Expansion node */
.highlight-chip {
  background: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(30,10,10,1) 100%);
  border: 1px solid rgba(212,175,55,0.2);
}

/* Responsive collapse */
@media (max-width: 992px) {
  .revenue-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-wide  { grid-column: span 2; grid-row: span 1; }
  .bento-tall  { grid-column: span 1; grid-row: span 1; }
  .bento-base  { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .revenue-matrix-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-large, .bento-wide, .bento-tall, .bento-base {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-card {
    min-height: 200px;
  }
}

/* =========================================================================
   6. CINEMATIC VIDEO THEATER (Vision Presentation)
   ========================================================================= */
.cinematic-theater {
    position: relative;
    z-index: 20;
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-theater-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.theater-glow-backlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.4) 0%, rgba(255, 51, 51, 0.2) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse-glow 4s infinite alternate;
}

.theater-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #050505;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

/* This is a placeholder until the real video is embedded */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('nnt-nation-building.png') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 5, 15, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-placeholder:hover::before {
    background: rgba(10, 5, 15, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.play-btn-massive {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
    color: #fff;
    margin-bottom: 20px;
}

.video-placeholder:hover .play-btn-massive {
    transform: scale(1.1);
    background: var(--color-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.9);
}

.play-btn-massive svg {
    width: 35px;
    height: 35px;
    margin-left: 5px;
    fill: currentColor;
}

.video-overlay-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-overlay-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.video-overlay-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.theater-action-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.founder-note {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-note p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #e0d0e8;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-sig {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sig-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.founder-sig span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.theater-cta-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.btn-massive {
    font-size: 1.2rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.pulse-btn {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.secure-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #a0a0a0;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    /* Override container padding to allow edge-to-edge content */
    .container.cinematic-theater {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        width: 100%;
    }

    /* Premium Edge-to-Edge Mobile Video */
    .video-theater-wrapper {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        width: 100%;
        position: relative;
    }

    .theater-screen {
        border-radius: 0; /* Sharp edges for full-width look */
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    /* Overlapping Glass Card for the Action Area */
    .theater-action-area {
        flex-direction: column;
        margin-top: -20px; /* Slight overlap on the video */
        position: relative;
        z-index: 10;
        border-radius: 20px 20px 0 0; /* App-like bottom sheet look */
        padding: 30px 20px 40px 20px;
        background: rgba(15, 10, 20, 0.85); /* Deeper dark glass */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        text-align: center;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
        width: 100%;
    }

    .founder-note {
        padding-right: 0;
        border-right: none;
        padding-bottom: 0;
        margin-bottom: 25px;
    }
    
    .founder-note p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .founder-sig {
        justify-content: center;
        margin-top: 15px;
    }
    
    .theater-cta-container {
        padding-left: 0;
        width: 100%;
    }
    
    .btn-massive {
        font-size: 1.1rem;
        padding: 16px 20px;
        width: 100%;
        max-width: 100%; /* Full width button for thumbs */
        border-radius: 12px;
    }

    /* Shrink the play button and text so it fits perfectly on mobile */
    .play-btn-massive {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .play-btn-massive svg {
        width: 25px;
        height: 25px;
    }
    .video-overlay-text h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .video-overlay-text p {
        font-size: 0.7rem;
    }

    /* Pro Max UI Upgrade for Pill Grid (Mobile Swipeable Row) */
    .pro-pill-grid {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory;
        padding-bottom: 15px; /* Space for scrollbar/shadows */
        margin-right: -5vw; /* Bleed to the edge of the container */
        padding-right: 5vw; /* Maintain right padding inside scroll */
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .pro-pill-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .glass-pill {
        flex-shrink: 0; /* Prevent shrinking */
        scroll-snap-align: start;
        background: rgba(20, 15, 25, 0.8); /* Darker, richer glass */
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 10px rgba(0, 0, 0, 0.4);
        padding: 10px 18px; /* Slightly larger touch target */
        font-size: 0.85rem;
    }
}
