/* ============================================================
   about.css — About page styles
   Requires: revisall.css
   ============================================================ */

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.about-hero {
    background: var(--rv-dark-3);
    background-image: radial-gradient(ellipse 60% 100% at 95% 40%, rgba(226,114,38,.15) 0%, transparent 58%), radial-gradient(ellipse 35% 60% at 5% 90%, rgba(128,109,97,.09) 0%, transparent 55%);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

    .about-hero::after {
        content: "R";
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        position: absolute;
        right: -1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: clamp(10rem, 20vw, 18rem);
        color: var(--rv-primary);
        opacity: .04;
        pointer-events: none;
        user-select: none;
        line-height: 1;
    }

    .about-hero h1 {
        font-size: clamp(2.2rem, 5vw, 3.6rem);
        font-weight: 800;
        color: var(--rv-white);
        line-height: 1.08;
        letter-spacing: -.025em;
        margin-bottom: .6rem;
    }

        .about-hero h1 span {
            color: var(--rv-primary);
        }

    .about-hero .hero-sub {
        color: var(--rv-light);
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 540px;
        margin-bottom: 1.8rem;
    }

.origin-quote {
    border-left: 3px solid var(--rv-primary);
    padding-left: 1.1rem;
    margin-top: 2rem;
}

    .origin-quote p {
        color: var(--rv-light);
        font-size: .97rem;
        font-style: italic;
        line-height: 1.7;
        margin: 0 0 .4rem;
    }

    .origin-quote cite {
        font-size: .78rem;
        font-weight: 700;
        color: var(--rv-primary);
        font-family: 'Sora', sans-serif;
        font-style: normal;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

/* ══════════════════════════════════════════════
   MISSION / VISION
══════════════════════════════════════════════ */
.mv-band {
    background: var(--rv-cream);
    padding: 5rem 0;
}

.mv-card {
    background: white;
    border: 1.5px solid var(--rv-border);
    border-radius: .85rem;
    padding: 2rem 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--rv-primary);
        border-radius: .85rem .85rem 0 0;
    }

    .mv-card .mv-type {
        font-family: 'Sora', sans-serif;
        font-size: .67rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--rv-primary);
        margin-bottom: .7rem;
        display: block;
    }

    .mv-card h3 {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--rv-dark);
        line-height: 1.3;
        margin-bottom: .7rem;
    }

    .mv-card p {
        color: var(--rv-text-muted);
        font-size: .92rem;
        line-height: 1.75;
        margin: 0;
    }

/* ══════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════ */
.problem-band {
    background: var(--rv-dark-2);
    background-image: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(226,114,38,.08) 0%, transparent 55%);
    padding: 5rem 0;
}

.problem-stat {
    padding: 1.6rem;
    text-align: center;
    border-right: 1px solid #383838;
}

    .problem-stat:last-child {
        border-right: none;
    }

    .problem-stat .ps-num {
        font-family: 'Sora', sans-serif;
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--rv-primary);
        line-height: 1;
        margin-bottom: .35rem;
    }

    .problem-stat .ps-label {
        font-size: .85rem;
        color: var(--rv-light);
        line-height: 1.5;
    }

.problem-card {
    background: #333;
    border: 1.5px solid #444;
    border-top: 3px solid var(--rv-primary);
    border-radius: .75rem;
    padding: 1.4rem 1.5rem;
    height: 100%;
    transition: transform .15s;
}

    .problem-card:hover {
        transform: translateY(-2px);
    }

    .problem-card .pc-title {
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        color: var(--rv-white);
        font-size: .95rem;
        margin-bottom: .4rem;
    }

    .problem-card .pc-body {
        color: #857b72;
        font-size: .87rem;
        line-height: 1.65;
        margin: 0;
    }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-band {
    background: var(--rv-cream-2);
    padding: 5rem 0;
    border-top: 1.5px solid var(--rv-border);
}

.how-panel {
    background: var(--rv-dark);
    border-radius: .85rem;
    padding: 2rem;
    position: sticky;
    top: 1.5rem;
}

.flow-node {
    background: #363636;
    border: 1.5px solid #444;
    border-radius: .6rem;
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
    transition: border-color .15s;
}

    .flow-node:hover {
        border-color: rgba(226,114,38,.4);
    }

