/* Ecosystem Section Styles */
.ecosystem {
    padding: var(--section-padding) 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.ecosystem .container {
    position: relative;
    z-index: 1;
}

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

.ecosystem__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ecosystem__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.ecosystem__preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ecosystem__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.ecosystem__image:hover {
    transform: scale(1.05);
}

.ecosystem__coming-soon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: pulse 2s infinite;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}



/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .ecosystem__image {
        max-width: 90%;
    }
    
    .ecosystem__coming-soon {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .ecosystem {
        padding: calc(var(--section-padding) * 0.75) 0;
    }
}