/* ============================================
   关于我们页面样式
   ============================================ */

/* Hero 区域 */
.about-hero {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, #00b4d8 100%);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.about-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

/* 统计数字 */
.about-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.about-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* 使命区域 */
.mission-section {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section .section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.mission-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.3);
}

.mission-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.mission-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 团队区域 */
.team-section {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-secondary);
}

.team-section .section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    margin: var(--space-xl) auto var(--space-lg);
    overflow: hidden;
    border: 4px solid var(--bg-card);
    box-shadow: var(--shadow-md);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 0 var(--space-xl) var(--space-xl);
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.team-role {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-100);
    color: var(--primary-600);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.team-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-500);
    color: white;
}

.team-social svg {
    width: 18px;
    height: 18px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .about-stats {
        gap: var(--space-xl);
    }
    
    .about-stat .stat-number {
        font-size: 32px;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }
    
    .about-stat .stat-number {
        font-size: 28px;
    }
    
    .mission-card {
        padding: var(--space-xl);
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}