/* ══════════════════════════════════════════════════════════════
   MAXOPP HOME / LANDING PAGE STYLES
   Curtain Split, Hero, Stats, Programs, Gallery, Mentors, Action Arc
   ══════════════════════════════════════════════════════════════ */

/* ── MAIN SCROLLING CANVAS ── */
.main-wrapper,
.main-wrapper-test {
    padding: 24px 24px 0;
    position: relative;
    z-index: 10;
    display: block;
    box-sizing: border-box;
    background-color: var(--brand-bg);
    max-width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   FULL-BLEED FULLSCREEN WELCOME CURTAIN (100VW x 100VH)
   ══════════════════════════════════════════════════════════════ */
.welcome-curtain-stage {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
    will-change: transform;
}

.welcome-curtain-stage.curtain-dismissed {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.global-glass-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(14, 17, 26, 0.88) 0%, rgba(8, 10, 16, 0.94) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 0;
    will-change: opacity;
    transform: translateZ(0);
}

.curtain-panel {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 50%;
    background-color: transparent;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    border: none;
}

.curtain-panel.curtain-left {
    left: 0;
}

.curtain-panel.curtain-right {
    left: 50%;
    right: auto;
}

.curtain-100vw-wrapper {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100vh;
}

.curtain-100vw-wrapper.anchor-left {
    left: 0;
}

.curtain-100vw-wrapper.anchor-right {
    left: -100%;
    right: auto;
}

.curtain-editorial-layout {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #ffffff;
    pointer-events: none;
}

.curtain-editorial-layout>* {
    position: absolute;
    pointer-events: auto;
}

.glass-top-bar {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    z-index: 10;
}

.glass-top-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.glass-bottom-bar {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    z-index: 10;
}

.glass-bottom-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.orange-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: 1px;
}

.glass-bg-text {
    position: absolute;
    bottom: -2vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head);
    font-size: 14vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.glass-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.glass-logo {
    height: 50px;
    margin-bottom: 20px;
}

.glass-subtitle {
    color: var(--brand-orange);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.glass-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.glass-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    line-height: 1.6;
}

.glass-scroll-btn {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(12, 16, 24, 0.6);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 4px 16px rgba(0, 0, 0, 0.25);
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-scroll-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   HERO: 100VH CINEMATIC
   ══════════════════════════════════════════════════════════════ */




/* ══════════════════════════════════════════════════════════════
   OFFICIAL PROGRAMS: ARCHITECTURAL MONOLITH MOSAIC
   ══════════════════════════════════════════════════════════════ */
.programs-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 130px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.programs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid var(--brand-border);
}

.programs-monolith-box {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.programs-top-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--brand-border);
    gap: 1.5px;
    border-bottom: 1.5px solid var(--brand-border);
    width: 100%;
}

.programs-editorial-sidebar {
    padding: 52px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.sidebar-accent-bar {
    width: 28px;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

.sidebar-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--brand-black);
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.sidebar-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 28px 0;
}

.sidebar-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-black);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--brand-black);
    width: fit-content;
    transition: color 0.2s, border-color 0.2s;
}

.sidebar-explore-link:hover {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.program-mosaic-top {
    display: flex;
    align-items: flex-end;
    position: relative;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    min-height: 440px;
    width: 100%;
    padding: 32px;
}

.mosaic-flagship-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.mosaic-flagship-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.program-mosaic-top:hover .mosaic-flagship-bg-img {
    transform: scale(1.03);
}

.mosaic-top-content {
    padding: 34px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    max-width: 480px;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 100%);
    backdrop-filter: blur(32px) saturate(180%) contrast(105%);
    -webkit-backdrop-filter: blur(32px) saturate(180%) contrast(105%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    border-left: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow:
        inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.03),
        0 20px 40px -12px rgba(15, 23, 42, 0.15),
        0 1px 3px 0 rgba(0, 0, 0, 0.04);
    transition: all 0.35s var(--ease-out);
}

