/* ============================================================
   STANDARDAISE — MASTER STYLESHEET
   Shared design system for all 5 pages (index, overview,
   consortium, newsfeed, resources). Bootstrap 5 + Plus Jakarta
   Sans + GSAP/Lenis powered glassmorphism aesthetic.
   ============================================================ */

:root {
    --bg-pearl: #fcfcfd;
    --accent-indigo: #3C6CD5;
    --accent-pink: #FD4D1A;
    --accent-blue: #5490FB;
    --accent-coral: #FD7F62;
    --accent-orange: #FB9651;
    --accent-navy: #14244F;
    --text-main: #09090b;
    --glass: rgba(255, 255, 255, 0.82);
    --border: rgba(0, 0, 0, 0.06);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
    --card-hover-shadow: 0 40px 80px rgba(84, 144, 251, 0.12);
    --grid-color: rgba(60, 108, 213, 0.14);
    --text-muted: #52525b;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.65);
    --border-strong: rgba(9, 9, 11, 0.08);
    --gradient-neon: linear-gradient(135deg, var(--accent-indigo), var(--accent-pink), var(--accent-blue));
}

/* ---------- Foundation: preloader, nav, mega-menu, orbs, cards, footer ---------- */


html,
body {
    scroll-behavior: auto !important;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* --- BACKGROUND VIBRANT ORBS AND GRID --- */
body {
    background-color: var(--bg-pearl);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-image:
        linear-gradient(rgba(9, 9, 11, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 9, 11, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-indigo);
    top: 2%;
    left: -15%;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: var(--accent-pink);
    top: 28%;
    right: -20%;
}

.orb-3 {
    width: 650px;
    height: 650px;
    background: var(--accent-blue);
    top: 68%;
    left: -10%;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: var(--accent-indigo);
    bottom: 5%;
    right: -10%;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-pearl);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 10px;
}

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(84, 144, 251, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    will-change: left, top;
    display: none;
}

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #09090b;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.03);
    border-top: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: loader-spin 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 20px;
}

.loader-percentage {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

@keyframes loader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* --- SCROLL PROGRESS --- */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.01);
    z-index: 4000;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-neon);
    background-size: 200% auto;
}

/* --- NAVIGATION --- */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 3000;
    transition: background-color 0.4s, border-color 0.4s;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-strong);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-main);
}

.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
    z-index: 3100;
    padding: 10px;
}

.bar {
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.4s;
}

.bar-1 {
    width: 26px;
}

.bar-2 {
    width: 14px;
}

/* --- REFINED DOT NAVIGATION --- */
.scroll-dot-nav {
    position: fixed;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5500;
    transition: opacity 0.3s;
}

.dot-track {
    width: 10px;
    height: 10px;
    border: 2px solid var(--text-main);
    border-radius: 50%;
    background: rgba(9, 9, 11, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.dot-track:hover,
.dot-track.active {
    transform: scale(1.35);
    border-color: var(--accent-blue) !important;
    background: var(--accent-blue) !important;
    box-shadow: 0 0 14px rgba(84, 144, 251, 0.6);
}

.dot-track::after {
    content: attr(data-label);
    position: absolute;
    right: 26px;
    top: -5px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    white-space: nowrap;
    letter-spacing: 1px;
    background: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid var(--border-strong);
    box-shadow: var(--card-shadow);
}

.dot-track:hover::after {
    opacity: 1;
    visibility: visible;
}

/* --- MEGA MENU --- */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2500;
    padding: 150px 0 60px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--border-strong);
}

.mega-menu.active {
    transform: translateY(0);
}

.menu-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.menu-link:hover {
    color: var(--accent-blue);
    transform: translateX(8px);
}

.menu-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-pink);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

/* --- GIANT WATERMARK TEXTS --- */
.giant-bg-text {
    position: absolute;
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.75;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    text-transform: lowercase;
    will-change: transform;
    mix-blend-mode: multiply;
    filter: opacity(0.04);
}

.txt-idx-indigo {
    color: var(--accent-indigo);
}

.txt-idx-pink {
    color: var(--accent-pink);
}

.txt-idx-blue {
    color: var(--accent-blue);
}

/* --- TYPEWRITER --- */
.typewriter-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typewriter-cursor {
    border-right: 3px solid var(--accent-pink);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-pink);
    }
}

/* --- SECTIONS CORE ARCHITECTURE --- */
section {
    position: relative;
    padding: 160px 0;
    z-index: 5;
    overflow: hidden;
}

.hero-overview {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 120px;
}

.hero-overview h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.15;
    max-width: 90%;
}

h2.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: var(--text-main);
}

