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

/* Hero */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 100%);
}
.about-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
}
/* Red spotlight glow */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,59,48,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.about-hero-content .section-tag {
    margin-bottom: 20px;
}
.about-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.about-hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Mission Section */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 12px;
}
.about-mission-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s ease;
}
.about-value:hover {
    border-color: rgba(255,59,48,0.2);
}
.about-value-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,59,48,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-value-icon .material-symbols-rounded {
    font-size: 20px;
    color: var(--primary);
}
.about-value h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.about-value p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Who We Are */
.about-who-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 56px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-who-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff9500, #ff3b30);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
.about-who-box .section-tag {
    margin-bottom: 16px;
}
.about-who-box h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.about-who-box p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 36px;
}
.about-who-box strong {
    color: var(--text);
    font-weight: 600;
}
.about-who-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto 32px;
}
.about-stat {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
}
.about-stat-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.about-stat-lbl {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}
.about-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .about-hero-content h1 { font-size: 36px; }
    .about-hero-content p { font-size: 16px; }
    .about-hero { padding: 120px 0 60px; }
    .about-who-box { padding: 32px 20px; border-radius: 20px; }
    .about-who-box h2 { font-size: 26px; }
    .about-mission-text h2 { font-size: 28px; }
}
