.about-hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 24px 80px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(1.1);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 35%, var(--bg) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(72px, 22vw, 220px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 18px 0 22px;
}

.about-hero-tagline {
    font-size: clamp(17px, 4vw, 24px);
    font-weight: 300;
    color: var(--fg-dim);
    max-width: 540px;
    line-height: 1.4;
}

/* ============ BIO ============ */
.about-bio {
    padding: 80px 24px 40px;
    max-width: 760px;
    margin: 0 auto;
}

.about-lead {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin-bottom: 32px;
}

.about-text {
    font-size: clamp(15px, 3.8vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    margin-bottom: 22px;
}

.about-text strong {
    font-weight: 500;
    color: var(--fg);
}

/* ============ STATS ============ */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 40px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat {
    padding: 28px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    backdrop-filter: blur(12px);
}

.stat-num {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 7vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-faint);
}

/* ============ TIMELINE ============ */
.about-timeline {
    padding: 60px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline {
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.timeline li {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}

.timeline li > a {
    display: contents;
    color: inherit;
    text-decoration: none;
}

.timeline li:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 12px;
}

.t-year {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    color: var(--fg-faint);
    font-size: 14px;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    text-align: center;
}

.t-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 4.5vw, 22px);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.t-note {
    font-size: 12px;
    color: var(--fg-faint);
    text-align: right;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .timeline li {
        grid-template-columns: 90px 1fr;
        grid-template-areas:
            "year title"
            "year note";
        row-gap: 4px;
        column-gap: 14px;
        align-items: center;
    }
    .t-year { grid-area: year; }
    .t-title { grid-area: title; }
    .t-note { grid-area: note; text-align: left; }
}

@media (min-width: 720px) {
    .about-bio { padding: 100px 32px 60px; }
    .about-stats { gap: 18px; }
}

@media (min-width: 1000px) {
    .about-bio { padding: 120px 48px 80px; }
    .about-timeline { padding: 80px 48px; }
}

/* ============ SÍGUENOS (redes Nsqkcharts) ============ */
.about-socials {
    max-width: 760px;
    margin: 0 auto;
    padding: 8px 24px 8px;
    text-align: center;
}
.about-socials-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 16px;
}
.about-socials-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.about-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fg);
    text-decoration: none;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.about-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.about-social-arrow { color: var(--fg-faint); transition: transform 0.25s var(--ease); }
.about-social:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
.about-social:hover .about-social-arrow { transform: translate(2px, -2px); }
