.ecosystem-hero {
    background: radial-gradient(circle at top left, rgba(61, 132, 255, 0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 184, 0, 0.12), transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    color: var(--light-text);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.ecosystem-hero .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff 0%, #3d84ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.highlight-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero-showcase .showcase-card {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.hero-showcase ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.hero-showcase li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.showcase-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.ecosystem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.98));
    position: relative;
    overflow: hidden;
}

.ecosystem-section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.98));
}

.section-header {
    max-width: 720px;
    margin: 0 auto 48px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--light-text);
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.card-grid {
    display: grid;
    gap: 28px;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
    background: var(--card-background);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition);
    min-height: 320px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.product-card--upcoming {
    border-style: dashed;
    border-color: rgba(255, 184, 0, 0.5);
}

.product-icon {
    font-size: 2.4rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-pill {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 184, 0, 0.18);
    color: var(--secondary-color);
    border: 1px dashed rgba(255, 184, 0, 0.6);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.btn.btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.btn.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--light-text);
}

.btn.btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    pointer-events: none;
}

.explorer-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.explorer-card {
    background: rgba(24, 24, 24, 0.95);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
}

.explorer-card--soon {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
}

.explorer-icon {
    font-size: 2.2rem;
}

.explorer-card p {
    color: rgba(255, 255, 255, 0.65);
}

.journey-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
    counter-reset: journey;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    background: rgba(28, 28, 28, 0.9);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.step-index {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.step-body h3 {
    margin-bottom: 8px;
}

.step-body p {
    color: rgba(255, 255, 255, 0.68);
}

.resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.resource-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.resource-icon {
    font-size: 2rem;
}

.resource-link {
    color: var(--secondary-color);
    font-weight: 600;
}

.resource-link:hover {
    color: var(--accent-color);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .ecosystem-hero {
        padding: 90px 0 80px;
    }

    .hero-highlights {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .product-card,
    .explorer-card,
    .resource-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .ecosystem-hero .container {
        gap: 36px;
    }

    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .journey-step {
        grid-template-columns: 1fr;
    }

    .step-index {
        order: -1;
    }
}