p.section-desc {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- PERFECTED HORIZONTAL HERO BADGES WITH VERTICAL CENTERING --- */
.meta-badges-row {
    border: 1px solid var(--glass-border);
    min-height: 80px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-item {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    height: 100%;
}

.meta-item i {
    font-size: 1.3rem;
    color: var(--accent-blue);
    display: inline-block;
    line-height: 1;
}

.cinematic-split-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.cinematic-split-img:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.5s ease;
    height: 100%;
}

.glass-card .card-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-blue);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
    border-color: rgba(84, 144, 251, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.obj-number {
    font-size: 0.75rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

/* --- IMPROVED DARK IMMERSIVE 100% VH/VW MOTTO SCROLL THROUGH STAGE --- */
.motto-cinematic-stage {
    min-height: 100vh;
    width: 100%;
    padding: 0;
    background: #0b0b0d;
    /* Strict Dark Immersive Background Restored */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2000;
    overflow: hidden;
}

.motto-radial-flare {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(84, 144, 251, 0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 1;
}

.motto-glass-panel {
    background: rgba(15, 15, 20, 0.65);
    /* Highly localized dark glass panel */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 140px 0;
    width: 100%;
    text-align: center;
    position: relative;
}

.motto-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.motto-node-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-blue);
    border: 1px solid rgba(84, 144, 251, 0.4);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
}

/* Continuous Scroll Typography System Optimized: GHOST and LIT STATES */
.scroll-reveal-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.4;
    color: transparent;
    /* Elements are transparent initially to avoid flash */
    text-align: center;
}

.scroll-char {
    /* Optimized 'Ghost' state: subtle visible outline for context */
    color: rgba(255, 255, 255, 0.08);
    transition: color 0.08s linear;
    will-change: color;
}

.scroll-char.lit {
    /* Premium 'Lit' state: crisp fill and localized text shadow */
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

/* --- COHESIVE CONTINUOUS STACKING ARCHITECTURE FOR INNOVATION TRACK --- */
#innovation {
    position: relative;
    z-index: 2100;
    /* Placed immediately higher than the pinned motto section */
    background: var(--bg-pearl);
    box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.15);
    /* Substantial shadow defines the sliding layer */
    border-top: 1px solid var(--glass-border);
    padding-top: 180px;
    padding-bottom: 180px;
}

/* --- INDUSTRIAL CALL-OUTS --- */
.industrial-callout {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    border-left: 3px solid var(--text-main);
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin: 35px 0;
}

/* --- TERMINAL FAQ CORE --- */
.terminal-faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-terminal-row {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-terminal-trigger {
    width: 100%;
    padding: 28px 35px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    cursor: pointer;
}

.faq-terminal-trigger .quest-txt {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-terminal-trigger .quest-txt i {
    color: var(--accent-blue);
}

.faq-state-indicator {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
}

.faq-terminal-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-terminal-content {
    padding: 0px 35px 32px 65px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-terminal-row.is-active {
    border-color: var(--text-main);
    background: #fff;
    box-shadow: var(--card-hover-shadow);
}

.faq-terminal-row.is-active .faq-state-indicator {
    color: var(--accent-pink);
}

/* --- BUTTONS & ACCENTS --- */
.btn-mega-cta {
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 4px solid var(--text-main);
    padding-bottom: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -1px;
}

.btn-mega-cta:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateX(8px);
}

.btn-outline-dark-custom {
    border: 1px solid var(--text-main);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    background: transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-dark-custom:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-2px);
}

.inline-cta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s, color 0.3s;
}

.inline-cta:hover {
    color: var(--accent-blue);
    gap: 10px;
}

/* --- TEAM --- */
.team-box {
    text-align: center;
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.team-box:hover .team-avatar {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.team-initials {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.grad-indigo {
    background: linear-gradient(135deg, var(--accent-indigo), #14244F);
}

.grad-pink {
    background: linear-gradient(135deg, var(--accent-pink), #B83A13);
}

.grad-blue {
    background: linear-gradient(135deg, var(--accent-blue), #3C6CD5);
}

.grad-dark {
    background: linear-gradient(135deg, #27272a, #09090b);
}

/* --- FOOTER --- */
.index-footer {
    background: #fff;
    color: var(--text-main);
    padding: 120px 0 50px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--text-main);
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FD4D1A;
    margin-bottom: 25px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 80px;
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Home page: hero, hub-grid diamond, marquee, video ---------- */


/* FORCE SCROLL TO TOP ON REFRESH INITIAL STATE */
html,
body {
    scroll-behavior: auto !important;
}

/* --- HIGH-END SCROLLBAR OVERRIDE --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-pearl);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-indigo), var(--accent-blue));
    border-radius: 10px;
    border: 2px solid var(--bg-pearl);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-pink), var(--accent-indigo));
}

/* --- IMMERSIVE BACKGROUND MOUSE GLOW --- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 108, 213, 0.12) 0%, rgba(84, 144, 251, 0.03) 45%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    will-change: left, top;
    display: none;
}

/* --- ASYNC RESOURCE PRELOADER ENGINE --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0c;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-center {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.02);
    border-top: 2px solid var(--accent-indigo);
    border-radius: 50%;
    animation: loader-spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 25px;
}

.loader-percentage {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
        border-top-color: var(--accent-indigo);
    }

    50% {
        border-top-color: var(--accent-pink);
    }

    100% {
        transform: rotate(360deg);
        border-top-color: var(--accent-blue);
    }
}

/* --- SCROLL POSITION PROGRESS BAR --- */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.01);
    z-index: 4000;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-pink), var(--accent-blue));
    background-size: 200% auto;
    animation: progress-gradient-shift 4s ease infinite;
}

@keyframes progress-gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Smooth Scroll Configuration */
html.lenis {
    height: auto;
}

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

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

body {
    background-color: var(--bg-pearl);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

main,
footer {
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

body.menu-open main,
body.menu-open footer {
    filter: blur(12px);
    opacity: 0.35;
    pointer-events: none;
    will-change: filter, opacity;
}

/* --- GLOBAL NAVIGATION SCENE --- */
.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 3000;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.navbar-custom.scrolled {
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -1px;
    overflow: visible;
    line-height: 0;
}

.menu-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    z-index: 3100;
    padding: 10px;
    margin-right: -10px;
}

.bar {
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s ease, background-color 0.3s ease;
}

.bar-1 {
    width: 30px;
}

.bar-2 {
    width: 18px;
}

.menu-btn:hover .bar-1 {
    background-color: var(--accent-indigo);
}

.menu-btn:hover .bar-2 {
    background-color: var(--accent-pink);
    width: 30px;
}

/* --- MEGA NAVIGATION DRAWER --- */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 2500;
    padding: 150px 0 60px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border);
    will-change: transform;
}

.mega-menu.active {
    transform: translateY(0);
}

.menu-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-link:hover {
    color: var(--accent-indigo);
    transform: translateX(12px);
}

.menu-category {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent-indigo);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.menu-social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    margin-right: 35px;
    transition: color 0.3s, transform 0.3s;
}

.menu-social-link:hover {
    color: var(--accent-indigo);
    transform: translateY(-3px);
}

.menu-social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* --- CYBERNETIC GRID OVERLAY --- */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background-size: 55px 55px;
    background-image:
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.4) 93%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.4) 93%, rgba(0, 0, 0, 0) 100%);
}