.program-mosaic-top:hover .mosaic-top-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1.5px 3px 0 rgba(255, 255, 255, 1),
        inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.04),
        0 28px 56px -12px rgba(15, 23, 42, 0.2),
        0 2px 6px 0 rgba(0, 0, 0, 0.06);
}

.mosaic-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.num-orange {
    color: #ea580c;
}

.num-purple {
    color: #7c3aed;
}

.num-pink {
    color: #c92460;
}

.num-blue {
    color: #0284c7;
}

.mosaic-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.eyebrow-orange {
    color: #ea580c;
}

.eyebrow-purple {
    color: #7c3aed;
}

.eyebrow-pink {
    color: #c92460;
}

.eyebrow-blue {
    color: #0284c7;
}

.mosaic-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.mosaic-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 24px 0;
    max-width: 440px;
}

.program-mosaic-top .mosaic-desc {
    color: #0f172a;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.55;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.mosaic-circle-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--brand-black);
    transition: all 0.25s var(--ease-out);
    margin-top: auto;
}

.program-mosaic-top:hover .mosaic-circle-btn,
.program-mosaic-card:hover .mosaic-circle-btn {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: scale(1.08) rotate(-45deg);
}

.programs-mosaic-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--brand-border);
    width: 100%;
}

.program-mosaic-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-decoration: none;
    color: inherit;
    min-height: 480px;
    padding: 18px;
    box-sizing: border-box;
}

.card-purple {
    background-color: #7da8d0;
}

.card-pink {
    background-color: #f4dbd3;
}

.card-ug {
    background-color: #c2d5f2;
}

.mosaic-card-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.mosaic-card-bg-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    transition: transform 0.5s var(--ease-out);
}

.program-mosaic-card:hover .mosaic-card-bg-img {
    transform: scale(1.03);
}

.mosaic-card-glass-placard {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    min-height: 270px;
    padding: 22px 20px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.54) 100%);
    backdrop-filter: blur(28px) saturate(180%) contrast(105%);
    -webkit-backdrop-filter: blur(28px) saturate(180%) contrast(105%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    border-left: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow:
        inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.03),
        0 16px 36px -8px rgba(15, 23, 42, 0.12),
        0 1px 3px 0 rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: all 0.35s var(--ease-out);
}

.program-mosaic-card:hover .mosaic-card-glass-placard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1.5px 3px 0 rgba(255, 255, 255, 1),
        inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.04),
        0 24px 48px -10px rgba(15, 23, 42, 0.18),
        0 2px 6px 0 rgba(0, 0, 0, 0.06);
}

.mosaic-card-glass-top {
    display: flex;
    flex-direction: column;
}

.program-mosaic-card .mosaic-num {
    font-size: 2.2rem;
    margin-bottom: 2px;
}

.program-mosaic-card .mosaic-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 6px;
}

.mosaic-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1.45vw, 1.55rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #090a0f;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.mosaic-card-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.42;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY: ULTRA-GLASS EDITORIAL UNDERLAP ARCHIVE
   ══════════════════════════════════════════════════════════════ */
.editorial-underlap-section {
    width: 100%;
    margin: 0 0 100px 0;
    box-sizing: border-box;
    position: relative;
}

.editorial-underlap-monolith {
    width: 100%;
    background: #080b12;
    background-image: radial-gradient(circle at 8% 40%, rgba(239, 129, 26, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 90% 70%, rgba(217, 70, 239, 0.06) 0%, transparent 55%);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 56px 0;
}

.editorial-glass-monolith {
    position: relative;
    z-index: 20;
    width: 480px;
    max-width: 92%;
    margin-left: 48px;
    padding: 44px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(0, 0, 0, 0.2) 100%), rgba(10, 14, 24, 0.35);
    backdrop-filter: blur(16px) saturate(180%) brightness(1.05);
    -webkit-backdrop-filter: blur(16px) saturate(180%) brightness(1.05);
    border-radius: 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 1px 0 rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateZ(0);
}

.editorial-glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.editorial-glass-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 10px var(--brand-orange);
}

