/* --- CSS specific to the Vision Page --- */

.pt-120 {
    padding-top: 60px;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding-bottom: var(--spacing-2xl);
}

@media (min-width: 992px) {
    .vision-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.abstract-visual-container {
    padding: 2rem;
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 10, 16, 0.8), rgba(0, 213, 255, 0.05));
    border: 1px solid rgba(0, 213, 255, 0.2);
}

.abstract-node-pulse {
    width: 60%;
    height: 60%;
}

.spin-slow {
    transform-origin: center;
    animation: slowSpin 20s linear infinite;
}

.pulse-ring {
    transform-origin: center;
    animation: pulseOut 2s ease-out infinite;
}

@keyframes pulseOut {
    0% {
        r: 6;
        opacity: 1;
    }

    100% {
        r: 35;
        opacity: 0;
    }
}

/* Timeline Components */
.timeline-section {
    padding: 0 0 var(--spacing-2xl) 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-cyan) 0%, var(--border-light) 50%, var(--border-light) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    width: 100%;
    padding-left: 60px;
    margin-bottom: var(--spacing-lg);
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
    }

    .timeline-item.left {
        padding-right: 40px;
        text-align: right;
    }

    .timeline-item.right {
        margin-left: 50%;
        padding-left: 40px;
    }
}

.timeline-node {
    position: absolute;
    top: 0;
    left: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.timeline-item.left .timeline-node {
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 10px rgba(0, 213, 255, 0.3);
}

@media (min-width: 768px) {
    .timeline-node {
        left: auto;
    }

    .timeline-item.left .timeline-node {
        right: -11px;
    }

    .timeline-item.right .timeline-node {
        left: -11px;
    }
}

.timeline-content {
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform var(--transition-fast);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.timeline-dim {
    color: var(--text-tertiary) !important;
}

.timeline-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.tag-cyan {
    background: rgba(0, 213, 255, 0.15);
    color: var(--secondary-cyan);
    border: 1px solid rgba(0, 213, 255, 0.3);
}

.tag-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-tertiary);
}

.timeline-date {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    margin-top: 0.5rem;
}

/* Pillars Section */
.pillars-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(16, 20, 29, 0.5) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pillars-header {
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.pillars-text {
    max-width: 600px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metrics-row {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.metric-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
}

.rocket-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.rocket-icon svg {
    width: 28px;
    height: 28px;
}