/* --- HERO VIEWPORT BLOCK --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-text-wrapper {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.2;
}

#typewriter {
    display: inline-block;
    background: linear-gradient(358deg, var(--accent-coral), var(--accent-orange), var(--accent-blue), var(--accent-indigo));

    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-loop 6s linear infinite;
}

.typewriter-word {
    position: relative;
    border-right: 3px solid var(--accent-indigo);
    white-space: nowrap;
    padding-right: 6px;
    animation: blinking-caret 0.8s step-end infinite;
}

@keyframes blinking-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--accent-indigo);
    }
}

/* --- EXPLORE SCROLL INDICATOR ENGINE --- */
.scroll-explore-indicator {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    opacity: 0;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
    animation: scroll-bounce 2.2s ease-in-out infinite;
}

.scroll-explore-indicator:hover {
    color: var(--accent-indigo);
}

.scroll-explore-indicator span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll-wheel-drop 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes mouse-scroll-wheel-drop {
    0% {
        top: 6px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        top: 20px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 0;
    }
}

/* --- CINEMATIC VIDEO ARCHIVE BLOCK --- */
.video-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.1);
    transform: scale(0.94);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container.activated {
    transform: scale(1);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BRANDING PARTNERS MARQUEE TRACK --- */
.partners-section {
    padding: 80px 0 90px 0;
    background: transparent;
    width: 100%;
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background: linear-gradient(90deg, var(--text-main), var(--accent-indigo), var(--text-main));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-loop 4s linear infinite;
    margin-bottom: 50px;
}

.marquee-container-limited {
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 110px;
    padding-right: 110px;
    flex-shrink: 0;
    animation: marquee-run 26s linear infinite;
}

.partner-logo-box {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.partner-logo-box img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(130%);
    opacity: 0.45;
    transition: all 0.4s ease;
}

.partner-logo-box:hover {
    transform: scale(1.15);
    z-index: 3;
}

.partner-logo-box:hover img {
    filter: grayscale(0%) contrast(100%);
    opacity: 1;
}

@keyframes marquee-run {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-text-track {
    gap: 70px;
}

.partner-text-box {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    opacity: 0.4;
    filter: grayscale(100%);
    white-space: nowrap;
    transition: all 0.4s ease;
    cursor: default;
}

.partner-text-box:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--accent-indigo);
    transform: scale(1.06);
}

/* --- STRUCTURAL HUB MATRIX LAYER --- */
.hub-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.hub-section-heading h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.hub-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.hub-card-image-box {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.hub-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-card-icon-block {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: -1px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.grad-indigo {
    background: linear-gradient(135deg, var(--accent-indigo), #14244F);
}

.grad-pink {
    background: linear-gradient(135deg, var(--accent-pink), #B83A13);
}

.grad-blue {
    background: linear-gradient(135deg, var(--accent-blue), #3C6CD5);
}

.hub-card-body {
    padding: 32px;
}

.hub-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(60, 108, 213, 0.35);
    box-shadow: var(--card-hover-shadow);
}

.hub-card:hover .hub-card-image {
    transform: scale(1.06);
}

.hub-card:hover .hub-card-icon-block {
    transform: scale(1.05);
}

.hub-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.badge-indigo {
    background: rgba(60, 108, 213, 0.08);
    color: var(--accent-indigo);
}

.badge-pink {
    background: rgba(253, 77, 26, 0.08);
    color: var(--accent-pink);
}

.badge-blue {
    background: rgba(84, 144, 251, 0.08);
    color: var(--accent-blue);
}

.hub-center {
    background: linear-gradient(135deg, var(--accent-indigo), #14244F);
    aspect-ratio: 1/1;
    border-radius: 44px;
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 25px 60px rgba(60, 108, 213, 0.35);
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.hub-center:hover {
    transform: rotate(50deg) scale(1.06);
    box-shadow: 0 35px 75px rgba(60, 108, 213, 0.5);
}

.hub-center-content {
    transform: rotate(-45deg);
    text-align: center;
}

@media (max-width: 991px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hub-center {
        order: -1;
        max-width: 180px;
        transform: rotate(45deg);
    }

    .hub-center:hover {
        transform: rotate(45deg);
    }
}

/* --- PARALLAX TEXTURE SECTION --- */
/* --- ENTERPRISE MEGA FOOTER --- */
.mega-footer {
    background: #fff;
    padding: 130px 5% 60px;
    border-top: 1px solid var(--border);
}

.footer-social-tray {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0a0a0c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--accent-indigo);
    transform: scale(1.1) translateY(-2px);
    color: #fff;
}

.footer-social-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.btn-main {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main:hover {
    transform: scale(1.04);
    background: var(--accent-indigo);
    box-shadow: 0 15px 30px rgba(60, 108, 213, 0.2);
}

.footer-link-inline {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-inline:hover {
    color: var(--accent-indigo);
}


/* ---------- Motto parallax band (used by index + consortium) ---------- */

/* --- MOTTO PARALLAX BAND (lighter variant, borrowed from index.html) --- */
.motto-section {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5% 140px;
    border-radius: 44px;
}

.motto-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    z-index: -1;
    transform: translateY(-12%);
}

.motto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.8));
}

.motto-content {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.motto-content h2 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1.15;
}

.motto-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
}

/* --- PARTNER CARDS / LOGO TILES --- */
.partner-logo-tile {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: 12px;
    margin-bottom: 24px;
}

.partner-logo-tile img {
    width: 250px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-role-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 8px;
}

.partner-country-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.partner-website-cta {
    margin-top: 16px;
}

/* --- TEAM / PARTNER AVATAR LOGO (overview.html preview grid) --- */
.team-avatar-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    padding: 14px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.team-box:hover .team-avatar-logo {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.team-avatar-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ---------- Harmonization utility classes (replace one-off inline styles) ---------- */


.z-index-5 {
    z-index: 5;
}

.max-w-620 {
    max-width: 620px;
}

.fs-070 {
    font-size: 0.7rem;
}

.fs-075 {
    font-size: 0.75rem;
}

.motto-embed-wrap {
    padding-top: 0;
    padding-bottom: 80px;
}

.feat-title-lg {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.news-tag-pill-inline {
    position: static;
    display: inline-flex;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-pink));
}

.label-accent-blue {
    color: var(--accent-blue);
    letter-spacing: 1px;
}

.btn-mega-cta-light {
    background: #fff;
    color: #0a0a0c;
}

#featured {
    padding-top: 40px;
}

/* Giant background watermark positions (per-section, replaces inline top/left/right/bottom) */
.gbt-tl {
    top: 10%;
    left: -2%;
}

.gbt-tr {
    top: 10%;
    right: -2%;
}

.gbt-tl-tight {
    top: 5%;
    left: 2%;
}

.gbt-tr-tight {
    top: 5%;
    right: -2%;
}

.gbt-tr-about {
    top: 20%;
    right: -2%;
}

.gbt-tr-innovation {
    top: 15%;
    right: -2%;
}

.gbt-tl-resources {
    top: 8%;
    left: -2%;
}

.gbt-br-resources {
    bottom: 5%;
    right: -2%;
}

.gbt-bl {
    bottom: 5%;
    left: -2%;
}

.gbt-tl-roles {
    top: 10%;
    left: 2%;
}

/* --- ROLES TABLE --- */
.roles-table-wrap {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.roles-table {
    width: 100%;
    border-collapse: collapse;
}

.roles-table th {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 20px 28px;
    border-bottom: 1px solid var(--glass-border);
}

.roles-table td {
    padding: 20px 28px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.92rem;
}

.roles-table tr:last-child td {
    border-bottom: none;
}

.roles-table tr:hover td {
    background: rgba(84, 144, 251, 0.04);
}

/* ---------- Newsfeed: news cards, featured story, newsletter band ---------- */

/* --- NEWS CARDS --- */
.news-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.news-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-thumb img {
    transform: scale(1.07);
}

.news-tag-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(9, 9, 11, 0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
}

.news-card-body {
    padding: 28px;
}

.news-meta-line {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-blue);
    margin-bottom: 10px;
    display: block;
}

.news-card-body h4 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-main);
}

.news-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- FEATURED STORY --- */
.featured-story {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.featured-story .feat-img-wrap {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.featured-story .feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-story .feat-body {
    padding: 50px;
}

@media (max-width: 991px) {
    .featured-story .feat-body {
        padding: 36px;
    }
}

/* --- NEWSLETTER BAND --- */
.newsletter-band {
    background: linear-gradient(145deg, #0a0a0c, #18181b);
    border-radius: 32px;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.newsletter-band p {
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto 34px;
}

/* ---------- Resources: coming-soon stage ---------- */

/* --- COMING SOON STAGE --- */
.coming-soon-stage {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cs-ring-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 46px;
    position: relative;
}

.cs-ring-wrap::before,
.cs-ring-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    animation: cs-pulse 3.5s ease-out infinite;
}

.cs-ring-wrap::before {
    inset: -24px;
}

.cs-ring-wrap::after {
    inset: -48px;
    animation-delay: 1s;
}

@keyframes cs-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.cs-ring-wrap img {
    width: 58px;
    height: auto;
    position: relative;
    z-index: 2;
}

.coming-soon-stage h1 {
    margin-bottom: 0;
}

.cs-badge-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ============================================================
   STANDARDAISE — PREMIUM LAYOUT OVERHAUL & VISUAL FIXES
   ============================================================ */

/* --- COMPACT EDITORIAL BREATHING ROOM --- */
/* Balanced padding footprint between page structural blocks to keep layout cohesive */
main section {
    padding: 110px 0 !important;
    position: relative;
    clear: both;
}

/* --- PROMINENT LOGO & NAVBAR SETUP --- */
.navbar-custom {
    height: 95px !important;
    /* Expanded slightly to house the enlarged branding layout safely */
}

.navbar-custom .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Explicitly overrides layout structures to prevent cropping or text shrinking */
.nav-logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    max-height: 90px !important;
    text-decoration: none;
    overflow: visible !important;
}

/* Your optimized logo scale configuration */
.nav-logo-img {
    display: block;
    height: 70px;
    /* Increased scale size to bring out high-visibility structural text details */
    width: auto;
    max-height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: none;
    transform: none;
}

/* --- HERO TRANSPARENT AMBIENT SYSTEM --- */
.hero-premium-ambient {
    min-height: 100vh;
    padding: 180px 0 110px 0 !important;
    /* Calibrated tracking to align below the navbar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    /* Seamlessly displays fixed blur background orbs */
}

.hero-premium-ambient .gbt-tl {
    top: 14%;
    left: -3%;
    z-index: 1;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 5;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-pink);
}

.hero-title-premium {
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.1;
    color: var(--text-main);
    position: relative;
    z-index: 5;
}

.hero-desc-premium {
    max-width: 780px;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 5;
}

.btn-main-premium {
    background: var(--text-main);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 5;
}

.btn-main-premium:hover {
    background: var(--accent-indigo);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(60, 108, 213, 0.25);
    color: #fff;
}

.btn-secondary-premium {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-strong);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 5;
}

.btn-secondary-premium:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

/* Micro-Stats */
.hero-mini-track {
    position: relative;
    z-index: 5;
    margin-top: 80px !important;
}

.hero-mini-track .mini-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: monospace;
}

.hero-mini-track .mini-stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 6px;
}

/* --- THE DYNAMIC BENTO GRID SHOWCASE --- */
.bento-grid-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-gap: 32px;
    max-width: 1240px;
    margin: 40px auto 0 auto;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

