-        
Core Components
+        
{eyebrow}
         
-          Network Capabilities
+          {sectionHeader}
         
-        
-          Built for resilience and autonomy, the Mycelium Network dynamically
-          connects nodes through intelligent routing, proxy discovery, and
-          decentralized delivery.
+        
+          {description1}
         
         
-          Each component — from message passing to content distribution — works in
-          harmony to create a fully self-healing, self-optimizing data mesh.
-        
  
+          {description2}
+        
         
-          
-            
-            
-              
-              
-                
Routing
-                
-                  Automatic pathfinding
-                
-                
-                  The Mycelium Network automatically discovers the shortest and
-                  fastest routes between nodes, ensuring optimal data flow and
-                  network efficiency without manual configuration.
-                
+          {cards.map((card, index) => (
+            
+              
+              
+                {card.component}
+                
+                  {card.eyebrow}
+                  
+                    {card.title}
+                  
+                  
+                    {card.description}
+                  
+                
               
+              
             
-            
-          
-          
-            
-            
-              
-              
-                Communication
-                
-                  Distributed message bus
-                
-                
-                  Acts as a global message layer that lets nodes exchange
-                  information seamlessly. Enables resilient, asynchronous
-                  communication across the entire decentralized mesh.
-                
-              
-            
-            
-          
-          
-            
-            
-              
-              
-                Discovery
-                
-                  Automatic proxy detection
-                
-                
-                  The system continuously scans for open SOCKS5 proxies within the
-                  network, making it effortless to find available connection points
-                  without manual setup.
-                
-              
-            
-            
-          
-          
-            
-            
-              
-              
-                Connectivity
-                
-                  Seamless proxy forwarding
-                
-                
-                  Local SOCKS5 connections can be forwarded through nearby nodes or
-                  remote proxies. When browsers use the local proxy, traffic moves
-                  securely through the mesh—like a built-in VPN.
-                
-              
-            
-            
-          
-          
-            
-            
-              
-              
-                Delivery
-                
-                  Decentralized content distribution
-                
-                
-                  Mycelium can serve data from distributed 0-DBs, creating a
-                  CDN-like layer that delivers content faster and more
-                  reliably—without relying on centralized servers.
-                
-              
-            
-            
-          
+          ))}
         
 
       
     
diff --git a/src/components/MessageBus.tsx b/src/components/MessageBus.tsx
index b63c4ba..513af8c 100644
--- a/src/components/MessageBus.tsx
+++ b/src/components/MessageBus.tsx
@@ -2,6 +2,7 @@
 
 import * as React from 'react';
 import { motion, useReducedMotion } from 'framer-motion';
+import clsx from 'clsx';
 
 type Props = {
   className?: string;      // e.g. "w-full h-72"
@@ -72,7 +73,12 @@ export default function MessageBus({ className, bg = '#ffffff' }: Props) {
   const H = 460;
 
   return (
-    
+