/* ══════════════════════════════════════════════════════════════
   MAXOPP GLOBAL DESIGN SYSTEM & SHARED STYLES
   Common across all pages: Tokens, Reset, Frame, Notch, Footer
   ══════════════════════════════════════════════════════════════ */

/* ── LOCAL VARIABLE WEBFONTS (SELF-HOSTED HIGH PERFORMANCE) ── */
@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../fonts/CabinetGrotesk-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2');
    font-weight: 100 800;
    font-display: swap;
    font-style: normal;
}

:root {
    --brand-orange: #ef811a;
    --brand-orange-hover: #d96d00;
    --brand-magenta: #c92460;
    --brand-black: #050508;
    --brand-slate: #1e293b;
    --brand-muted: #64748b;
    --brand-bg: #f9fafc;
    --brand-border: rgba(0, 0, 0, 0.08);

    --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

html {
    scroll-padding-top: 90px;
    background-color: var(--brand-bg);
    color: var(--brand-slate);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--brand-bg);
    color: var(--brand-slate);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body.preloader-active {
    overflow: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL BUTTONS & UTILITIES
   ══════════════════════════════════════════════════════════════ */
.text-gradient-brand {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn-neo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-orange {
    background-color: var(--brand-orange);
    color: #ffffff;
}

.btn-orange:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 129, 26, 0.35);
}

.btn-neo-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
    cursor: pointer;
    text-decoration: none;
}

.btn-neo-outline-light:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-neo:active,
.btn-neo-outline-light:active {
    transform: scale(0.96);
}

.btn-arrow {
    width: 14px;
    height: 14px;
    stroke-width: 3;
    transition: transform 0.25s var(--ease-out);
}

.btn-neo:hover .btn-arrow {
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL CINEMATIC HERO (COMMON ACROSS ALL PAGES)
   ══════════════════════════════════════════════════════════════ */
.cinematic-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 48px);
    min-height: calc(100vh - 48px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #07090e;
    box-sizing: border-box;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 80px;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.08);
    filter: brightness(0.85) contrast(1.1) saturate(0.95);
    will-change: transform;
    display: block;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 9, 14, 0.96) 0%,
            rgba(7, 9, 14, 0.7) 30%,
            rgba(7, 9, 14, 0.25) 60%,
            rgba(7, 9, 14, 0.05) 80%,
            rgba(7, 9, 14, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bottom-area {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 48px 36px 48px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.hero-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
    width: 100%;
}

.hero-desc-wrapper {
    max-width: 620px;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

.orange-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--brand-orange);
    display: inline-block;
    box-shadow: 0 0 10px rgba(239, 129, 26, 0.8);
}

.hero-description-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.92);
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.hero-hairline-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 16px;
}

.hero-giant-headline {
    margin-bottom: 14px;
}

.headline-text {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-foot-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    flex-wrap: wrap;
}

.hero-foot-sep {
    color: var(--brand-orange);
    font-weight: 900;
}

@media (max-width: 1024px) {
    .cinematic-hero {
        height: auto;
        min-height: 560px;
        margin-left: -16px !important;
        margin-right: -16px !important;
        width: calc(100% + 32px) !important;
        max-width: calc(100% + 32px) !important;
    }
    .hero-bottom-area {
        padding: 48px 32px 28px 32px;
    }
}

