/* ========================================
   About Page Styles
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background: var(--canvas);
}
.page-header-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20,90,255,0.12) 0%, rgba(88,107,141,0.04) 60%, transparent 100%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.51px;
    color: var(--midnight);
    margin-bottom: 20px;
}
.page-header p {
    font-size: 18px;
    color: var(--fog);
    max-width: 540px;
    margin: 0 auto;
}

/* Intro Section */
.studio-intro { padding: 80px 0; }
.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}
.intro-text p {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 18px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.big-stat {
    background: var(--white);
    border-radius: var(--r-big);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.big-stat:hover { box-shadow: var(--shadow-block); transform: translateY(-3px); }
.big-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--action);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.big-stat-label {
    font-size: 12px;
    color: var(--steel);
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--signal), rgba(20,90,255,0.1));
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 4px rgba(20,90,255,0.15);
}
.timeline-year {
    font-size: 13px;
    font-weight: 600;
    color: var(--signal);
    margin-bottom: 6px;
    font-family: var(--font-mono);
}
.timeline-content {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.timeline-content:hover { box-shadow: var(--shadow-block); }
.timeline-content h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--fog); line-height: 1.5; }

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--r-big);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: left;
}
.value-card:hover { box-shadow: var(--shadow-block); transform: translateY(-4px); }
.value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--tint); display: flex; align-items: center; justify-content: center;
    color: var(--signal); font-size: 20px;
    margin-bottom: 20px;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--fog); line-height: 1.5; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: var(--r-big);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.team-card:hover { box-shadow: var(--shadow-block); transform: translateY(-4px); }
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: rgba(255,255,255,0.9);
    font-size: 28px;
}
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-role {
    display: block;
    font-size: 12px;
    color: var(--signal);
    font-weight: 500;
    margin-bottom: 10px;
}
.team-card p { font-size: 13px; color: var(--steel); line-height: 1.4; }

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.location-card {
    background: var(--white);
    border-radius: var(--r-big);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: left;
}
.location-card:hover { box-shadow: var(--shadow-block); transform: translateY(-4px); }
.location-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--tint); display: flex; align-items: center; justify-content: center;
    color: var(--signal); font-size: 20px;
    margin-bottom: 20px;
}
.location-card h4 { font-size: 18px; margin-bottom: 8px; }
.location-card p { font-size: 14px; color: var(--fog); line-height: 1.5; margin-bottom: 14px; }
.location-tag {
    display: inline-block;
    font-size: 11px; font-weight: 500;
    color: var(--signal);
    background: rgba(20,90,255,0.08);
    padding: 3px 10px; border-radius: var(--r-badge);
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline { padding-left: 28px; }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .big-stat-num { font-size: 24px; }
}
