﻿.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 0 80px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&q=80') center/cover;
    opacity: .12;
    filter: saturate(.3) brightness(.5);
}

.page-hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77,184,255,.05) 0%, transparent 60%), linear-gradient(to top, var(--bg) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--silver-dim);
    margin-bottom: 20px;
}

    .breadcrumb span {
        color: var(--blue);
    }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(4rem,8vw,8rem);
    font-weight: 300;
    color: var(--white);
    line-height: .95;
    letter-spacing: 2px;
}

    .page-title em {
        color: var(--blue);
        font-style: italic;
    }

.title-line {
    width: 80px;
    height: 1px;
    background: var(--blue);
    margin-top: 28px;
    box-shadow: 0 0 10px var(--blue-glow);
}

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-content > * {
    animation: fadeUp .9s ease backwards;
}

    .page-hero-content > *:nth-child(1) {
        animation-delay: .2s;
    }

    .page-hero-content > *:nth-child(2) {
        animation-delay: .4s;
    }

    .page-hero-content > *:nth-child(3) {
        animation-delay: .6s;
    }
.sec-label {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: 4px;
    color: var(--blue);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

    .sec-label::before {
        content: '//';
        color: var(--blue-dim);
    }

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem,4vw,3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 2px;
}

    .sec-title em {
        color: var(--blue);
        font-style: italic;
    }

.divider {
    width: 60px;
    height: 1px;
    background: var(--blue);
    margin: 24px 0;
    box-shadow: 0 0 10px var(--blue-glow);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: saturate(.6) brightness(.7);
    display: block;
}

.story-img-sm {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    filter: saturate(.5) brightness(.65);
    border: 3px solid var(--bg2);
    display: block;
}

.story-text p {
    color: var(--text);
    line-height: 1.95;
    font-size: 1rem;
    margin-bottom: 20px;
}

.story-text blockquote {
    border-left: 2px solid var(--blue);
    padding-left: 24px;
    margin: 32px 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--silver);
    line-height: 1.4;
}

@@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img-sm {
        display: none;
    }
}
.phil-section {
    background: var(--bg3);
    padding: 100px 80px;
}

.phil-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.phil-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.phil-card {
    background: rgba(77,184,255,.03);
    border: 1px solid var(--border);
    padding: 24px;
    transition: border-color .3s, background .3s;
    cursor: default;
}

    .phil-card:hover {
        border-color: var(--blue);
        background: rgba(77,184,255,.07);
    }

.phil-card-num {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--blue);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.phil-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.phil-card-desc {
    font-size: .8rem;
    color: var(--text);
    line-height: 1.7;
}

.mobius-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

@@media (max-width: 1024px) {
    .phil-inner {
        grid-template-columns: 1fr;
    }

    .mobius-svg-wrap {
        display: none;
    }
}
.team-section {
    padding: 100px 80px;
    background: var(--bg2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 60px;
}

.team-card {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .3s;
}

    .team-card:hover {
        border-color: var(--blue);
    }

.team-card-wrap {
    overflow: hidden;
}

.team-card-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    filter: saturate(.5) brightness(.65);
    transition: filter .4s, transform .5s;
    display: block;
}

.team-card:hover .team-card-img {
    filter: saturate(.8) brightness(.8);
    transform: scale(1.04);
}

.team-info {
    padding: 24px;
}

.team-role {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: 2px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

.team-desc {
    font-size: .8rem;
    color: var(--text);
    line-height: 1.7;
}

.team-tag {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: .6rem;
    padding: 4px 10px;
    border: 1px solid var(--border);
    color: var(--silver-dim);
    text-transform: uppercase;
}

@@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.timeline-section {
    background: var(--bg2);
    padding: 100px 80px;
}

.tl-inner {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

    .tl-inner::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: var(--border);
        transform: translateX(-50%);
    }

.tl-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    margin-bottom: 60px;
    align-items: start;
}

.tl-center {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.tl-dot {
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--blue-glow);
    flex-shrink: 0;
}

.tl-year {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 8px;
}

.tl-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.tl-desc {
    font-size: .82rem;
    color: var(--text);
    line-height: 1.7;
}

.tl-right {
    text-align: right;
}

@@media (max-width: 768px) {
    .tl-inner::before {
        left: 16px;
    }

    .tl-item {
        grid-template-columns: 40px 1fr;
    }

    .tl-right {
        display: none;
    }
}
.cta-section {
    background: var(--bg3);
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '∞';
        position: absolute;
        font-family: var(--font-display);
        font-size: 30rem;
        color: rgba(77,184,255,.03);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
        line-height: 1;
    }

.btn-cta-primary {
    background: var(--blue);
    color: var(--bg);
    border: none;
    padding: 16px 40px;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 0 30px var(--blue-glow);
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-primary:hover {
        background: var(--white);
        color: var(--bg);
    }

.btn-cta-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--silver);
    padding: 16px 40px;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-left: 16px;
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }