/* ═══ ABOUT PAGE SPECIFIC STYLES ═══ */

/* Page Header */
.page-header {
    min-height: 45vh;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--border);
}

.ph-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ph-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(108,43,217,.14);
    top: -30%;
    right: -5%;
}

.ph-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(26,107,255,.1);
    bottom: -20%;
    left: 5%;
}

.ph-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(108,43,217,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(108,43,217,.04) 1px,transparent 1px);
    background-size: 60px 60px;
}

#ph-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    opacity: .7;
}

.ph-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 3rem 4%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: flex-end;
}

.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--fm);
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
    animation: fadeUp .7s var(--ease) both;
}

    .ph-breadcrumb a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .ph-breadcrumb a:hover {
            color: var(--purple-3);
        }

.ph-breadcrumb-sep {
    color: var(--border-2);
}

.ph-breadcrumb-cur {
    color: var(--gold-2);
}

.ph-num {
    font-family: var(--fd);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--purple-3);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    animation: fadeUp .7s .05s var(--ease) both;
}

    .ph-num::before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--purple-3);
    }

.ph-title {
    font-family: var(--fd);
    font-size: clamp(3rem,6vw,5.5rem);
    letter-spacing: .04em;
    line-height: .95;
    animation: fadeUp .8s .1s var(--ease) both;
}

    .ph-title em {
        font-family: var(--fb);
        font-style: italic;
        background: var(--g-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.ph-desc {
    font-size: .9rem;
    font-weight: 300;
    color: rgba(240,238,255,.45);
    line-height: 1.7;
    max-width: 480px;
    margin-top: .9rem;
    animation: fadeUp .8s .18s var(--ease) both;
}

.ph-card {
    background: rgba(13,13,24,.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.4rem 1.6rem;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-width: 240px;
    animation: fadeUp .8s .22s var(--ease) both;
    position: relative;
    overflow: hidden;
}

    .ph-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--g-full);
    }

.ph-card-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .82rem;
}

.ph-card-icon {
    width: 18px;
    text-align: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.ph-card-txt {
    color: rgba(240,238,255,.5);
}

    .ph-card-txt strong {
        color: var(--white);
        font-weight: 500;
    }

.ph-avail {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .3rem;
    padding: .3rem .8rem;
    background: rgba(10,200,130,.08);
    border: 1px solid rgba(10,200,130,.2);
    border-radius: 50px;
    font-family: var(--fm);
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(10,200,180,.8);
    align-self: flex-start;
}

.ph-avail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0ac882;
    animation: availPulse 2s infinite;
}

/*@keyframes availPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10,200,130,.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(10,200,130,0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Marquee (About-specific version) */
.marquee-strip {
    position: relative;
    z-index: 2;
    background: var(--black-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.mq-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--fd);
    font-size: .82rem;
    letter-spacing: .1em;
    color: rgba(240,238,255,.25);
    flex-shrink: 0;
}

.mq-sep {
    color: var(--gold);
    font-size: .65rem;
    margin: 0 .4rem;
}

/* Kinematic Scene - Philosophy */

#scene-philo-track {
    height: 340vh;
}

#scene-philo {
    background: var(--black-2);
}

.sp-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(108,43,217,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(108,43,217,.04) 1px,transparent 1px);
    background-size: 55px 55px;
}

.sp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.sp-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(108,43,217,.13);
    top: -20%;
    right: -10%;
}

.sp-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(26,107,255,.09);
    bottom: -15%;
    left: -5%;
}

#sp-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.sp-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 4%;
    max-width: 1000px;
}