/* High-specificity override rule block protecting pink accent card from default white background rules */
.bento-item.grad-pink {
    background: linear-gradient(135deg, var(--accent-pink), #B83A13) !important;
}

.bento-item.grad-pink h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.bento-item.grad-pink span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.bento-item.grad-pink a {
    color: #ffffff !important;
    transition: opacity 0.2s ease;
}

.bento-item.grad-pink a:hover {
    opacity: 0.85;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-lg {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 16/11;
}

.item-accent {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-text {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-sm {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    height: 250px;
}

.bento-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.bento-gradient-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 36, 79, 0.9) 0%, rgba(20, 36, 79, 0.3) 100%);
    z-index: 1;
}

@media (max-width: 991px) {
    .bento-grid-showcase {
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }

    .item-lg,
    .item-accent,
    .item-text,
    .item-sm {
        grid-column: unset;
        grid-row: unset;
        aspect-ratio: unset;
        height: auto;
    }

    .item-lg,
    .item-sm {
        height: 320px;
    }
}

/* --- THE DYNAMIC BIG TEXT BTA CTAs --- */
.btn-mega-cta {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 3px solid var(--text-main);
    padding-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.btn-mega-cta:hover {
    color: var(--accent-indigo);
    border-color: var(--accent-indigo);
    transform: translateX(6px);
}

/* --- PARTNER AND PILLARS ADJUSTMENTS --- */
.partners-section {
    padding: 100px 0 110px 0 !important;
}

.section-title-premium {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.premium-pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(60, 108, 213, 0.25);
    box-shadow: var(--card-hover-shadow);
}

.pillar-visual-top {
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -1px;
}

.pillar-content {
    padding: 32px;
}

.motto-section {
    margin: 110px 5% 110px !important;
}

.euandlogo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-img-footer {
    display: block;
}

/* ============================================================
   OVERVIEW PAGE REFINEMENTS
   Tighter opening rhythm and restrained brand-colour headings.
   ============================================================ */

/* Reduce the excessive visual gap between the overview hero and About. */
body:has(#about) .hero-overview {
    min-height: 78vh;
    padding-top: 145px;
    padding-bottom: 64px;
}

body:has(#about) #about {
    padding-top: 88px;
}

/* Colour is applied as a clean accent underline rather than colouring
   the whole title, preserving readability and the premium aesthetic. */
.section-title-accent {
    position: relative;
    display: inline;
    background-repeat: no-repeat;
    background-position: 0 92%;
    background-size: 100% 0.18em;
    padding-bottom: 0.04em;
}

.section-title-accent.accent-indigo {
    background-image: linear-gradient(90deg, rgba(60, 108, 213, 0.34), rgba(60, 108, 213, 0.08));
}

.section-title-accent.accent-coral {
    background-image: linear-gradient(90deg, rgba(253, 77, 26, 0.34), rgba(253, 127, 98, 0.08));
}

.section-title-accent.accent-blue {
    background-image: linear-gradient(90deg, rgba(84, 144, 251, 0.34), rgba(84, 144, 251, 0.08));
}

.section-title-accent.accent-pink {
    background-image: linear-gradient(90deg, rgba(253, 77, 26, 0.30), rgba(251, 150, 81, 0.08));
}

@media (max-width: 991.98px) {
    body:has(#about) .hero-overview {
        min-height: auto;
        padding-top: 145px;
        padding-bottom: 54px;
    }

    body:has(#about) #about {
        padding-top: 72px;
    }
}

@media (max-width: 575.98px) {
    body:has(#about) .hero-overview {
        padding-top: 125px;
        padding-bottom: 42px;
    }

    body:has(#about) #about {
        padding-top: 58px;
    }
}


/* ============================================================
   HOMEPAGE ROUTES, LINKED NEWS CARDS & OVERVIEW RHYTHM
   ============================================================ */
.home-route-section {
    padding: 28px 0 56px !important;
    overflow: visible;
}

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

.home-route-card {
    min-height: 150px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, .64);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    box-shadow: var(--card-shadow);
    transition: .35s cubic-bezier(.16, 1, .3, 1);
}

.home-route-card>span {
    font: 800 .72rem monospace;
    color: var(--accent-indigo);
}

.home-route-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.home-route-card small {
    display: block;
    color: var(--text-muted);
    line-height: 1.55;
}

.home-route-card>i {
    color: var(--accent-pink);
    transition: transform .3s ease;
}

.home-route-card:hover {
    color: var(--text-main);
    transform: translateY(-6px);
    border-color: rgba(60, 108, 213, .28);
    box-shadow: var(--card-hover-shadow);
}

.home-route-card:hover>i {
    transform: translate(3px, -3px);
}

.bento-link-card {
    text-decoration: none;
    color: inherit;
}

.bento-link-card:hover {
    color: inherit;
}

.bento-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent-indigo);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-link:hover {
    color: inherit;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent-indigo);
}

/* Overview: more compact vertical rhythm throughout the page. */
.overview-page section:not(#motto):not(#hero) {
    padding-top: 110px;
    padding-bottom: 110px;
}

.overview-page #hero.hero-overview {
    min-height: 70vh;
    padding-top: 135px;
    padding-bottom: 44px;
}

.overview-page #about {
    padding-top: 68px;
}

.overview-page #innovation {
    padding-top: 120px;
    padding-bottom: 120px;
}

.overview-page .motto-cinematic-stage {
    background-color: #14244f;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px), radial-gradient(circle at center, rgba(84, 144, 251, .20), transparent 62%);
    background-size: 54px 54px, 54px 54px, 100% 100%;
}

.overview-page .motto-cinematic-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, #14244f 0%, transparent 20%, transparent 80%, #14244f 100%);
    z-index: 0;
}

.overview-page .motto-radial-flare {
    opacity: .5;
    z-index: 1;
}

.overview-page .motto-glass-panel {
    background: rgba(20, 36, 79, .42);
    padding: 110px 0;
    z-index: 2;
}

.overview-page .scroll-char.lit {
    text-shadow: none;
}

@media(max-width:991.98px) {
    .home-route-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .overview-page section:not(#motto):not(#hero) {
        padding-top: 86px;
        padding-bottom: 86px
    }

    .overview-page #hero.hero-overview {
        min-height: auto;
        padding-top: 135px;
        padding-bottom: 38px
    }

    .overview-page #about {
        padding-top: 58px
    }
}

@media(max-width:575.98px) {
    .home-route-grid {
        grid-template-columns: 1fr
    }

    .home-route-section {
        padding: 10px 0 42px !important
    }

    .overview-page section:not(#motto):not(#hero) {
        padding-top: 68px;
        padding-bottom: 68px
    }

    .overview-page #hero.hero-overview {
        padding-top: 118px;
        padding-bottom: 30px
    }

    .overview-page #about {
        padding-top: 46px
    }

    .overview-page .motto-glass-panel {
        padding: 84px 0
    }
}

.article-back-link {
    margin-left: auto;
    color: var(--text-main);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    gap: 8px;
    align-items: center
}

.news-article {
    padding: 170px 0 110px
}

