/* Mission Section Styles */

.mission-section {
    position: relative;
    min-height: 100vh;
    padding: var(--section-spacing) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F0F1A 0%, #1a2a44 100%);
}

.mission-section .container {
    position: relative;
    z-index: var(--z-glass-ui);
}

.mission-grid {
    position: relative;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: var(--spacing-2xl);
    align-items: center;
}

/* Left: Text Content */
.mission-text-pane {
    padding: var(--spacing-2xl);
    position: relative;
    z-index: 10;
}

.mission-section .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(90deg, var(--accent-sapphire), var(--accent-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-xl);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    position: relative;
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.values-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-sapphire);
    font-size: var(--text-xl);
}

/* Right: Network Visualization - As Background */
.network-visualization {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.15;
    filter: blur(3px);
    pointer-events: none;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.network-node {
    fill: var(--accent-sapphire);
    filter: drop-shadow(0 0 8px var(--accent-sapphire));
}

.connection-line {
    stroke: var(--accent-sapphire);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .network-visualization {
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 500px;
        height: 500px;
        margin: 0;
        opacity: 0.1;
        filter: blur(5px);
        z-index: 0;
    }
}

@media (max-width: 768px) {
    .mission-section .section-title {
        font-size: var(--text-3xl);
    }

    .mission-description {
        font-size: var(--text-base);
    }

    .mission-text-pane {
        padding: var(--spacing-xl);
    }

    .network-visualization {
        height: 400px;
        opacity: 0.1;
        filter: blur(5px);
    }
}