.editorial-glass-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.editorial-glass-title-white {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    display: inline-block;
}

.editorial-glass-highlight {
    background: linear-gradient(120deg, #FFB03A 0%, #FF6500 35%, #FF246A 70%, #FF8500 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-shadow: none !important;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
    animation: luxuryShimmer 5s ease-in-out infinite alternate;
    will-change: background-position;
}

@keyframes luxuryShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.editorial-glass-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.65;
    color: #f1f5f9;
    margin: 0 0 28px 0;
    text-wrap: pretty;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.editorial-glass-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.editorial-glass-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.editorial-glass-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.08);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 129, 26, 0.6);
}

.editorial-glass-btn:active {
    transform: scale(0.95);
}

.editorial-glass-readout {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.editorial-underlap-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    z-index: 5;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 94%, transparent 100%);
}

.editorial-underlap-viewport:active {
    cursor: grabbing;
}

.editorial-underlap-rail {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
    padding-left: 480px;
}

.film-slide-card {
    width: 350px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #0f131d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    contain: paint layout;
    isolation: isolate;
}

.film-slide-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--brand-orange);
    box-shadow: 0 22px 60px rgba(239, 129, 26, 0.35);
    z-index: 15;
}

.film-slide-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.film-slide-img-box img {
    width: 114%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.25s ease-out;
}

.film-slide-stamp {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(5, 7, 12, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

.film-slide-stamp-tag {
    color: var(--brand-orange);
}

.film-slide-drawer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 18px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 12, 0.95) 60%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.film-slide-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.film-slide-sub {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY LIGHTBOX MODAL (LUXURY CROSS-FADE ARCHITECTURE)
   ══════════════════════════════════════════════════════════════ */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s ease;
}

.gallery-lightbox-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1;
}

.lightbox-inner-container {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: scale(0.94) translateY(16px);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.35s ease;
}

.gallery-lightbox-modal.is-open .lightbox-inner-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lightbox-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
}

.lightbox-exp-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lightbox-counter-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.1);
}

.lightbox-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 72vh;
    border-radius: 18px;
    overflow: hidden;
    background: #090a10;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lightbox-main-img {
    max-width: 86vw;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    will-change: transform, opacity;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 12, 18, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-caption-bar {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

.lightbox-sub {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════
   FACULTY & OPERATORS: EXECUTIVE ARCHITECTURAL DOSSIER
   ══════════════════════════════════════════════════════════════ */
.mentors-dossier-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 130px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dossier-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1.5px solid var(--brand-border);
}

.dossier-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: #0f172a;
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dossier-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.dossier-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
}

.dossier-lead-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #475569;
    margin: 0;
    max-width: 480px;
    line-height: 1.65;
    text-align: left;
    text-wrap: pretty;
}

.dossier-monolith-matrix {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.dossier-matrix-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dossier-utility-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 800;
}

.dossier-pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    display: inline-block;
}

/* ══════════════════════════════════════════════════════════════
   SEE MAXOPP IN ACTION — FOCUS ARC HORIZON
   ══════════════════════════════════════════════════════════════ */
.action-arc-section {
    width: 100%;
    margin: 0 0 160px 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
}

.action-header-container {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1.5px solid var(--brand-border);
}

.action-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: #0f172a;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.action-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
}

.action-lead-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
    max-width: 420px;
    line-height: 1.55;
    text-align: right;
}

.action-arc-stage {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: transparent;
    padding: 70px 0 170px 0;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    cursor: grab;
    user-select: none;
    perspective: 1600px;
}

.action-arc-stage:active {
    cursor: grabbing;
}

.action-arc-track {
    display: flex;
    width: max-content;
    padding: 0 12vw;
    will-change: transform;
    align-items: center;
    transform-style: preserve-3d;
}

.action-arc-card {
    width: clamp(265px, 20.5vw, 295px);
    aspect-ratio: 9 / 16;
    margin-left: -36px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #090a10;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: -8px 20px 50px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px;
    will-change: transform;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    isolation: isolate;
}

