/* about.css */
#about-page {
    background-color: var(--bg-black);
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
    padding-bottom: 80px;
}

/* Typography Overrides */
#about-page h1,
#about-page h2,
#about-page h3,
#about-page h4 {
    color: #ffffff;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, #FFFFFF, #A1A1AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- 1. HERO SECTION ---------- */
.about-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero p.subtitle {
    font-size: 1.25rem;
    color: #A1A1AA;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    /* subtle border / glow */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #A1A1AA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p.subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }
}

/* ---------- SPLIT LAYOUT (Who We Are / Our Story / History) ---------- */
.split-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-section:last-child {
    border-bottom: none;
}

.split-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

.split-left {
    position: sticky;
    top: 120px;
    align-self: start;
}

.split-left h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.split-right p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #A1A1AA;
    margin-bottom: 1.5rem;
}

.split-right p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .split-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .split-left,
    .split-left h2,
    .split-right p {
        text-align: center;
    }
}

/* Split Right Stats (Who we are / Our Story) */
.split-stats-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.split-stat {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.split-stat:first-child { padding-left: 0; }
.split-stat:last-child  { border-right: none; padding-right: 0; }

.split-stat-val {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.split-stat-label {
    font-size: 0.8rem;
    color: #A1A1AA;
    line-height: 1.4;
    margin-top: 0.3rem;
}

/* ---- tablet & mobile: pill cards ---- */
@media (max-width: 991px) {
    .split-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 1.5rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .split-stat {
        flex: unset;
        align-items: center;
        text-align: center;
        padding: 1.1rem 0.75rem;
        border-right: none;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        min-width: 0;
    }

    .split-stat:first-child { padding-left: 0.75rem; }
    .split-stat:last-child  { padding-right: 0.75rem; border-right: none; }

    .split-stat-val {
        font-size: 1.5rem;
        background: linear-gradient(90deg, #b026ff, #ff26a5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap;
    }

    .split-stat-label {
        font-size: 0.72rem;
        color: #A1A1AA;
        text-align: center;
    }
}

/* ---------- 3. OUR VISION (Cards) ---------- */
.vision-section {
    padding: 80px 0;
}

.vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.vision-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vision-header p {
    color: #A1A1AA;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(46, 96, 255, 0.2), rgba(46, 96, 255, 0.05));
    border: 1px solid rgba(46, 96, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #2e60ff;
    font-size: 1.5rem;
}

.vision-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 0.95rem;
    color: #A1A1AA;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-section {
        padding: 50px 0;
    }
}

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

    .vision-header {
        margin-bottom: 40px;
    }

    .vision-header h2 {
        font-size: 2rem;
    }
}

/* ---------- 4. OUR FOUNDERS ---------- */
.founders-section {
    padding: 80px 0;
    text-align: center;
}

.founders-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founders-section p {
    color: #A1A1AA;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.founders-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    /* glass border */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.founders-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- 6. TIMELINE (Our History) ---------- */
.timeline-wrapper {
    position: relative;
    padding-left: 30px;
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

/* The dot */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    /* align with dashed line */
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.timeline-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    padding-top: 2px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #A1A1AA;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .timeline-year {
        color: #ffffff;
        font-size: 1rem;
    }

    .founders-section {
        padding: 50px 0;
    }

    .founders-section h2 {
        font-size: 2rem;
    }
    .timeline-content p{
        text-align: left;
    }
}

/* ---------- 7. OUR PEOPLE (Bottom Banner) ---------- */
.people-banner {
    /* margin-top: 80px; */
    /* background: linear-gradient(180deg, #1A4BD3 0%, #0C287A 100%); */
    /* border-radius: 24px; */
    /* padding: 60px 40px 0 40px; */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.people-banner-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.people-banner h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.people-banner p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.people-btn {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 99px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.people-btn:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

.people-image {
    position: relative;
    z-index: 1;
    margin-bottom: -10px;
    /* pull down to crop */
    display: flex;
    justify-content: center;
}

.people-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .people-banner {
        /* padding: 40px 20px 0 20px; */
    }

    .people-banner h2 {
        font-size: 2rem;
    }

    .people-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .people-banner {
        /* padding: 30px 15px 0 15px; */
        border-radius: 16px;
        margin-top: 40px;
    }

    .people-banner h2 {
        font-size: 1.5rem;
    }

    .people-banner-content {
        margin-bottom: 20px;
    }
}

/* Large screen adjustments for image sizes */
@media (min-width: 1200px) {
    .hero-image-wrapper {
        max-width: 900px;
        max-height: 500px;
    }

    .hero-image-wrapper img {
        height: 100%;
        object-fit: cover;
    }

    .founders-image {
        max-width: 800px;
        max-height: 400px;
    }

    .founders-image img {
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 1440px) {
    .hero-image-wrapper {
        max-width: 1000px;
        max-height: 550px;
    }

    .founders-image {
        max-width: 900px;
        max-height: 450px;
    }
}