/* --- About Page Styles --- */

.about-hero {
    padding-top: 200px;
    background: var(--bg-dark-navy);
    position: relative;
    overflow: hidden;
}

.about-glow {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    opacity: 0.1;
}

.about-hero-title {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-hero-copy {
    font-size: 22px;
    color: var(--text-muted-blue);
    line-height: 1.6;
}

.about-image-wrap {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark-navy), transparent);
}

/* Timeline */
.timeline-section {
    background: var(--bg-near-black);
    position: relative;
}

.timeline-sticky {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
    border-left: 1px solid var(--glass-border);
}

.timeline-item {
    margin-bottom: 100px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -56px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: var(--transition-smooth);
}

.timeline-dot.active {
    background: var(--primary-blue);
    box-shadow: 0 0 20px var(--primary-blue);
}

.timeline-year {
    font-family: 'Space Grotesk';
    font-size: 24px;
    font-weight: 700;
    color: var(--cyan-accent);
    margin-bottom: 15px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--cyan-accent);
}
