/* ══════════════════════════════════════════════════════════════
   MAXOPP ABOUT PAGE — BUILT ON THE SHARED DESIGN SYSTEM
   Hero, stats matrix, badges & buttons come from global.css.
   This file only carries page-specific layout.
   ══════════════════════════════════════════════════════════════ */

/* ── PAGE RHYTHM ── */
.about-founders,
.motto-stairs,
.about-pillars,
.about-values,
.about-mission {
    max-width: 1360px;
    margin: 0 auto 120px;
}

/* ── SECTION HEADS (headline left / description right) ── */
.about-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 48px;
}

.about-section-head .unboxed-badge {
    margin-bottom: 18px;
}

.about-section-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748b;
    max-width: 340px;
    margin: 0 0 6px;
    padding-left: 22px;
    border-left: 2.5px solid var(--brand-orange);
    flex-shrink: 0;
}

/* ── BRAND TICKER (full-bleed motto marquee) ── */
.brand-ticker {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--brand-black);
    color: #ffffff;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 120px;
}

.brand-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #e2e8f0;
    padding: 0 30px;
    white-space: nowrap;
}

.ticker-accent {
    color: var(--brand-orange);
}

.ticker-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-magenta);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.9;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   FOUNDERS — DARK DOSSIER PANEL
   ══════════════════════════════════════════════════════════════ */
.founders-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        #06070a;
    background-size: 44px 44px, 44px 44px, auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 76px 72px;
}

.founders-panel::before,
.founders-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    filter: blur(70px);
}

.founders-panel::before {
    top: -140px;
    left: -80px;
    width: 440px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(239, 129, 26, 0.26), transparent 70%);
}

.founders-panel::after {
    bottom: -150px;
    right: -80px;
    width: 420px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(201, 36, 96, 0.2), transparent 70%);
}

.founders-ghost {
    position: absolute;
    bottom: -38px;
    right: -10px;
    font-family: var(--font-display);
    font-size: clamp(6rem, 13vw, 10.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.founders-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 64px;
    align-items: center;
}

.founders-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

.founders-frame-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
    background: rgba(5, 5, 8, 0.72);
    padding: 7px 12px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.founders-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.founders-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #94a3b8;
}

.fb-dash {
    width: 26px;
    height: 2.5px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.founders-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.founders-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.75;
    color: #cbd5e1;
    max-width: 560px;
    margin: 0;
}