.flow-node-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--rv-primary);
    flex-shrink: 0;
}

.flow-node-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    color: var(--rv-white);
}

.flow-node-sub {
    font-size: .75rem;
    color: #857b72;
    margin-top: .1rem;
}

.flow-arrow {
    text-align: center;
    color: rgba(226,114,38,.4);
    font-size: .8rem;
    line-height: 1;
    margin-bottom: .5rem;
}

/* ══════════════════════════════════════════════
   TIMELINE  (How it works + Milestones)
══════════════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 1.8rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: .4rem;
        bottom: .4rem;
        width: 2px;
        background: var(--rv-border);
    }

.tl-item {
    position: relative;
    padding-bottom: 2rem;
}

    .tl-item:last-child {
        padding-bottom: 0;
    }

    .tl-item::before {
        content: '';
        position: absolute;
        left: -1.87rem;
        top: .35rem;
        width: .75rem;
        height: .75rem;
        border-radius: 50%;
        background: var(--rv-cream-2);
        border: 2px solid var(--rv-border);
    }

    .tl-item.active::before {
        background: var(--rv-primary);
        border-color: var(--rv-primary);
        box-shadow: 0 0 0 3px rgba(226,114,38,.2);
    }

.tl-date {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: var(--rv-primary);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.tl-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--rv-dark);
    font-size: .95rem;
    margin-bottom: .2rem;
}

.tl-body {
    color: var(--rv-text-muted);
    font-size: .87rem;
    line-height: 1.65;
    margin: 0;
}

.tl-upcoming {
    opacity: .45;
}

/* ══════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════ */
.values-band {
    background: var(--rv-dark-3);
    background-image: radial-gradient(ellipse 55% 80% at 100% 60%, rgba(226,114,38,.08) 0%, transparent 55%);
    padding: 5rem 0;
}

.value-card {
    border-top: 2px solid var(--rv-primary);
    padding-top: 1.2rem;
    height: 100%;
}

    .value-card .vc-title {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        color: var(--rv-white);
        font-size: 1rem;
        margin-bottom: .5rem;
    }

    .value-card .vc-body {
        color: var(--rv-light);
        font-size: .87rem;
        line-height: 1.7;
        margin: 0;
    }

/* ══════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════ */
.team-band {
    background: var(--rv-cream);
    padding: 5rem 0;
    border-top: 1.5px solid var(--rv-border);
}

.team-card {
    background: white;
    border: 1.5px solid var(--rv-border);
    border-radius: .85rem;
    overflow: hidden;
    transition: box-shadow .15s, transform .15s;
}

    .team-card:hover {
        box-shadow: 0 4px 24px rgba(44,44,44,.08);
        transform: translateY(-2px);
    }