.news-article-eyebrow {
    display: block;
    color: var(--accent-pink);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px
}

.news-article h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 800;
    max-width: 1050px
}

.news-article-lead {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 860px;
    margin: 30px 0 50px
}

.news-article-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 55px;
    background: #fff
}

.news-article-visual img {
    width: 100%;
    max-height: 620px;
    object-fit: cover
}

.news-article-body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #34343b
}

.news-article-body p {
    margin-bottom: 26px
}

.news-source-box {
    margin-top: 55px;
    padding: 26px 28px;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: rgba(255, 255, 255, .65);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.news-source-box strong,
.news-source-box span {
    display: block
}

.news-source-box span {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 5px
}

.news-source-box a {
    white-space: nowrap;
    color: #fff;
    background: var(--accent-navy);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em
}

@media(max-width:767px) {
    .news-article {
        padding: 140px 0 80px
    }

    .news-source-box {
        align-items: flex-start;
        flex-direction: column
    }

    .news-source-box a {
        white-space: normal
    }
}


/* ============================================================
   FINAL NAVIGATION, ARTICLE LEGIBILITY & COMPACT OVERVIEW
   ============================================================ */
.scroll-dot-nav {
    display: none !important;
}

/* The overview no longer includes the Academy and final contact blocks. */
.overview-page section:not(#motto):not(#hero) {
    padding-top: 88px;
    padding-bottom: 88px;
}

.overview-page #hero.hero-overview {
    min-height: 82vh;
    padding-top: 128px;
    padding-bottom: 30px;
}

.overview-page #about {
    padding-top: 52px;
}

.overview-page #innovation {
    padding-top: 96px;
    padding-bottom: 96px;
}

.overview-page .motto-glass-panel {
    padding: 92px 0;
}


@media (max-width: 991.98px) {
    .overview-page section:not(#motto):not(#hero) {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .overview-page #hero.hero-overview {
        min-height: auto;
        padding-top: 128px;
        padding-bottom: 26px;
    }

    .overview-page #about {
        padding-top: 44px;
    }
}

@media (max-width: 575.98px) {
    .overview-page section:not(#motto):not(#hero) {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .overview-page #hero.hero-overview {
        padding-top: 112px;
        padding-bottom: 22px;
    }

    .overview-page #about {
        padding-top: 36px;
    }

    .overview-page .motto-glass-panel {
        padding: 72px 0;
    }
}


/* ============================================================
   FINAL CONTENT-SAFE REFINEMENTS
   ============================================================ */

/* Keep natural reveal behaviour; no forced opacity overrides on Overview content. */
.overview-page #about,
.overview-page #objectives,
.overview-page #innovation,
.overview-page #impact,
.overview-page #faq {
    opacity: initial;
}

/* Minimal Resources coming-soon layout. */
.resources-minimal-section {
    min-height: 78vh;
    padding-top: 150px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
}

.resources-minimal-stage {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.resources-minimal-stage h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.resources-minimal-stage .section-desc {
    color: var(--text-muted);
}

/* Bring the Newsfeed cards closer to the hero without changing other pages. */
.newsfeed-page .hero-overview {
    min-height: 82vh;
    padding-top: 145px;
    padding-bottom: 28px;
}

.newsfeed-page .newsfeed-grid-compact {
    padding-top: 46px;
    padding-bottom: 110px;
}

@media (max-width: 991.98px) {
    .resources-minimal-section {
        min-height: 70vh;
        padding-top: 130px;
        padding-bottom: 72px;
    }

    .newsfeed-page .hero-overview {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 20px;
    }

    .newsfeed-page .newsfeed-grid-compact {
        padding-top: 36px;
        padding-bottom: 84px;
    }
}

@media (max-width: 575.98px) {
    .resources-minimal-section {
        min-height: 68vh;
        padding-top: 116px;
        padding-bottom: 58px;
    }

    .newsfeed-page .hero-overview {
        padding-top: 116px;
        padding-bottom: 16px;
    }

    .newsfeed-page .newsfeed-grid-compact {
        padding-top: 28px;
        padding-bottom: 68px;
    }
}


/* ============================================================
   TARGETED ABOUT, CONSORTIUM CTA & GLOBAL FOOTER REFINEMENTS
   ============================================================ */

/* About content must remain fully solid and immediately readable. */
.overview-page #about,
.overview-page #about .container,
.overview-page #about .row,
.overview-page #about [class*="col-"],
.overview-page #about h2,
.overview-page #about p,
.overview-page #about span,
.overview-page #about .industrial-callout,
.overview-page #about .cinematic-split-img {
    opacity: 1 !important;
    visibility: visible !important;
}

.overview-page #about [style*="opacity"] {
    opacity: 1 !important;
}

.overview-page #about .cinematic-split-img {
    width: 100%;
    height: clamp(440px, 46vw, 640px);
    min-height: 440px;
    object-fit: cover;
    object-position: center;
    filter: none !important;
    transform: none;
}

/* Make the consortium route read as a deliberate CTA. */
.overview-page #team .inline-cta {
    margin-left: 0px;
    padding: 10px 17px;
    border-radius: 999px;
    background: var(--accent-navy);
    border: 1px solid var(--accent-navy);
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 36, 79, 0.16);
    white-space: nowrap;
    margin-top: 20px;
}