.founders-sign {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 26px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.founder-sign {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fs-dash {
    width: 34px;
    height: 3px;
    background: var(--brand-orange);
    flex-shrink: 0;
}

.fs-name {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.fs-role {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #64748b;
    margin-top: 4px;
}

.fs-link {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--brand-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s var(--ease-out);
}

.fs-link:hover {
    transform: translateX(6px);
}

/* ══════════════════════════════════════════════════════════════
   MOTTO — STAIRCASE EDITORIAL TRIPTYCH
   ══════════════════════════════════════════════════════════════ */
.stair-row {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 46px 0;
    border-top: 1.5px solid var(--brand-border);
}

.stair-row:last-child {
    border-bottom: 1.5px solid var(--brand-border);
}

.stair-idx {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.stair-word {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--brand-black);
    margin: 0;
    transition: transform 0.35s var(--ease-out);
}

.stair-row:hover .stair-word {
    transform: translateX(14px);
}

.stair-note {
    margin-left: auto;
    max-width: 280px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    border-left: 2.5px solid var(--brand-orange);
    padding-left: 18px;
}

.stair-shift-1 { padding-left: 10%; }
.stair-shift-2 { padding-left: 20%; }

.stair-shift-2 .stair-idx { color: var(--brand-magenta); }
.stair-shift-2 .stair-note { border-left-color: var(--brand-magenta); }

/* ══════════════════════════════════════════════════════════════
   PILLARS — ASYMMETRIC BENTO MATRIX
   ══════════════════════════════════════════════════════════════ */
.pillar-bento {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    border: 1.5px solid var(--brand-border);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.pillar-cell {
    position: relative;
    padding: 46px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.pillar-cell:hover {
    background: rgba(239, 129, 26, 0.025);
}

.cell-dark {
    grid-row: span 2;
    background: #06070a;
    border-right: 1.5px solid var(--brand-border);
    padding: 54px 46px;
    gap: 16px;
}

.cell-dark:hover {
    background: #0a0c12;
}

.cell-2 { border-bottom: 1.5px solid var(--brand-border); }

.cell-wide {
    grid-column: 1 / -1;
    border-top: 1.5px solid var(--brand-border);
    flex-direction: row;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.cell-wide-head {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.cell-wide p {
    flex: 1;
    min-width: 240px;
    margin: 0;
}

.cell-wide .cell-chips {
    margin-left: auto;
}

.cell-ghost {
    position: absolute;
    top: 16px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(5, 5, 8, 0.05);
    pointer-events: none;
    transition: color 0.3s ease;
}

.pillar-cell:hover .cell-ghost { color: rgba(239, 129, 26, 0.16); }

.cell-dark .cell-ghost { color: rgba(255, 255, 255, 0.06); }
.cell-dark:hover .cell-ghost { color: rgba(239, 129, 26, 0.2); }

.pillar-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.pillar-cell .pillar-icon { color: var(--brand-black); }
.cell-dark .pillar-icon { color: var(--brand-orange); }

.pillar-cell h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 0;
}

.cell-dark h4 {
    font-size: 1.45rem;
    color: #ffffff;
}

.pillar-cell p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

.cell-dark p { color: #94a3b8; }

.cell-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.cell-chips span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 6px 11px;
    border: 1px solid var(--brand-border);
    border-radius: 999px;
    color: var(--brand-muted);
    white-space: nowrap;
}

.cell-dark .cell-chips span {
    border-color: rgba(255, 255, 255, 0.16);
    color: #cbd5e1;
}

/* ══════════════════════════════════════════════════════════════
   VALUES — OUTLINED-SERIAL LEDGER
   ══════════════════════════════════════════════════════════════ */
.ledger-list {
    list-style: none;
    border-top: 1.5px solid var(--brand-border);
    margin: 0;
    padding: 0;
}

.ledger-row {
    display: grid;
    grid-template-columns: 110px 1fr auto 30px;
    gap: 26px;
    align-items: center;
    padding: 28px 10px;
    border-bottom: 1.5px solid var(--brand-border);
    transition: padding-left 0.25s var(--ease-out), background 0.25s ease;
}

.ledger-row:hover {
    padding-left: 30px;
    background: rgba(239, 129, 26, 0.03);
}

.ledger-serial {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(5, 5, 8, 0.28);
    transition: -webkit-text-stroke-color 0.25s ease;
}

.ledger-row:hover .ledger-serial {
    -webkit-text-stroke-color: var(--brand-orange);
}

.ledger-main h4 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--brand-black);
    margin-bottom: 6px;
}

.ledger-main p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
}

.ledger-tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--brand-muted);
    border: 1px solid var(--brand-border);
    padding: 7px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.ledger-row:hover .ledger-tag {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.value-arrow {
    width: 20px;
    height: 20px;
    color: var(--brand-orange);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}

.ledger-row:hover .value-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ══════════════════════════════════════════════════════════════
   MISSION — HAIRLINE-LEDGER STRIP (NO CARDS)
   ══════════════════════════════════════════════════════════════ */
.mission-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mission-item {
    padding: 10px 30px;
    border-left: 1.5px solid var(--brand-border);
}

.mission-item:first-child {
    border-left: none;
    padding-left: 0;
}

.mission-code {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

.mission-item h4 {
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--brand-black);
    margin-bottom: 10px;
}

.mission-item p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
}

/* ══════════════════════════════════════════════════════════════
   CTA — DARK ADMISSIONS PANEL
   ══════════════════════════════════════════════════════════════ */
.about-cta {
    max-width: 1360px;
    margin: 0 auto 120px;
}

.about-cta-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #06070a;
    background-size: 44px 44px, 44px 44px, auto;
    border-radius: 24px;
    padding: 110px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta-panel::before,
.about-cta-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    filter: blur(70px);
}

.about-cta-panel::before {
    top: -140px;
    left: -80px;
    width: 460px;
    height: 340px;
    background: radial-gradient(ellipse at center, rgba(239, 129, 26, 0.3), transparent 70%);
}

.about-cta-panel::after {
    bottom: -150px;
    right: -80px;
    width: 420px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(201, 36, 96, 0.24), transparent 70%);
}

.about-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #94a3b8;
}

.about-cta-eyebrow .dossier-pulse-dot {
    color: var(--brand-orange);
}

.about-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.about-cta-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #cbd5e1;
    max-width: 460px;
    margin: 0 0 10px;
}

