/* Vision Page Styles */

/* Vision Intro Section */
.vision-intro {
    padding: 60px 0;
    background: #f8fafc;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
}

.roadmap h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.roadmap-phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -3rem;
    width: 2px;
    background: #e5e5e5;
}

.roadmap-phase:last-child::before {
    display: none;
}

.phase-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roadmap-phase.current .phase-number {
    background: #2563eb;
}

.roadmap-phase:not(.current) .phase-number {
    background: #64748b;
}

.phase-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: #f0f9ff;
    color: #2563eb;
}

.roadmap-phase:not(.current) .phase-status {
    background: #f1f5f9;
    color: #64748b;
}

.phase-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-phase.current .phase-content {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.phase-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.phase-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.phase-content > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.phase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-item ul {
    list-style: none;
}

.feature-item li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-item li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Future Evolution Section */
.future-evolution {
    padding: 80px 0;
    background: #f8fafc;
}

.future-evolution h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.future-evolution > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.evolution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evolution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.evolution-icon {
    width: 70px;
    height: 70px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.evolution-icon span {
    font-size: 2rem;
}

.evolution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.evolution-card > p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.evolution-card ul {
    list-style: none;
}

.evolution-card li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.evolution-card li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Positioning Clarity Section */
.positioning-clarity {
    padding: 80px 0;
}

.positioning-clarity h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.positioning-clarity > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.positioning-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
}

.what-we-are {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.what-we-are-not {
    border-color: #64748b;
}

.positioning-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.what-we-are h3 {
    color: #2563eb;
}

.what-we-are-not h3 {
    color: #64748b;
}

.positioning-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.positioning-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.positioning-item p {
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Impact Vision Section */
.impact-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.impact-vision h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
}

.impact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.impact-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Evolution Timeline Styles - Exactly Matching Roadmap */
.evolution-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.evolution-phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.evolution-phase::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -3rem;
    width: 2px;
    background: #e5e5e5;
}

.evolution-phase:last-child::before {
    display: none;
}

.evolution-phase.current {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.evolution-phase.current .phase-number {
    background: #2563eb;
}

.evolution-phase:not(.current) .phase-number {
    background: #64748b;
}

.evolution-phase .phase-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: #f0f9ff;
    color: #2563eb;
}

.evolution-phase:not(.current) .phase-status {
    background: #f1f5f9;
    color: #64748b;
}

.evolution-phase .phase-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evolution-phase.current .phase-content {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.evolution-phase .phase-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.evolution-phase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.evolution-phase > p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.evolution-phase .phase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.evolution-phase .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.evolution-phase .feature-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.evolution-phase .feature-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.evolution-phase .feature-item li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.evolution-phase .feature-item p {
    color: #4a4a4a;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Responsive Design for Vision Page */
@media (max-width: 768px) {
    .roadmap-phase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .evolution-phase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .phase-marker {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .phase-number {
        margin-bottom: 0;
    }
    
    .roadmap-phase::before,
    .evolution-phase::before {
        display: none;
    }
    
    .phase-features {
        grid-template-columns: 1fr;
    }
    
    .evolution-grid {
        grid-template-columns: 1fr;
    }
    
    .positioning-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap h2,
    .future-evolution h2,
    .positioning-clarity h2,
    .impact-vision h2 {
        font-size: 2rem;
    }
    
    .phase-content h3 {
        font-size: 1.3rem;
    }
}
