/* ===== ABOUT PAGE — page-specific styles ===== */
/* Base styles inherited from style.css */


/* ===== HERO ===== */

.about-hero {
    padding-top: 120px;
    padding-bottom: 60px;
}

.about-hero h1 {
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-hero-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: var(--text-dim);
    max-width: 620px;
    line-height: 1.7;
}


/* ===== CONTENT BLOCKS ===== */

.about-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px clamp(2rem, 5vw, 6rem);
}

.about-prose p {
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text-dim);
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

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


/* ===== TEAM — founder tiles + advisor strip ===== */

.team-intro {
    max-width: 680px;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    max-width: 1040px;
}

.founder-tile {
    background: var(--bg-raised);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border: 1px solid var(--accent);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.founder-body {
    flex: 1;
    min-width: 0;
}

.founder-name {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.founder-role {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.founder-bio {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}


/* Advisors strip */

.team-advisors {
    padding: 1.4rem 1.75rem;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent);
    max-width: 820px;
    margin-bottom: 2rem;
}

.team-advisors p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

.team-advisors strong {
    color: var(--text);
    font-weight: 500;
}


/* Location marker */

.team-location {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.team-location-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .about-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .founder-tile {
        padding: 1.75rem;
        flex-direction: column;
        gap: 1rem;
    }

    .founder-avatar {
        width: 56px;
        height: 56px;
        font-size: 1rem;
    }

    .team-advisors {
        padding: 1.2rem 1.4rem;
    }

    .team-location {
        font-size: 0.72rem;
    }
}


/* ===== FOUNDER LINKEDIN LINKS ===== */

.founder-role + .founder-links {
    margin-top: -0.6rem;
    margin-bottom: 0.9rem;
}

.founder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.founder-link {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
    padding-bottom: 1px;
}

.founder-link:hover,
.founder-link:focus-visible {
    color: var(--accent);
    border-bottom-color: var(--accent);
}


/* ===== ADVISOR DISCIPLINE BADGES ===== */

.advisor-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.advisor-discipline {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: transparent;
    white-space: nowrap;
}


/* ===== HOVER LIFT ===== */

.founder-tile {
    transition: transform 0.25s ease, background 0.25s ease;
}

.founder-tile:hover {
    transform: translateY(-3px);
    background: var(--bg-hover);
}

.team-advisors {
    transition: transform 0.25s ease;
}

.team-advisors:hover {
    transform: translateY(-3px);
}

.about-cta-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}