.about-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-founders,
    .about-pillars,
    .about-values,
    .about-mission,
    .motto-stairs {
        margin-bottom: 90px;
    }

    .founders-panel {
        padding: 48px 32px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .founders-ghost {
        bottom: -26px;
        font-size: clamp(4rem, 16vw, 7rem);
    }

    .pillar-bento {
        grid-template-columns: 1fr 1fr;
    }

    .cell-dark {
        grid-row: auto;
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1.5px solid var(--brand-border);
    }

    .cell-wide {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .cell-wide .cell-chips {
        margin-left: 0;
    }

    .mission-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0 32px;
    }

    .mission-item {
        border-left: none;
        border-top: 1.5px solid var(--brand-border);
        padding: 22px 0 0;
        margin-top: 22px;
    }

    .mission-item:nth-child(-n+2) {
        border-top: none;
        margin-top: 0;
        padding-top: 10px;
    }

    .about-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .brand-ticker {
        padding: 15px 0;
        margin-bottom: 72px;
    }

    .ticker-item {
        font-size: 0.68rem;
        padding: 0 18px;
        letter-spacing: 0.18em;
    }

    .about-founders,
    .about-pillars,
    .about-values,
    .about-mission,
    .motto-stairs,
    .about-cta {
        margin-bottom: 64px;
    }

    .founders-panel {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .founders-sign {
        flex-direction: column;
        align-items: flex-start;
    }

    .stair-row {
        flex-wrap: wrap;
        gap: 12px 18px;
        padding: 30px 0;
    }

    .stair-note {
        margin-left: 0;
        max-width: 100%;
    }

    .stair-shift-1 { padding-left: 6%; }
    .stair-shift-2 { padding-left: 12%; }

    .pillar-bento {
        grid-template-columns: 1fr;
    }

    .cell-2 {
        border-bottom: 1.5px solid var(--brand-border);
    }

    .cell-3 {
        border-bottom: none;
    }

    .pillar-cell {
        padding: 32px 24px;
    }

    .cell-dark {
        padding: 36px 26px;
    }

    .cell-ghost {
        font-size: 3.2rem;
        top: 12px;
        right: 16px;
    }

    .ledger-row {
        grid-template-columns: 56px 1fr;
        gap: 16px;
        padding: 20px 2px;
    }

    .ledger-row:hover {
        padding-left: 8px;
    }

    .ledger-serial {
        font-size: 1.7rem;
        -webkit-text-stroke-width: 1px;
    }

    .ledger-tag,
    .value-arrow {
        display: none;
    }

    .ledger-main h4 {
        font-size: 1.05rem;
    }

    .mission-strip {
        grid-template-columns: 1fr;
    }

    .mission-item:nth-child(2) {
        border-top: 1.5px solid var(--brand-border);
        padding-top: 22px;
        margin-top: 22px;
    }

    .about-cta-panel {
        padding: 56px 24px;
        border-radius: 18px;
    }
}

/* ──────────────────────────────────────────────────────────────
   WARM HERO REGRADE (About only)
   hero-bg.jpg is warm brown/amber; the shared blue-black overlay
   fights it. These page-scoped overrides regrade to warm near-black
   + a faint brand-orange cast so photo and overlay agree.
   ────────────────────────────────────────────────────────────── */
.page-about .hero-bg-media img {
    filter: brightness(0.92) contrast(1.06) saturate(1.06);
}

.page-about .hero-gradient-overlay {
    background: linear-gradient(to top,
            rgba(12, 9, 5, 0.95) 0%,
            rgba(16, 12, 7, 0.72) 30%,
            rgba(24, 17, 9, 0.26) 60%,
            rgba(24, 17, 9, 0.04) 80%,
            rgba(24, 17, 9, 0.32) 100%);
}

.page-about .hero-gradient-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 18% 8%, rgba(239, 129, 26, 0.14), transparent 55%);
    pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────
   CAMPUS — REAL PHOTO STRIP (uses existing /gallery assets)
   ────────────────────────────────────────────────────────────── */
.campus-strip {
    max-width: 1360px;
    margin: 0 auto 120px;
}

.campus-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.campus-shot {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0a0c12;
}

.campus-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.03) contrast(1.04);
    transition: transform 0.6s var(--ease-out);
}

.campus-shot:hover img {
    transform: scale(1.07);
}

.campus-shot figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
    background: rgba(5, 5, 8, 0.68);
    padding: 6px 10px;
    border-radius: 7px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 1024px) {
    .campus-strip { margin-bottom: 90px; }
    .campus-rail { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .campus-strip { margin-bottom: 64px; }
    .campus-rail { gap: 10px; }
}