.team-avatar {
    background: var(--rv-dark);
    background-image: radial-gradient(ellipse 70% 80% at 50% 80%, rgba(226,114,38,.18) 0%, transparent 65%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .team-avatar .ta-initials {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        font-size: 2.2rem;
        color: var(--rv-primary);
        opacity: .6;
        letter-spacing: .05em;
    }

.team-info {
    padding: 1.3rem 1.4rem;
}

    .team-info .ti-name {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        color: var(--rv-dark);
        font-size: 1rem;
        margin-bottom: .2rem;
    }

    .team-info .ti-role {
        font-size: .8rem;
        font-weight: 700;
        color: var(--rv-primary);
        font-family: 'Sora', sans-serif;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: .6rem;
    }

    .team-info .ti-bio {
        color: var(--rv-text-muted);
        font-size: .85rem;
        line-height: 1.65;
        margin: 0;
    }

/* ══════════════════════════════════════════════
   MILESTONES
══════════════════════════════════════════════ */
.milestones-band {
    background: var(--rv-cream-2);
    padding: 5rem 0;
    border-top: 1.5px solid var(--rv-border);
}

/* ══════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════ */
.partners-band {
    background: var(--rv-dark-2);
    padding: 4rem 0;
}

.partner-slot {
    background: #363636;
    border: 1.5px solid #444;
    border-radius: .6rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: .78rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: border-color .15s;
}

    .partner-slot:hover {
        border-color: rgba(226,114,38,.3);
    }

    .partner-slot.live {
        color: var(--rv-light);
        border-color: #555;
    }

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.about-cta {
    background: var(--rv-dark-3);
    padding: 5rem 0;
}

.cta-inner {
    background: var(--rv-primary);
    background-image: radial-gradient(ellipse 60% 110% at 110% 50%, rgba(255,255,255,.1) 0%, transparent 55%);
    border-radius: 1rem;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

    .cta-inner::after {
        content: "Let's go.";
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        position: absolute;
        right: 2.5rem;
        bottom: -1rem;
        font-size: clamp(3rem, 7vw, 6rem);
        color: rgba(255,255,255,.08);
        white-space: nowrap;
        pointer-events: none;
        line-height: 1;
    }

    .cta-inner h2 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        color: white;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        line-height: 1.12;
        margin-bottom: .6rem;
    }

    .cta-inner p {
        color: rgba(255,255,255,.82);
        font-size: 1rem;
        line-height: 1.7;
        max-width: 500px;
        margin-bottom: 1.8rem;
    }

/* ══════════════════════════════════════════════
   WHO WE SERVE
══════════════════════════════════════════════ */
.serve-band {
    background: var(--rv-cream);
    padding: 5rem 0;
    border-top: 1.5px solid var(--rv-border);
}

.serve-card {
    background: white;
    border: 1.5px solid var(--rv-border);
    border-radius: 1rem;
    padding: 2rem 2rem 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

    .serve-card:hover {
        box-shadow: 0 6px 28px rgba(44,44,44,.08);
        transform: translateY(-2px);
    }

/* Primary (student) card — dark background */
.serve-card--primary {
    background: var(--rv-dark);
    border-color: var(--rv-dark);
}

    .serve-card--primary:hover {
        box-shadow: 0 6px 28px rgba(44,44,44,.3);
    }

/* Audience label */
.sc-audience {
    font-family: 'Sora', sans-serif;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rv-primary);
    margin-bottom: .9rem;
}

.sc-audience--light {
    color: var(--rv-primary);
}

/* Card heading */
.sc-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--rv-dark);
    line-height: 1.2;
    margin-bottom: .8rem;
}

.sc-title--light {
    color: var(--rv-white);
}

/* Opening paragraph */
.sc-lead {
    font-size: .9rem;
    color: var(--rv-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 0;
}

.sc-lead--light {
    color: var(--rv-light);
}

/* Divider */
.sc-divider {
    border: none;
    border-top: 1.5px solid var(--rv-border);
    margin: 1.3rem 0;
}

.sc-divider--light {
    border-color: #3e3e3e;
}

/* Sub label before list */
.sc-sub {
    font-size: .82rem;
    color: var(--rv-primary-light);
    line-height: 1.55;
    margin-bottom: .8rem;
    font-weight: 500;
}

.sc-sub--light {
    color: #857b72;
}

/* Feature list */
.sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex-grow: 1;
}

    .sc-list li {
        font-size: .86rem;
        color: var(--rv-text-muted);
        line-height: 1.5;
        padding-left: 1.3rem;
        position: relative;
    }

        .sc-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: .5rem;
            width: .45rem;
            height: .45rem;
            border-radius: 50%;
            background: var(--rv-primary);
            opacity: .7;
        }

.sc-list--light li {
    color: var(--rv-light);
}

    .sc-list--light li::before {
        opacity: 1;
    }

/* Outcome tag at the bottom */
.sc-outcome {
    background: rgba(226,114,38,.08);
    border: 1px solid rgba(226,114,38,.2);
    border-radius: .5rem;
    padding: .65rem .9rem;
    font-family: 'Sora', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--rv-primary);
    line-height: 1.4;
    margin-top: auto;
}

.sc-outcome--light {
    background: rgba(226,114,38,.12);
    border-color: rgba(226,114,38,.3);
}

/* Current active milestone — pulsing dot */
.tl-item.tl-current::before {
    background: var(--rv-primary);
    border-color: var(--rv-primary);
    box-shadow: 0 0 0 4px rgba(226,114,38,.25);
    animation: tl-pulse 2s ease-in-out infinite;
}

@keyframes tl-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(226,114,38,.2);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(226,114,38,.08);
    }
}
