/* About Page Specific Styles */

/* ======================= */
/* Story Section */
/* ======================= */
.story-section {
    background: var(--bg-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 20px;
    width: 100%;
}

.story-image .image-accent {
    position: absolute;
    inset: 20px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

/* ======================= */
/* Mission Section */
/* ======================= */
.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-medium);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 60px rgba(157, 0, 255, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================= */
/* Values Section */
/* ======================= */
.values-section {
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
}

.value-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-pink);
    min-width: 60px;
}

.value-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.values-image-stack {
    position: relative;
    height: 500px;
}

.values-image-stack img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-medium);
}

.values-image-stack .stack-1 {
    width: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.values-image-stack .stack-2 {
    width: 55%;
    top: 30%;
    right: 0;
    z-index: 2;
}

.values-image-stack .stack-3 {
    width: 50%;
    bottom: 0;
    left: 10%;
    z-index: 3;
}

.values-image-stack img:hover {
    z-index: 10;
    transform: scale(1.05);
}

/* ======================= */
/* Stats Section */
/* ======================= */
.stats-section {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-block {
    text-align: center;
    padding: 2rem;
}

.stat-block .stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: inline;
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--neon-pink);
}

.stat-block .stat-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ======================= */
/* Team Section */
/* ======================= */
.team-section {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 60px rgba(157, 0, 255, 0.2);
}

.team-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.team-role {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
}

.team-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ======================= */
/* Journey/Timeline Section */
/* ======================= */
.journey-section {
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--accent-gradient);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    right: -10px;
    top: 2rem;
    box-shadow: var(--glow-pink);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
    right: auto;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 350px;
    margin-right: 30px;
    transition: var(--transition-medium);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-gradient);
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    color: white;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ======================= */
/* Responsive */
/* ======================= */
@media (max-width: 1200px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
    }
    
    .values-image-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mission-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        padding-left: 50px;
    }
    
    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
        right: auto;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .values-image-stack {
        height: 300px;
    }
    
    .values-image-stack img {
        width: 80%;
    }
}
