.ecosystem-section {
  position: relative;
  background: linear-gradient(180deg, 
    var(--color-bg-primary) 0%, 
    var(--color-bg-secondary) 100%
  );
}

.ecosystem-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ecosystem-section .card {
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.ecosystem-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ecosystem-section .card:hover::before {
  opacity: 1;
}

.ecosystem-section .card::after {
  content: '';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 40px;
  height: 40px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  opacity: 0.6;
  transition: all var(--transition-base);
}

.ecosystem-section .card:hover::after {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.ecosystem-section .card-title {
  background: linear-gradient(135deg, 
    var(--color-text-primary) 0%, 
    var(--color-accent-tertiary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-base);
}

.ecosystem-section .card:hover .card-title {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem-section .smallcaps {
  color: var(--color-accent-primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 230, 118, 0.08);
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.ecosystem-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.platform-section {
  position: relative;
  background: var(--color-bg-primary);
}

.platform-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.platform-box {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.platform-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, 
    rgba(0, 230, 118, 0.04) 0%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.platform-box p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
}

.platform-box > div:last-child::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(0, 230, 118, 0.1);
  line-height: 1;
  z-index: 0;
}

.platform-section .text-primary {
  position: relative;
  display: inline-block;
}

.platform-section .text-primary::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-gradient);
  opacity: 0.6;
}

.cta-section {
  position: relative;
  background: linear-gradient(135deg, 
    var(--color-bg-secondary) 0%, 
    var(--color-bg-primary) 100%
  );
  padding: var(--space-3xl) 0;
}

.gradient-radial {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 230, 118, 0.15) 0%,
    rgba(76, 175, 80, 0.08) 40%,
    transparent 70%
  );
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.1); }
}

.orbit-ring {
  border: 2px solid rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  animation: rotateOrbit 30s linear infinite;
}

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

.neon-text-glow {
  text-shadow: 
    0 0 10px rgba(0, 230, 118, 0.5),
    0 0 20px rgba(0, 230, 118, 0.3),
    0 0 30px rgba(0, 230, 118, 0.2);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { 
    text-shadow: 
      0 0 10px rgba(0, 230, 118, 0.5),
      0 0 20px rgba(0, 230, 118, 0.3),
      0 0 30px rgba(0, 230, 118, 0.2);
  }
  50% { 
    text-shadow: 
      0 0 15px rgba(0, 230, 118, 0.7),
      0 0 30px rgba(0, 230, 118, 0.5),
      0 0 45px rgba(0, 230, 118, 0.3);
  }
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn.hero {
  background: var(--color-accent-gradient);
  color: var(--color-bg-primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s;
}

.btn.hero:hover::before {
  left: 100%;
}

.btn.hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 230, 118, 0.5);
}

.btn.hero-outline {
  background: transparent;
  color: var(--color-accent-primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent-primary);
  transition: all var(--transition-base);
}

.btn.hero-outline:hover {
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--color-accent-secondary);
  color: var(--color-accent-secondary);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}


.ecosystem-section .card {
  counter-increment: card-counter;
}

.ecosystem-section .card .smallcaps::before {
  content: counter(card-counter, decimal-leading-zero) ' · ';
  color: var(--color-accent-secondary);
  font-weight: 900;
  margin-right: 0.25rem;
}

.ecosystem-section .grid {
  counter-reset: card-counter;
}

.platform-section .subhead,
.cta-section .subhead {
  font-size: 1.125rem;
  color: var(--color-text-tertiary);
}

.ecosystem-section .h2 .text-primary {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@media (max-width: 768px) {
  .platform-box {
    padding: var(--space-lg);
    max-width: 400px;
  }
  
  .platform-box > div:last-child::before {
    display: none;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn.hero,
  .btn.hero-outline {
    width: 100%;
    max-width: 300px;
  }
  
  .ecosystem-section::before {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
  }
}

section + section {
  position: relative;
}

section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%
  );
}