.overview-page #team .inline-cta:hover {
    color: #fff;
    background: var(--accent-indigo);
    border-color: var(--accent-indigo);
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(60, 108, 213, 0.22);
}

/* Shared Index footer interactions across every page. */
.index-footer .footer-link {
    position: relative;
    transition: color .25s ease, transform .25s ease;
}

.index-footer a.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--accent-indigo);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.index-footer a.footer-link:hover {
    color: var(--accent-indigo);
    transform: translateX(4px);
}

.index-footer a.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.index-footer .footer-social-icon {
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.index-footer .footer-social-icon:hover {
    color: #fff;
    background: var(--accent-navy);
    border-color: var(--accent-navy);
    transform: translateY(-4px);
}

@media (max-width: 991.98px) {
    .overview-page #about .cinematic-split-img {
        height: 480px;
        min-height: 480px;
    }

    .overview-page #team .inline-cta {
        margin-left: 0;
        margin-top: 14px;
    }
}

@media (max-width: 575.98px) {
    .overview-page #about .cinematic-split-img {
        height: 360px;
        min-height: 360px;
    }
}

/* ============================================================
   FINAL GLOBAL VISIBILITY OVERRIDE
   Removes all content opacity/fade reveal behaviour site-wide.
   The preloader and navigation overlay remain functional.
   ============================================================ */

/* Disable GSAP/CSS entrance fades and movement on every page. */
.reveal,
.reveal-fast,
.reveal-slow,
.sandbox-reveal-element,
.scroll-explore-indicator,
.news-article .reveal,
.newsfeed-page .reveal,
.overview-page .reveal,
.resources-page .reveal,
.consortium-page .reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
}

/* Neutralise inline opacity values added by GSAP to page content. */
main [style*="opacity"],
footer [style*="opacity"] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Keep all article content immediately and fully readable. */
.news-article,
.news-article-eyebrow,
.news-article h1,
.news-article-lead,
.news-article-visual,
.news-article-body,
.news-article-body p,
.news-source-box {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
}

/* Remove the character-by-character faded motto treatment. */
.scroll-reveal-text,
.scroll-char,
.scroll-char.lit {
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    text-shadow: none !important;
    transition: none !important;
    animation: none !important;
}

/* Partner marks and labels should never appear faded. */
.partner-logo-box img,
.partner-text-box {
    opacity: 1 !important;
}

/* ============================================================
   NEWS ARTICLE CTA & TITLE REFINEMENTS
   ============================================================ */

/* Keep article headlines impactful without overwhelming the page. */
.news-article h1 {
    font-size: clamp(2.25rem, 4.7vw, 4.15rem);
    line-height: 1.08;
    max-width: 920px;
}

/* Strong, standalone route back to the main newsfeed. */
.newsfeed-return-cta {
    margin: 42px 0 0;
}

.newsfeed-return-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid var(--accent-navy);
    border-radius: 999px;
    background: transparent;
    color: var(--accent-navy);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color .3s ease, background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.newsfeed-return-cta a i {
    transition: transform .3s ease;
}

.newsfeed-return-cta a:hover {
    color: #fff;
    background: var(--accent-navy);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(20, 36, 79, 0.18);
}

.newsfeed-return-cta a:hover i {
    transform: translateX(4px);
}

/* Refine the source panel and add a clear LinkedIn CTA hover. */
.news-source-box {
    margin-top: 30px;
    background: #fff;
    border-color: rgba(20, 36, 79, 0.12);
    box-shadow: 0 18px 45px rgba(20, 36, 79, 0.06);
}

.news-source-box a {
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease, color .3s ease;
}

.news-source-box a i {
    transition: transform .3s ease;
}

.news-source-box a:hover {
    color: #fff;
    background: var(--accent-indigo);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(60, 108, 213, 0.24);
}

.news-source-box a:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 767.98px) {
    .news-article h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .newsfeed-return-cta a {
        width: 100%;
        justify-content: center;
    }

    .news-source-box a {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   SAFE NEWS ARTICLE CTA & TITLE REFINEMENTS
   Scoped to individual news articles only.
   ============================================================ */

.news-article h1 {
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

/* Browse all project news */
.news-article .article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-left: 0;
    padding: 11px 18px;
    border: 1px solid var(--accent-navy);
    border-radius: 999px;
    background: transparent;
    color: var(--accent-navy);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.news-article .article-back-link:hover {
    background: var(--accent-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(20, 36, 79, 0.18);
}

/* Original project update panel */
.news-article .news-source-box {
    background: #fff;
    border-color: rgba(20, 36, 79, 0.12);
    box-shadow: 0 18px 45px rgba(20, 36, 79, 0.06);
}

.news-article .news-source-box a {
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.news-article .news-source-box a:hover {
    background: var(--accent-indigo);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(60, 108, 213, 0.24);
}

@media (max-width: 767.98px) {
    .news-article h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .news-article .article-back-link {
        padding: 10px 15px;
        font-size: 0.7rem;
    }
}