.action-arc-card:first-child {
    margin-left: 0;
}

.action-arc-card:hover {
    border-color: var(--brand-orange);
    box-shadow: -8px 24px 65px rgba(239, 129, 26, 0.35);
}

.action-arc-card.is-active-reel {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--brand-orange), 0 0 45px rgba(239, 129, 26, 0.45) !important;
    cursor: default;
}

.action-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
    transition: transform 0.6s var(--ease-out), opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    z-index: 1;
}

.action-card-blur-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.6);
    -webkit-filter: blur(12px) brightness(0.6);
    opacity: 0.8;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 0;
}

.action-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

.action-arc-card.is-active-reel .action-card-video {
    opacity: 1;
    pointer-events: auto;
}

.action-arc-card.is-active-reel .action-card-img,
.action-arc-card.is-active-reel .action-card-blur-bg {
    opacity: 0;
}

.action-arc-card:hover .action-card-img {
    transform: scale(1.05);
    opacity: 0.96;
}

.action-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 10, 16, 0.45) 0%, rgba(9, 10, 16, 0.0) 35%, rgba(9, 10, 16, 0.75) 72%, #06070a 100%);
    pointer-events: none;
    z-index: 3;
}

.action-card-top-row {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.action-card-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 5px 11px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(10, 12, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.35), 0 4px 12px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.action-card-close-btn {
    display: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%), rgba(10, 12, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.action-arc-card.is-active-reel .action-card-close-btn {
    display: flex;
}

.action-card-close-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.1);
}

.action-card-bottom-row {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    padding-top: 10px;
}

.action-card-sub-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 78%;
}

.action-card-sub-name {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.action-card-audio-pill {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.action-card-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.2s var(--ease-out), background 0.2s ease;
}

.action-arc-card:hover .action-card-play-btn,
.action-arc-card.is-active-reel .action-card-play-btn {
    transform: scale(1.12);
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

/* ══════════════════════════════════════════════════════════════
   HOME-SPECIFIC RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .programs-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .programs-top-row {
        grid-template-columns: 1fr;
    }

    .programs-editorial-sidebar {
        border-bottom: 1.5px solid var(--brand-border);
    }

    .programs-mosaic-bottom-grid {
        grid-template-columns: 1fr;
    }

    .dossier-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dossier-lead-desc {
        text-align: left;
        max-width: 100%;
    }

    .dossier-grid-stage {
        grid-template-columns: repeat(2, 1fr);
    }

    .dossier-matrix-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dossier-footer-points {
        flex-wrap: wrap;
        gap: 12px;
    }

    .action-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .action-lead-desc {
        text-align: left;
        max-width: 100%;
    }

    .editorial-underlap-monolith {
        flex-direction: column;
        padding: 36px 20px;
        min-height: auto;
        gap: 28px;
    }

    .editorial-glass-monolith {
        width: 100%;
        margin-left: 0;
        padding: 32px 24px;
    }

    .editorial-glass-headline {
        white-space: normal;
        font-size: clamp(1.8rem, 5.5vw, 2.4rem);
    }

    .editorial-glass-highlight {
        white-space: normal;
    }

    .editorial-underlap-viewport {
        position: relative;
        height: 480px;
    }

    .editorial-underlap-rail {
        padding-left: 0;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close-btn {
        top: 10px;
        right: 10px;
    }
}



@media (max-width: 640px) {
    .action-arc-section {
        margin-bottom: 60px;
    }

    .mentors-dossier-section {
        margin-bottom: 70px;
        gap: 24px;
    }

    .dossier-grid-stage {
        grid-template-columns: 1fr;
    }

    .dossier-cell {
        padding: 20px 18px 24px;
    }

    .dossier-matrix-utility-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 18px;
    }

    .dossier-matrix-footer {
        padding: 14px 18px;
    }

    .film-slide-card {
        width: 285px;
        height: 380px;
    }

    .action-arc-stage {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 40px 0 80px 0 !important;
        overflow-x: auto !important;
    }
}