.sp-num {
    font-family: var(--fd);
    font-size: clamp(6rem,16vw,16rem);
    letter-spacing: .08em;
    line-height: .85;
    background: linear-gradient(135deg,rgba(108,43,217,.15),rgba(26,107,255,.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

.sp-tag {
    font-family: var(--fm);
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

    .sp-tag::before, .sp-tag::after {
        content: '';
        width: 22px;
        height: 1px;
        background: var(--gold-2);
    }

.sp-quote {
    font-family: var(--fb);
    font-style: italic;
    font-size: clamp(1.4rem,3vw,2.6rem);
    color: var(--white);
    line-height: 1.4;
    max-width: 820px;
    margin: 0 auto;
}

    .sp-quote em {
        color: var(--gold-2);
        font-style: normal;
    }

.sp-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
    margin: 1.4rem auto 0;
    transition: none;
}

/* About Body */
.about-section {
    position: relative;
    z-index: 2;
    padding: 8rem 4%;
}

.about-inner {
    max-width: 1260px;
    margin: 0 auto;
}

/* Split Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}

.intro-label {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple-3);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

    .intro-label::before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--purple-3);
    }

.intro-heading {
    font-family: var(--fd);
    font-size: clamp(2.4rem,4.5vw,3.8rem);
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 1.4rem;
}

    .intro-heading em {
        font-family: var(--fb);
        font-style: italic;
        background: var(--g-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.intro-prose p {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(240,238,255,.6);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

    .intro-prose p strong {
        color: var(--gold-2);
        font-weight: 500;
    }

/* Profile Card */
.profile-card {
    background: var(--black-2);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

    .profile-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--g-full);
    }

    .profile-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 20%,rgba(108,43,217,.09),transparent 60%);
        pointer-events: none;
    }

.pc-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--g-full);
    padding: 2px;
    margin: 0 auto 1.3rem;
}

/*.pc-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
}*/
.pc-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    position: relative;
    overflow: hidden;
}

.pc-profile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

.pc-name {
    font-family: var(--fd);
    font-size: 1.3rem;
    letter-spacing: .06em;
    text-align: center;
    margin-bottom: .2rem;
}

.pc-role {
    font-family: var(--fm);
    font-size: .7rem;
    color: var(--blue-2);
    text-align: center;
    letter-spacing: .08em;
    margin-bottom: 1.3rem;
}

.pc-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.2rem;
}

.pc-rows {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.3rem;
}

.pc-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .83rem;
}

.pc-icon {
    width: 18px;
    text-align: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.pc-txt {
    color: rgba(240,238,255,.5);
}

    .pc-txt strong {
        color: var(--white);
        font-weight: 500;
    }

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.pctag {
    padding: .25rem .65rem;
    border-radius: 3px;
    font-family: var(--fm);
    font-size: .63rem;
    letter-spacing: .04em;
}

.pct-p {
    background: rgba(108,43,217,.18);
    color: var(--purple-3);
    border: 1px solid rgba(108,43,217,.3);
}

.pct-b {
    background: rgba(26,107,255,.14);
    color: var(--blue-2);
    border: 1px solid rgba(26,107,255,.24);
}

.pct-g {
    background: rgba(212,160,23,.13);
    color: var(--gold-2);
    border: 1px solid rgba(212,160,23,.24);
}

/* Education Timeline */
.edu-section {
    margin-bottom: 6rem;
}

.section-label {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple-3);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

    .section-label::before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--purple-3);
    }

.section-heading {
    font-family: var(--fd);
    font-size: clamp(2.2rem,4vw,3.5rem);
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 2.5rem;
}

    .section-heading em {
        font-family: var(--fb);
        font-style: italic;
        background: var(--g-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.edu-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s var(--ease);
}

    .edu-card:hover {
        border-color: var(--purple-2);
        transform: translateY(-4px);
    }

    .edu-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
    }

.edu-bsc::before {
    background: linear-gradient(180deg,var(--blue),var(--purple));
}

.edu-msc::before {
    background: linear-gradient(180deg,var(--gold),var(--purple));
}

.edu-badge {
    font-family: var(--fm);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .22rem .6rem;
    border-radius: 3px;
    margin-bottom: .9rem;
    display: inline-block;
}

.edu-badge-b {
    background: rgba(26,107,255,.15);
    color: var(--blue-2);
    border: 1px solid rgba(26,107,255,.25);
}