@media (max-width: 768px) {
    .cinematic-hero {
        height: auto !important;
        min-height: calc(100svh - 28px);
        border-radius: 20px;
        margin-left: -18px !important;
        margin-right: -18px !important;
        width: calc(100% + 36px) !important;
        max-width: calc(100% + 36px) !important;
        margin-bottom: 48px;
        justify-content: center;
        padding-top: calc(48px + 24px) !important;
        padding-bottom: 24px !important;
        box-sizing: border-box;
    }

    .hero-bottom-area {
        padding: 0 18px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .hero-top-row {
        display: contents !important;
    }

    .hero-desc-wrapper {
        display: contents !important;
    }

    .hero-overline {
        order: 1 !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.1em;
        margin-bottom: 10px !important;
        line-height: 1.4;
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .hero-giant-headline {
        order: 2 !important;
        margin-bottom: 12px !important;
    }

    .headline-text {
        font-size: clamp(1.85rem, 6.8vw, 2.35rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
        word-break: break-word;
        margin: 0 !important;
    }

    .hero-hairline-divider {
        display: none !important;
    }

    .hero-description-text {
        order: 3 !important;
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
        margin: 0 0 18px 0 !important;
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .hero-ctas {
        order: 4 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }

    .hero-ctas .btn-neo,
    .hero-ctas .btn-neo-outline-light {
        width: 100% !important;
        justify-content: center !important;
        height: 46px !important;
        font-size: 0.82rem !important;
        box-sizing: border-box !important;
    }

    .hero-foot-strip {
        order: 5 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        font-size: 0.62rem !important;
        letter-spacing: 0.05em !important;
        margin-top: 0 !important;
    }

    .hero-foot-strip span:not(.hero-foot-sep) {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
        display: inline-block !important;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        font-size: 0.62rem !important;
    }

    .hero-foot-sep {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .cinematic-hero {
        border-radius: 16px;
        margin-left: -14px !important;
        margin-right: -14px !important;
        width: calc(100% + 28px) !important;
        max-width: calc(100% + 28px) !important;
        margin-bottom: 40px;
        padding-top: calc(44px + 20px) !important;
        padding-bottom: 20px !important;
    }

    .hero-bottom-area {
        padding: 0 14px !important;
    }

    .headline-text {
        font-size: clamp(1.7rem, 6.4vw, 2.1rem) !important;
    }

    .hero-description-text {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRELOADER: CHROMATIC FLUID ENGINE (CINEMATIC FADE)
   ══════════════════════════════════════════════════════════════ */
.maxopp-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #050508;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, visibility;
}

.maxopp-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 240px;
    background: radial-gradient(ellipse at center, rgba(239, 129, 26, 0.22) 0%, rgba(201, 36, 96, 0.12) 48%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
    animation: preloaderHaloBreathe 3.5s infinite alternate ease-in-out;
}

@keyframes preloaderHaloBreathe {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.55;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 0.95;
    }
}

.preloader-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.infinity-glow-box {
    position: relative;
    width: 260px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.infinity-path-bg {
    stroke: rgba(255, 255, 255, 0.07);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chromatic-stream-1 {
    stroke: url(#chromaticBrandGrad1);
    stroke-width: 4.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 140 320;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 10px rgba(239, 129, 26, 0.85));
    animation: chromaticFlow1 2s linear infinite;
}

.chromatic-stream-2 {
    stroke: url(#chromaticBrandGrad2);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 80 380;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 8px rgba(201, 36, 96, 0.8));
    animation: chromaticFlow2 2.6s linear infinite;
}

@keyframes chromaticFlow1 {
    0% {
        stroke-dashoffset: 460;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes chromaticFlow2 {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 460;
    }
}

.preloader-brand-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.preloader-wordmark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(239, 129, 26, 0.45);
}

.preloader-status-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   FIXED WHITE FRAME & SMART NOTCH (COMMON HEADER)
   ══════════════════════════════════════════════════════════════ */
/* ── GLOBAL MAIN WRAPPER ── */
.main-wrapper,
.main-wrapper-test {
    padding: 24px 24px 0;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: var(--brand-bg);
    max-width: 100%;
}

.fixed-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.frame-container {
    width: 100%;
    height: 100%;
    padding: 24px;
    overflow: hidden;
}

.transparent-viewport {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    box-shadow:
        0 0 0 2000px #ffffff,
        inset 0 0 24px rgba(0, 0, 0, 0.18),
        inset 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
}

.notch-wrapper {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    z-index: 10;
    clip-path: inset(0px -60px -720px -60px);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.notch {
    height: 62px;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    transform-origin: top center;
    will-change: transform, opacity;
}

.notch::before,
.notch::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    pointer-events: none;
}

.notch::before {
    left: -24px;
    background: radial-gradient(circle at 0% 100%, transparent 23.8px, #ffffff 24px);
}

.notch::after {
    right: -24px;
    background: radial-gradient(circle at 100% 100%, transparent 23.8px, #ffffff 24px);
}

.notch .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.notch .logo img {
    height: 30px;
    width: auto;
}

.notch-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.notch-nav-link {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    color: #0b0f19;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 8px 4px;
    transition: color 0.2s var(--ease-out);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.notch-nav-link:hover {
    color: var(--brand-orange);
}

.notch-nav-link.active {
    color: var(--brand-orange);
}

/* Precision Architectural Hairline Indicator */
.notch-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.22s var(--ease-out);
    border-radius: 1px;
}

.notch-nav-link:hover::after,
.notch-nav-link.active::after {
    width: 100%;
}

/* ── ARCHITECTURAL OPERATOR DROPDOWN IN NOTCH ── */
.notch-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.notch-dropdown-trigger {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.notch-dropdown-trigger .dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    stroke-width: 2.2;
    width: 9px;
    height: 9px;
    opacity: 0.65;
}

.notch-nav-dropdown:hover .notch-dropdown-trigger .dropdown-chevron,
.notch-nav-dropdown.open .notch-dropdown-trigger .dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--brand-orange);
}

/* Hover bridge to keep dropdown open during mouse travel */
.notch-nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 18px;
    pointer-events: auto;
}

/* Architectural Dark Dossier HUD */
.notch-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: -20px;
    left: auto;
    transform: translateY(8px);
    min-width: 360px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 0;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.16),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Dossier Telemetry Header Strip */
.notch-dropdown-menu::before {
    content: "CURRICULUM ARCHIVE // 2026 COHORTS";
    display: flex;
    align-items: center;
    padding: 11px 18px;
    background: #f4f5f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #64748b;
    text-transform: uppercase;
}

.notch-nav-dropdown:hover .notch-dropdown-menu,
.notch-nav-dropdown.open .notch-dropdown-menu,
.notch-nav-dropdown:focus-within .notch-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Track Row Docket Item */
.notch-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    background: transparent;
    position: relative;
    transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.notch-dropdown-item:hover {
    background: #f4f5f8;
    padding-left: 22px;
}

.notch-dropdown-item.active {
    background: rgba(239, 129, 26, 0.10);
    border-left: 3px solid var(--brand-orange);
}

.dropdown-item-code {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--brand-orange);
    background: rgba(239, 129, 26, 0.12);
    border: 1px solid rgba(239, 129, 26, 0.32);
    padding: 3px 8px;
    border-radius: 6px;
    min-width: 48px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.dropdown-item-title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: #0b0f19;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.dropdown-item-desc {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* Minimalist Mono Arrow Indicator */
.notch-dropdown-item::after {
    content: "→";
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-left: auto;
    opacity: 0.3;
    transform: translateX(0);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.notch-dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

.notch-dropdown-divider {
    display: none;
}

/* Dossier Footer Strip */
.notch-dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    background: rgba(239, 129, 26, 0.08);
    border-top: 1px solid rgba(239, 129, 26, 0.22);
    font-family: var(--font-mono);
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.notch-dropdown-all:hover {
    background: rgba(239, 129, 26, 0.16);
    color: var(--brand-orange-hover);
}

.notch-dropdown-all svg {
    transition: transform 0.2s ease;
}

.notch-dropdown-all:hover svg {
    transform: translateX(4px);
}

.notch .btn-neo {
    height: 40px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(239, 129, 26, 0.32);
}

.notch-inner-elem {
    will-change: opacity, transform;
}

/* ══════════════════════════════════════════════════════════════
   ARCHITECTURAL MASTER FOOTER (COMMON FOOTER)
   ══════════════════════════════════════════════════════════════ */
.architectural-master-footer {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 10;
    background: #06070a;
    border-radius: 28px 28px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    box-shadow:
        0 -1px 0 rgba(0, 0, 0, 0.04),
        0 -4px 16px rgba(0, 0, 0, 0.04),
        0 -16px 40px rgba(0, 0, 0, 0.06);
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-inner-wrap {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 48px 72px 48px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    box-sizing: border-box;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 380px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.footer-brand-tagline {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
    font-weight: 400;
}

.footer-contacts-minimal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.footer-contact-item {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-contact-item svg {
    color: var(--brand-orange);
    opacity: 1;
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: var(--brand-orange);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-heading {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom-deck {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-legal-copy {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SHARED STATS: UNBOXED ASYMMETRIC EDITORIAL SPREAD & BENTO MATRIX
   ══════════════════════════════════════════════════════════════ */
.stats-unboxed-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 120px auto;
    border-top: 1.5px solid var(--brand-border);
    border-bottom: 1.5px solid var(--brand-border);
    padding: 72px 0;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.unboxed-narrative {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unboxed-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.unboxed-badge.unboxed-badge-center,
.unboxed-badge-center {
    justify-content: center;
}

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

.unboxed-badge-text {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}

.unboxed-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--brand-black);
    margin: 0 0 24px 0;
}

.unboxed-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #475569;
    max-width: 460px;
    margin: 0;
    text-wrap: pretty;
}

.unboxed-desc strong {
    color: var(--brand-black);
}

.unboxed-grid-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border-left: 1.5px solid var(--brand-border);
    box-sizing: border-box;
}

.unboxed-matrix-cell {
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s var(--ease-out), background-color 0.25s ease;
    box-sizing: border-box;
}

.unboxed-matrix-cell:hover {
    transform: translateY(-2px);
    background-color: rgba(0, 0, 0, 0.015);
}

.unboxed-matrix-cell.border-r,
.border-r {
    border-right: 1.5px solid var(--brand-border);
}

.unboxed-matrix-cell.border-b,
.border-b {
    border-bottom: 1.5px solid var(--brand-border);
}

.unboxed-stat-num {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 4.6vw, 4.6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: baseline;
}

.unboxed-stat-num.tone-orange {
    color: var(--brand-orange);
}

.unboxed-stat-num.tone-magenta {
    color: var(--brand-magenta);
}

.unboxed-stat-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE BREAKPOINTS (FRAME, NOTCH, STATS, FOOTER)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .stats-unboxed-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 0;
        margin-bottom: 80px;
    }

    .unboxed-grid-matrix {
        border-left: none;
        border-top: 1.5px solid var(--brand-border);
    }
}

@media (max-width: 1024px) {
    .main-wrapper,
    .main-wrapper-test {
        padding: 24px calc(24px + 16px) 0 !important;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .frame-container {
        padding: 14px;
    }

    .transparent-viewport {
        border-radius: 20px;
        box-shadow:
            0 0 0 2000px #ffffff,
            inset 0 0 16px rgba(0, 0, 0, 0.15),
            inset 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .main-wrapper,
    .main-wrapper-test {
        padding: 14px calc(14px + 18px) 0 !important;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .notch-wrapper {
        max-width: calc(100% - 28px);
    }

    .notch {
        height: 48px;
        padding: 0 14px 6px;
        border-radius: 0 0 16px 16px;
    }

    .notch .logo img {
        height: 22px;
    }

    .notch-nav {
        display: none !important;
    }

    .notch .btn-neo {
        height: 34px;
        padding: 0 14px;
        font-size: 0.74rem;
        font-weight: 800;
        border-radius: 10px;
    }

    .unboxed-grid-matrix {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto !important;
        border: 1.5px solid var(--brand-border) !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: #ffffff !important;
    }

    .unboxed-matrix-cell {
        padding: 16px 14px !important;
        box-sizing: border-box !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .unboxed-matrix-cell:nth-child(1) {
        border-right: 1.5px solid var(--brand-border) !important;
        border-bottom: 1.5px solid var(--brand-border) !important;
    }

    .unboxed-matrix-cell:nth-child(2) {
        border-right: none !important;
        border-bottom: 1.5px solid var(--brand-border) !important;
    }

    .unboxed-matrix-cell:nth-child(3) {
        border-right: 1.5px solid var(--brand-border) !important;
        border-bottom: none !important;
    }

    .unboxed-matrix-cell:nth-child(4) {
        border-right: none !important;
        border-bottom: none !important;
    }

    .unboxed-headline {
        font-size: clamp(1.85rem, 6.8vw, 2.4rem) !important;
        margin-bottom: 12px !important;
    }

    .unboxed-desc {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
    }

    .unboxed-stat-num {
        font-size: clamp(1.8rem, 6.5vw, 2.4rem) !important;
        margin-bottom: 3px !important;
    }

    .unboxed-stat-label {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .frame-container {
        padding: 12px;
    }

    .transparent-viewport {
        border-radius: 16px;
    }

    .main-wrapper,
    .main-wrapper-test {
        padding: 12px calc(12px + 14px) 0 !important;
        box-sizing: border-box;
    }

    .notch-wrapper {
        max-width: calc(100% - 24px);
    }

    .notch {
        height: 44px;
        padding: 0 12px 4px;
        border-radius: 0 0 14px 14px;
    }

    .notch .logo img {
        height: 20px;
    }

    .notch .btn-neo {
        height: 32px;
        padding: 0 11px;
        font-size: 0.70rem;
        font-weight: 800;
    }

    .stats-unboxed-section {
        padding: 36px 0;
        margin-bottom: 48px !important;
        gap: 28px;
    }

    .unboxed-matrix-cell {
        padding: 20px 14px !important;
    }

    .unboxed-stat-num {
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   SHARED DOSSIER & MENTORS MATRIX
   ══════════════════════════════════════════════════════════════ */
.dossier-grid-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: var(--brand-border);
    gap: 1px;
}

.dossier-cell {
    background: #ffffff;
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    transition: background-color 0.25s var(--ease-out);
    text-decoration: none;
    color: inherit;
}

.dossier-cell:hover {
    background-color: #fafbfd;
}

.dossier-cell-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dossier-cell-index {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.06em;
}

.dossier-cell-discipline {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #ea580c;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dossier-cell-media {
    width: 100%;
    aspect-ratio: 1 / 1.16;
    border-radius: 16px;
    overflow: hidden;
    background: #fbfbfd;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.dossier-cell-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s var(--ease-out);
    display: block;
}

.dossier-cell:hover .dossier-cell-photo {
    transform: scale(1.03);
}

.dossier-cell-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dossier-cell-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--brand-black);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.dossier-cell-venture {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 10px 0;
}

.dossier-cell-outcome {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #f1f5f9;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: fit-content;
    line-height: 1.3;
    transition: background 0.2s ease, color 0.2s ease;
}

.outcome-icon {
    flex-shrink: 0;
    color: #ea580c;
}

.dossier-cell:hover .dossier-cell-outcome {
    background: rgba(239, 129, 26, 0.12);
    color: var(--brand-orange);
}

.dossier-matrix-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #ffffff;
    border-top: 1px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dossier-footer-points {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dossier-footer-point {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-point-icon {
    flex-shrink: 0;
    color: var(--brand-orange);
}

/* ══════════════════════════════════════════════════════════════
   SHARED FAQ DRAWER ACCORDION
   ══════════════════════════════════════════════════════════════ */
.faq-drawer {
    background: #ffffff;
    border: 1.5px solid var(--brand-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-drawer:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 24px rgba(239, 129, 26, 0.06);
}

.faq-drawer[open] {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.faq-trigger {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-trigger::-webkit-details-marker {
    display: none;
}

.faq-q-text {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.01em;
    padding-right: 16px;
}

.faq-chevron {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease;
}

.faq-chevron::before,
.faq-chevron::after {
    content: '';
    position: absolute;
    background: var(--brand-black);
    transition: transform 0.3s ease;
}

.faq-chevron::before {
    width: 12px;
    height: 2px;
}

.faq-chevron::after {
    width: 2px;
    height: 12px;
}

.faq-drawer[open] .faq-chevron {
    background: var(--brand-orange);
    transform: rotate(45deg);
}

.faq-drawer[open] .faq-chevron::before,
.faq-drawer[open] .faq-chevron::after {
    background: #ffffff;
}

.faq-answer {
    padding: 0 26px 22px 26px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.65;
    color: #475569;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 14px;
}

.faq-answer p {
    margin: 0;
}

.faq-trigger-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-q-number {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.faq-section {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto 130px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.faq-wrapper,
.faq-monolith,
.faq-accordion-wrap,
.faq-accordion-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

.faq-header-center,
.faq-header-block {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.faq-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 0 12px 0;
    text-align: center;
}

.faq-desc,
.section-subtitle-wide {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    text-wrap: pretty;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL SECTION LAYOUT & UNIFIED HEADER ARCHITECTURE
   ══════════════════════════════════════════════════════════════ */
.programs-section {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 130px auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

.programs-header-row,
.dossier-header-row,
.action-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    width: 100%;
    box-sizing: border-box;
}

.dossier-headline,
.action-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,
.action-lead-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #475569;
    max-width: 480px;
    margin: 0;
    text-align: left;
    text-wrap: pretty;
}

.dossier-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
}

.dossier-pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    display: inline-block;
}

.dossier-matrix-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: #f8fafc;
    border-bottom: 1.5px solid var(--brand-border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-sizing: border-box;
}

.dossier-utility-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #16a34a;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL UNIFIED FORM SYSTEM
   ══════════════════════════════════════════════════════════════ */
.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    width: 100%;
    box-sizing: border-box;
}

.form-field-group label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #334155;
}

.form-input,
.form-input-text,
.form-select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1.5px solid var(--brand-border);
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 0.94rem;
    color: var(--brand-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-input-text:focus,
.form-select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(239, 129, 26, 0.12);
}

.form-feedback-msg {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-feedback-msg.active {
    display: block;
}

.form-feedback-msg.success {
    color: #16a34a;
}

.form-feedback-msg.error {
    color: #dc2626;
}

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

    .programs-header-row,
    .dossier-header-row,
    .action-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .programs-section,
    .faq-section {
        margin-bottom: 64px;
    }
}

@media (max-width: 768px) {
    .programs-section,
    .faq-section,
    .stats-unboxed-section,
    .mentors-dossier-section {
        margin-bottom: 56px !important;
    }

    .pillars-mosaic-section {
        margin-top: 0 !important;
        margin-bottom: 48px !important;
    }

    .programs-header-row,
    .dossier-header-row,
    .action-header-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        margin-bottom: 24px !important;
    }

    .dossier-headline,
    .action-headline {
        font-size: clamp(1.8rem, 6.5vw, 2.3rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.035em !important;
    }

    .dossier-lead-desc,
    .action-lead-desc {
        font-size: 0.94rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .dossier-grid-stage {
        grid-template-columns: 1fr !important;
    }

    .dossier-cell {
        padding: 20px 16px !important;
    }

    .dossier-matrix-utility-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 12px 16px !important;
    }

    .dossier-matrix-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 14px 16px !important;
    }

    .dossier-footer-points {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    .programs-section,
    .faq-section,
    .stats-unboxed-section,
    .mentors-dossier-section {
        margin-bottom: 44px !important;
    }

    .pillars-mosaic-section {
        margin-top: 0 !important;
        margin-bottom: 36px !important;
    }

    .dossier-headline,
    .action-headline {
        font-size: clamp(1.65rem, 6.2vw, 2rem) !important;
    }
}

.pillars-mosaic-section {
    margin-top: -60px;
    margin-bottom: 120px;
}
/* ── MOBILE MENU (HAMBURGER) ── */
.notch-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 38px;
    border: none;
    background: #0b0f19;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.notch-menu-toggle .menu-bar {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.notch-menu-toggle.open .menu-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.notch-menu-toggle.open .menu-bar:nth-child(2) {
    opacity: 0;
}

.notch-menu-toggle.open .menu-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.notch-mobile-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    z-index: 500;
}

.notch-mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0b0f19;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.mobile-menu-link:hover {
    background: #f4f5f8;
    color: var(--brand-orange);
}

.mobile-menu-sub {
    font-size: 0.76rem;
    font-weight: 700;
    padding-left: 26px;
    color: #475569;
}

@media (max-width: 768px) {
    .notch-menu-toggle {
        display: flex;
    }
    .notch-mobile-menu {
        display: block;
    }
}
/* ── MOBILE MENU v2 (GSAP DROPDOWN) ── */
.notch-mobile-menu {
    overflow: hidden;
}

.mm-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
}

.mm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mm-header-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #94a3b8;
    text-transform: uppercase;
}

.mm-header-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #16a34a;
    text-transform: uppercase;
}

.mm-pulse {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: mmPulse 1.6s ease-in-out infinite;
}

@keyframes mmPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.mm-links {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0b0f19;
    transition: background-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.mobile-menu-link::after {
    content: "\2192";
    font-family: var(--font-mono);
    margin-left: auto;
    color: var(--brand-orange);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu-link:hover {
    background: #f4f5f8;
    padding-left: 18px;
}

.mobile-menu-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mm-idx {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #94a3b8;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2px 6px;
    border-radius: 5px;
    flex-shrink: 0;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mobile-menu-link:hover .mm-idx {
    color: #ffffff;
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.mobile-menu-sub {
    font-size: 0.76rem;
    padding-left: 38px;
    color: #475569;
}

.mobile-menu-sub .mm-idx {
    background: rgba(239, 129, 26, 0.08);
    color: var(--brand-orange);
    border-color: rgba(239, 129, 26, 0.25);
}

.mm-footer {
    display: flex;
    gap: 8px;
    padding: 12px 14px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mm-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.mm-cta:active {
    transform: scale(0.96);
}

.mm-cta svg {
    width: 14px;
    height: 14px;
}

.mm-cta-call {
    background: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 129, 26, 0.3);
}

.mm-cta-wa {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}
/* ── MOBILE MENU FIXES (CLIP + FIT) ── */
.notch-mobile-menu {
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu-link {
    padding: 11px 12px;
    white-space: nowrap;
}

.mm-header {
    gap: 10px;
}

.mm-footer {
    padding: 10px 12px 8px;
}
/* ── GLOBAL HIDDEN UTILITY (used by all form feedback blocks) ── */
.hidden {
    display: none !important;
}
/* ── MM-FIXED-OVERLAY: menu lives at body level, taps must work ── */
.notch-mobile-menu {
    position: fixed;
    top: 60px;
    left: 14px;
    right: 14px;
    z-index: 10000;
    transform-origin: top right;
}

@media (min-width: 769px) {
    .notch-mobile-menu {
        display: none;
    }
}/* ══════════════════════════════════════════════════════════════
   MOBILE FOOTER — FINAL (single source of truth for ≤1024px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .architectural-master-footer {
        margin-left: -40px !important;
        margin-right: -40px !important;
        width: calc(100% + 80px) !important;
        max-width: calc(100% + 80px) !important;
        border-radius: 24px 24px 0 0;
        border-left: none;
        border-right: none;
    }

    .footer-inner-wrap {
        padding: 56px 40px 40px;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .architectural-master-footer {
        margin-left: -32px !important;
        margin-right: -32px !important;
        width: calc(100% + 64px) !important;
        max-width: calc(100% + 64px) !important;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
    }

    .footer-inner-wrap {
        padding: 40px 32px 28px;
        gap: 30px;
    }

    .footer-main-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
        gap: 12px;
        padding-bottom: 26px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-brand-tagline {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .footer-contacts-minimal {
        gap: 9px;
    }

    .footer-contact-item {
        font-size: 0.8rem;
    }

    .footer-col {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-acc-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px 0;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-acc-head:focus-visible {
        outline: 1px solid rgba(255, 255, 255, 0.4);
        outline-offset: 3px;
    }

    .footer-acc-chevron {
        flex-shrink: 0;
        color: var(--brand-orange);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-col.is-open .footer-acc-chevron {
        transform: rotate(180deg);
    }

    .footer-acc-body {
        height: 0;
        overflow: hidden;
        transition: height 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-col-heading {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .footer-col .footer-links {
        gap: 11px;
        padding: 2px 0 18px;
    }

    .footer-links a {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .footer-bottom-deck {
        padding-top: 20px;
        justify-content: center;
    }

    .footer-acc-head {
        padding: 13px 0;
    }

    .footer-legal-copy {
        font-size: 0.68rem;
        line-height: 1.6;
        letter-spacing: 0.04em;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .architectural-master-footer {
        margin-left: -26px !important;
        margin-right: -26px !important;
        width: calc(100% + 52px) !important;
        max-width: calc(100% + 52px) !important;
    }

    .footer-inner-wrap {
        padding: 32px 26px 24px;
        gap: 26px;
    }



    .footer-links a {
        font-size: 0.85rem;
    }
}
/* ──────────────────────────────────────────────────────────────
   SCROLL REVEAL — progressive enhancement for [data-reveal]
   Hidden state ONLY applies once JS adds .reveal-ready to <body>,
   so content is never invisible without JavaScript.
   ────────────────────────────────────────────────────────────── */
body.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
}

body.reveal-ready [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
    body.reveal-ready [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── MM TAP FIX ────────────────────────────────────────────────
   The menu is born pointer-events:none and only the (never-used)
   .open class re-enabled taps. The GSAP path toggles aria-hidden
   instead, so taps fell through the open menu onto the page below.
   Re-enable taps for BOTH open mechanisms.
   ────────────────────────────────────────────────────────────── */
.notch-mobile-menu[aria-hidden="false"] {
    pointer-events: auto;
}

/* safety net: anything inside the menu must never be tap-blocked */
.notch-mobile-menu[aria-hidden="false"] .mobile-menu-link,
.notch-mobile-menu[aria-hidden="false"] .mm-cta {
    pointer-events: auto;
}