.edu-badge-g {
    background: rgba(212,160,23,.13);
    color: var(--gold-2);
    border: 1px solid rgba(212,160,23,.24);
}

.edu-degree {
    font-family: var(--fd);
    font-size: 1.15rem;
    letter-spacing: .04em;
    margin-bottom: .3rem;
}

.edu-school {
    font-family: var(--fm);
    font-size: .75rem;
    color: var(--purple-3);
    margin-bottom: .3rem;
}

.edu-period {
    font-family: var(--fm);
    font-size: .68rem;
    color: var(--muted);
    margin-bottom: .8rem;
}

.edu-desc {
    font-size: .84rem;
    font-weight: 300;
    color: rgba(240,238,255,.48);
    line-height: 1.7;
}

/* Skills */
.skills-section {
    margin-bottom: 6rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.skill-group-title {
    font-family: var(--fd);
    font-size: 1rem;
    letter-spacing: .06em;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: .4rem;
}

.skill-name {
    font-family: var(--fs);
    font-size: .85rem;
    font-weight: 400;
    color: var(--white);
}

.skill-pct {
    font-family: var(--fm);
    font-size: .68rem;
    color: var(--muted);
}

.skill-track {
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    border-radius: 2px;
    background: var(--g-full);
    width: 0;
    transition: width 1.4s var(--ease);
}

/* Interests */
.interests-section {
    margin-bottom: 6rem;
}

.interests-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
}

.int-tag {
    padding: .35rem .9rem;
    border-radius: 3px;
    font-family: var(--fm);
    font-size: .7rem;
    letter-spacing: .05em;
    background: rgba(108,43,217,.12);
    color: var(--purple-3);
    border: 1px solid rgba(108,43,217,.25);
    transition: background .2s, color .2s;
    cursor: none;
}

    .int-tag:hover {
        background: var(--purple);
        color: #fff;
    }

/* Kinematic Scene 2 - Stats */
#scene-stats-track {
    height: 380vh;
}

#scene-stats {
    background: var(--black);
}

.ss-left, .ss-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform,opacity;
}

.ss-left {
    left: 0;
    background: var(--black-2);
    border-right: 1px solid var(--border);
}

.ss-right {
    right: 0;
    background: var(--black-3);
}

.ss-left-content {
    padding: 5% 8%;
}

.ss-eyebrow {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple-3);
    margin-bottom: 1rem;
}

.ss-heading {
    font-family: var(--fd);
    font-size: clamp(2.5rem,5vw,5rem);
    letter-spacing: .05em;
    line-height: .95;
    margin-bottom: 1.2rem;
}

.ss-body {
    font-size: .92rem;
    font-weight: 300;
    color: rgba(240,238,255,.55);
    line-height: 1.8;
    max-width: 340px;
}

.ss-right-content {
    padding: 5% 8%;
    width: 100%;
}

.ss-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.ss-stat-card {
    background: rgba(108,43,217,.1);
    border: 1px solid var(--border-2);
    border-radius: 6px;
    padding: 1.4rem;
}

.ss-sn {
    font-family: var(--fd);
    font-size: 2.6rem;
    letter-spacing: .04em;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ss-sl {
    font-family: var(--fm);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .3rem;
}

.ss-div {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg,transparent,var(--purple),var(--gold),transparent);
    transform: scaleY(0);
    transform-origin: top;
    z-index: 10;
}

/* Reveal variants (About-specific) */
.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

    .reveal-l.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

    .reveal-r.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* About Responsive */
@media(max-width:900px) {
    .ph-inner {
        grid-template-columns: 1fr;
    }

    .ph-card {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .edu-grid, .skills-grid, .ss-stat-grid {
        grid-template-columns: 1fr;
    }

    .ss-left, .ss-right {
        width: 100%;
        position: relative;
        height: auto;
        border: none;
    }

    #scene-stats {
        flex-direction: column;
    }

    .ss-div {
        display: none;
    }
}