
/* ══════════════════════════════════════════════════════════
   CYCIS — LAUNCH WEBSITE
   Caribbean Chartered Institute of Cyber & Information Security
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette — established CyCIS identity */
    --cyan: #00D4FF;
    --cyan-dk: #009EC0;
    --cyan-dp: #0079A0;
    --gold: #FFB800;
    --gold-dk: #D89A00;
    --navy: #020B1F;
    --navy-2: #030D22;
    --navy-3: #041530;
    --navy-4: #061B3A;
    --white: #FFFFFF;
    --soft: rgba(255,255,255,0.82);
    --muted: rgba(255,255,255,0.58);
    --faint: rgba(255,255,255,0.32);
    --ghost: rgba(255,255,255,0.12);
    --bord-c: rgba(0,212,255,0.14);
    --bord-g: rgba(255,184,0,0.14);
    --fs: 'Cormorant Garamond', Georgia, serif;
    --fc: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --fb: 'Barlow', system-ui, sans-serif;
    --max: 1180px;
    --pad: 72px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fb);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--cyan), var(--cyan-dp));
    border-radius: 3px;
}

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

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

/* ── Layout helpers ── */
.inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ── Geometric Caribbean texture ── */
.geo-bg {
    background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px), repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px), repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px);
}

/* ── Eyebrow label ── */
.eyebrow {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

    .eyebrow.c {
        color: rgba(0,212,255,0.7);
    }

        .eyebrow.c::before, .eyebrow.c::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(0,212,255,0.16);
        }

    .eyebrow.g {
        color: rgba(255,184,0,0.72);
    }

        .eyebrow.g::before, .eyebrow.g::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255,184,0,0.16);
        }

    .eyebrow.center {
        justify-content: center;
    }

        .eyebrow.center::before, .eyebrow.center::after {
            max-width: 78px;
        }

.section-hl {
    font-family: var(--fs);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

    .section-hl em {
        font-style: italic;
        color: var(--cyan);
        font-weight: 600;
    }

    .section-hl .g {
        color: var(--gold);
        font-style: normal;
    }

.section-sub {
    font-family: var(--fs);
    font-size: 19px;
    line-height: 1.65;
    color: var(--soft);
    font-weight: 400;
    font-style: italic;
}

/* ── Decorative gem divider ── */
.gem-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.gline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.gem {
    width: 9px;
    height: 9px;
    background: var(--cyan);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0,212,255,.55);
}

/* ── Accent bars ── */
.bar-top {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--cyan) 50%, var(--gold) 100%);
}

.bar-bot {
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), #006BAA 33%, var(--gold) 66%, var(--cyan));
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

.d6 {
    transition-delay: .6s;
}


/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.top-line {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--cyan) 50%, var(--gold));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

nav {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(2,11,31,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,212,255,0.10);
    transition: background .3s var(--ease), border-color .3s var(--ease);
}

    nav.scrolled {
        background: rgba(2,11,31,0.98);
        border-bottom-color: rgba(0,212,255,0.18);
    }

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-mark svg {
        width: 100%;
        height: 100%;
    }

.logo-txt-1 {
    font-family: var(--fc);
    font-size: 22px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 3.5px;
    line-height: 1;
}

.logo-txt-2 {
    font-family: var(--fb);
    font-size: 8px;
    letter-spacing: 2.2px;
    color: rgba(255,255,255,.34);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        font-family: var(--fc);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.9px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.58);
        position: relative;
        transition: color .25s var(--ease);
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--cyan);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .25s var(--ease);
        }

        .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }

.nav-cta {
    font-family: var(--fc);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--cyan);
    color: var(--navy);
    transition: background .2s, transform .15s, box-shadow .2s;
}

    .nav-cta:hover {
        background: #00EEFF;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,212,255,.3);
    }


/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px var(--pad) 0;
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(0,212,255,0.025) 39px), repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(0,212,255,0.025) 39px), repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(0,212,255,0.025) 39px);
        pointer-events: none;
    }

    #hero::after {
        content: '';
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 950px;
        height: 950px;
        background: radial-gradient(ellipse at center, rgba(0,212,255,0.075) 0%, transparent 65%);
        pointer-events: none;
    }

/* Decorative corner arcs */
.arc {
    position: absolute;
    pointer-events: none;
}

.atl {
    top: 0;
    left: 0;
    width: 460px;
    height: 460px;
    border-right: 1px solid rgba(0,212,255,0.13);
    border-bottom: 1px solid rgba(0,212,255,0.13);
    border-bottom-right-radius: 460px;
}

.atr {
    top: 0;
    right: 0;
    width: 260px;
    height: 260px;
    border-left: 1px solid rgba(255,184,0,0.10);
    border-bottom: 1px solid rgba(255,184,0,0.10);
    border-bottom-left-radius: 260px;
}

.abl {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-right: 1px solid rgba(255,184,0,0.09);
    border-top: 1px solid rgba(255,184,0,0.09);
    border-top-right-radius: 200px;
}

.abr {
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    border-left: 1px solid rgba(0,212,255,0.09);
    border-top: 1px solid rgba(0,212,255,0.09);
    border-top-left-radius: 320px;
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

/* Launch announcement pill */
.launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,184,0,0.10);
    border: 1px solid rgba(255,184,0,0.32);
    padding: 8px 22px;
    margin-bottom: 32px;
    animation: fadeDown .8s var(--ease) both;
}

.lp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,184,0,.6);
}

.lp-txt {
    font-family: var(--fc);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.2px;
    color: var(--gold);
    text-transform: uppercase;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.45);
    }
}

/* Hero logo emblem */
.hero-emblem {
    width: 130px;
    height: 130px;
    margin: 0 auto 26px;
    position: relative;
    animation: fadeDown .9s .05s var(--ease) both;
}

    .hero-emblem::before {
        content: '';
        position: absolute;
        inset: -14px;
        border: 1px solid rgba(0,212,255,0.22);
        border-radius: 50%;
    }

    .hero-emblem::after {
        content: '';
        position: absolute;
        inset: -28px;
        border: 1px solid rgba(0,212,255,0.10);
        border-radius: 50%;
    }

    .hero-emblem svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 0 14px rgba(0,212,255,.35));
    }

.hero-pre {
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5.5px;
    color: rgba(255,184,0,0.72);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
    animation: fadeDown .9s .12s var(--ease) both;
}

    .hero-pre::before, .hero-pre::after {
        content: '';
        width: 50px;
        height: 1px;
        background: rgba(255,184,0,0.34);
    }

h1 {
    font-family: var(--fs);
    font-size: clamp(46px, 6.6vw, 80px);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    animation: fadeDown 1s .18s var(--ease) both;
}

    h1 em {
        font-style: italic;
        color: var(--cyan);
        font-weight: 600;
    }

    h1 .g {
        color: var(--gold);
        font-style: normal;
    }

.hero-sub-serif {
    font-family: var(--fs);
    font-size: clamp(17px, 2.1vw, 23px);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    font-weight: 400;
    animation: fadeDown 1s .24s var(--ease) both;
}

.hero-divider {
    margin: 0 auto 26px;
    max-width: 280px;
    animation: fadeDown 1s .30s var(--ease) both;
}

.hero-desc {
    font-family: var(--fb);
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin: 0 auto 40px;
    animation: fadeDown 1s .36s var(--ease) both;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeDown 1s .44s var(--ease) both;
}

.btn-p {
    font-family: var(--fc);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 38px;
    background: var(--cyan);
    color: var(--navy);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .25s;
}

    .btn-p:hover {
        background: #00EEFF;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(0,212,255,0.32);
    }

.btn-s {
    font-family: var(--fc);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 15px 38px;
    border: 1px solid rgba(255,184,0,0.42);
    color: var(--gold);
    cursor: pointer;
    transition: background .2s, transform .15s;
}

    .btn-s:hover {
        background: rgba(255,184,0,0.08);
        transform: translateY(-2px);
    }

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats band */
.stat-band {
    width: 100%;
    background: var(--cyan);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    position: relative;
    z-index: 2;
    animation: fadeDown 1s .56s var(--ease) both;
}

.sb-i {
    text-align: center;
    padding: 22px 0;
    position: relative;
}

    .sb-i:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: 1px;
        background: rgba(2,11,31,0.22);
    }

.sb-n {
    font-family: var(--fc);
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}

.sb-l {
    font-family: var(--fb);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: rgba(2,11,31,0.66);
    text-transform: uppercase;
    margin-top: 6px;
}


/* ══════════════════════════════════════════════════════════
   TICKER — CARICOM Nations
   ══════════════════════════════════════════════════════════ */
.ticker-wrap {
    background: var(--navy-2);
    border-top: 1px solid rgba(0,212,255,.08);
    border-bottom: 1px solid rgba(0,212,255,.08);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

    .ticker-wrap::before, .ticker-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: clamp(28px, 8vw, 90px);
        z-index: 2;
        pointer-events: none;
    }

    .ticker-wrap::before {
        left: 0;
        background: linear-gradient(90deg, var(--navy-2) 0%, rgba(3,13,34,0.74) 38%, transparent 100%);
    }

    .ticker-wrap::after {
        right: 0;
        background: linear-gradient(-90deg, var(--navy-2) 0%, rgba(3,13,34,0.74) 38%, transparent 100%);
    }

.ticker {
    display: flex;
    align-items: center;
    gap: 38px;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
    animation: scroll-x 82s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.tk-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 38px;
    font-family: var(--fc);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 1;
    color: rgba(255,255,255,.68);
    text-transform: uppercase;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .tk-item::after {
        content: '◆';
        color: var(--cyan);
        font-size: 7px;
        line-height: 1;
        opacity: .86;
    }

@keyframes scroll-x {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker {
        animation: none;
        transform: none;
    }
}


/* ══════════════════════════════════════════════════════════
   THE IMPERATIVE
   ══════════════════════════════════════════════════════════ */
#imperative {
    padding: 110px var(--pad);
    background: var(--navy);
}

.imp-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .imp-header .section-sub {
        color: var(--soft);
    }

.imp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.imp-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(0,212,255,0.10);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
    position: relative;
    overflow: hidden;
}

    .imp-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--cyan);
        opacity: .55;
    }

    .imp-card.g::before {
        background: var(--gold);
    }

    .imp-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0,212,255,0.24);
        background: rgba(255,255,255,0.04);
    }

    .imp-card.g:hover {
        border-color: rgba(255,184,0,0.24);
    }

.ic-num {
    font-family: var(--fc);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(0,212,255,.55);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.imp-card.g .ic-num {
    color: rgba(255,184,0,.6);
}

.ic-title {
    font-family: var(--fs);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

.ic-text {
    font-family: var(--fb);
    font-size: 14.5px;
    line-height: 1.72;
    color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   CHARTER & MANDATE
   ══════════════════════════════════════════════════════════ */
#mandate {
    padding: 110px var(--pad);
    background: var(--navy-2);
    border-top: 1px solid rgba(0,212,255,0.06);
    position: relative;
}

    #mandate::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(0,212,255,0.018) 39px), repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(0,212,255,0.018) 39px);
        pointer-events: none;
    }

.mandate-cols {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 76px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.vision-card {
    background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,212,255,0.02));
    border: 1px solid rgba(0,212,255,0.18);
    border-top: 3px solid var(--cyan);
    padding: 30px 30px;
    margin-bottom: 24px;
    position: relative;
}

.vc-lbl {
    font-family: var(--fc);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vc-text {
    font-family: var(--fs);
    font-size: 16.5px;
    line-height: 1.62;
    color: rgba(255,255,255,0.86);
    font-style: italic;
    font-weight: 400;
}

.mission-card {
    background: linear-gradient(135deg, rgba(255,184,0,0.06), rgba(255,184,0,0.015));
    border: 1px solid rgba(255,184,0,0.18);
    border-top: 3px solid var(--gold);
    padding: 30px 30px;
}

    .mission-card .vc-lbl {
        color: var(--gold);
    }


/* ══════════════════════════════════════════════════════════
   STRATEGIC FOCUS — Four Pillars (concept-only)
   ══════════════════════════════════════════════════════════ */
#focus {
    padding: 110px var(--pad);
    background: var(--navy);
    border-top: 1px solid rgba(0,212,255,.06);
}

.focus-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

    .focus-header .section-sub {
        color: var(--soft);
    }

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fc-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(0,212,255,0.10);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease), border-color .28s var(--ease);
}

    .fc-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0,212,255,0.28);
    }

    .fc-card.g:hover {
        border-color: rgba(255,184,0,0.28);
    }

.fc-ghost {
    position: absolute;
    top: -28px;
    right: -8px;
    font-family: var(--fs);
    font-weight: 700;
    font-style: italic;
    font-size: 160px;
    color: rgba(0,212,255,0.045);
    line-height: 1;
}

.fc-card.g .fc-ghost {
    color: rgba(255,184,0,0.045);
}

.fc-num {
    font-family: var(--fc);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.fc-card.g .fc-num {
    color: var(--gold);
}

.fc-title {
    font-family: var(--fs);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -.3px;
    position: relative;
    z-index: 1;
}

.fc-text {
    font-family: var(--fb);
    font-size: 14.5px;
    line-height: 1.74;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

.fc-divider {
    width: 36px;
    height: 2px;
    background: var(--cyan);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.fc-card.g .fc-divider {
    background: var(--gold);
}


/* ══════════════════════════════════════════════════════════
   THE CASE FOR ENGAGEMENT
   ══════════════════════════════════════════════════════════ */
#engage {
    padding: 110px var(--pad);
    background: var(--navy-2);
    border-top: 1px solid rgba(255,184,0,.06);
    position: relative;
}

    #engage::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,184,0,.22), transparent);
    }

.eng-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

    .eng-header .section-sub {
        color: var(--soft);
    }

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

.case-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px 22px;
    text-align: center;
    border-bottom: 2px solid;
    transition: transform .25s var(--ease);
}

    .case-card:hover {
        transform: translateY(-4px);
    }

    .case-card:nth-child(odd) {
        border-bottom-color: var(--cyan);
    }

    .case-card:nth-child(even) {
        border-bottom-color: var(--gold);
    }

.cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--fc);
    font-weight: 700;
    font-size: 16px;
}

.case-card:nth-child(odd) .cc-icon {
    background: rgba(0,212,255,0.10);
    border: 1px solid rgba(0,212,255,0.32);
    color: var(--cyan);
}

.case-card:nth-child(even) .cc-icon {
    background: rgba(255,184,0,0.10);
    border: 1px solid rgba(255,184,0,0.32);
    color: var(--gold);
}

.cc-title {
    font-family: var(--fc);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cc-text {
    font-family: var(--fb);
    font-size: 13px;
    line-height: 1.66;
    color: var(--muted);
}

/* Quote band */
.quote-band {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(255,184,0,0.04));
    border: 1px solid rgba(0,212,255,0.16);
    border-left: 4px solid var(--cyan);
    padding: 36px 44px;
    position: relative;
}

.qb-mark {
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: var(--fs);
    font-size: 90px;
    font-weight: 700;
    color: rgba(0,212,255,0.10);
    line-height: 1;
}

.qb-text {
    font-family: var(--fs);
    font-size: 19px;
    line-height: 1.66;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    padding-left: 50px;
    margin-bottom: 16px;
    font-weight: 400;
}

.qb-attr {
    font-family: var(--fb);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(0,212,255,0.72);
    text-transform: uppercase;
    padding-left: 50px;
}


/* ══════════════════════════════════════════════════════════
   PATHWAYS TO ENGAGE
   ══════════════════════════════════════════════════════════ */
#pathways {
    padding: 110px var(--pad);
    background: var(--navy);
    border-top: 1px solid rgba(0,212,255,.06);
}

.pw-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

    .pw-header .section-sub {
        color: var(--soft);
    }

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.path-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 26px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease), border-color .28s var(--ease);
}

    .path-card:hover {
        transform: translateY(-4px);
    }

    .path-card:nth-child(odd) {
        border-top: 3px solid var(--cyan);
    }

    .path-card:nth-child(even) {
        border-top: 3px solid var(--gold);
    }

    .path-card:nth-child(odd):hover {
        border-color: rgba(0,212,255,0.28);
    }

    .path-card:nth-child(even):hover {
        border-color: rgba(255,184,0,0.28);
    }

.path-num {
    font-family: var(--fc);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.path-card:nth-child(odd) .path-num {
    color: rgba(0,212,255,.65);
}

.path-card:nth-child(even) .path-num {
    color: rgba(255,184,0,.7);
}

.path-title {
    font-family: var(--fs);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.path-card:nth-child(odd) .path-title {
    color: var(--cyan);
}

.path-card:nth-child(even) .path-title {
    color: var(--gold);
}

.path-text {
    font-family: var(--fb);
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   LEADERSHIP
   ══════════════════════════════════════════════════════════ */
#leadership {
    padding: 110px var(--pad);
    background: var(--navy-2);
    border-top: 1px solid rgba(255,184,0,.06);
}

.ld-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

    .ld-header .section-sub {
        color: var(--soft);
    }

/* Chairman — full-width split card */
.chairman-card {
    background: rgba(2,11,31,0.55);
    border: 1px solid rgba(0,212,255,0.18);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

    .chairman-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
        z-index: 2;
    }

/* Photo column */
.cc-portrait {
    background: var(--navy-3);
    border-right: 1px solid rgba(0,212,255,0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 24px;
    gap: 14px;
    min-height: 300px;
    position: relative;
}

.cc-emblem {
    width: 108px;
    height: 108px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: rgba(255,184,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-mono {
    font-family: var(--fs);
    font-size: 40px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: -.5px;
}

.cc-photo-lbl {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.34);
    text-align: center;
    line-height: 1.7;
}

/* Bio column */
.cc-body {
    padding: 44px 48px;
    position: relative;
    z-index: 1;
}

.cc-role-lbl {
    font-family: var(--fc);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.cc-name {
    font-family: var(--fs);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -.5px;
}

.cc-org {
    font-family: var(--fc);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.6px;
    color: var(--cyan);
    margin-bottom: 22px;
}

.cc-body-txt {
    font-family: var(--fb);
    font-size: 14.5px;
    line-height: 1.82;
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
}

.cc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cc-meta-item {
}

.cc-meta-lbl {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.36);
    margin-bottom: 5px;
}

.cc-meta-val {
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}


/* Governor placeholder grid */
.gov-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gov-card {
    border: 1px solid rgba(0,212,255,0.10);
    background: rgba(2,11,31,0.4);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}

    .gov-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(0,212,255,0.18);
    }

    .gov-card:hover {
        border-color: rgba(0,212,255,0.22);
        background: rgba(2,11,31,0.55);
    }

.gov-photo {
    width: 66px;
    height: 66px;
    border: 1px dashed rgba(255,255,255,0.20);
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.gov-photo-txt {
    font-family: var(--fb);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.24);
}

.gov-role {
    font-family: var(--fc);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    margin-bottom: 10px;
}

.gov-name {
    font-family: var(--fs);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.30);
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: -.3px;
}

.gov-title {
    font-family: var(--fc);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: rgba(0,212,255,0.36);
    margin-bottom: 18px;
}

.gov-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 16px;
}

.gov-bio {
    font-family: var(--fb);
    font-size: 12.5px;
    line-height: 1.72;
    color: rgba(255,255,255,0.22);
    font-style: italic;
}


/* ══════════════════════════════════════════════════════════
   BEGIN THE CONVERSATION (CTA + CONTACT)
   ══════════════════════════════════════════════════════════ */
#contact {
    padding: 130px var(--pad) 90px;
    background: var(--navy-3);
    border-top: 2px solid rgba(0,212,255,0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #contact::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px), repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px), repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(0,212,255,0.022) 39px);
    }

    #contact::after {
        content: '';
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 760px;
        height: 760px;
        background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, transparent 65%);
        pointer-events: none;
    }

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.cta-ey {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5.5px;
    color: rgba(255,184,0,0.72);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

    .cta-ey::before, .cta-ey::after {
        content: '';
        width: 52px;
        height: 1px;
        background: rgba(255,184,0,0.30);
    }

.cta-hl {
    font-family: var(--fs);
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

    .cta-hl em {
        font-style: italic;
        color: var(--cyan);
        font-weight: 600;
    }

.cta-sub {
    font-family: var(--fs);
    font-size: 21px;
    font-style: italic;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
    font-weight: 400;
}

.contact-box {
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.22);
    border-top: 2px solid var(--cyan);
    padding: 30px 56px;
    display: inline-flex;
    gap: 56px;
    align-items: center;
    margin-bottom: 36px;
}

.cb-sep {
    width: 1px;
    height: 50px;
    background: rgba(0,212,255,0.20);
}

.cb-lbl {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: rgba(255,255,255,0.30);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cb-val {
    font-family: var(--fc);
    font-size: 19px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: .5px;
}

    .cb-val a {
        color: inherit;
        transition: color .2s;
    }

        .cb-val a:hover {
            color: #00EEFF;
        }

    .cb-val.s {
        font-size: 14px;
        color: rgba(255,255,255,0.72);
        font-weight: 500;
    }

.regions {
    font-family: var(--fb);
    font-size: 11px;
    color: rgba(255,255,255,0.24);
    line-height: 2.1;
    letter-spacing: .4px;
    max-width: 720px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
    background: #010810;
    padding: 24px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.ft-logo {
    font-family: var(--fc);
    font-size: 21px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 3.5px;
}

.ft-copy {
    font-family: var(--fb);
    font-size: 10px;
    color: rgba(255,255,255,0.22);
    text-align: center;
    line-height: 1.75;
}

.ft-right {
    font-family: var(--fb);
    font-size: 9px;
    color: rgba(255,184,0,0.36);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.9;
}

.ft-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ft-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ft-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(0,212,255,0.16);
    background: rgba(0,212,255,0.035);
    color: rgba(255,255,255,0.54);
    font-family: var(--fc);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

    .ft-social-link svg {
        width: 15px;
        height: 15px;
        fill: currentColor;
        flex-shrink: 0;
    }

    .ft-social-link:hover,
    .ft-social-link:focus-visible {
        color: var(--cyan);
        border-color: rgba(0,212,255,0.42);
        background: rgba(0,212,255,0.08);
        transform: translateY(-1px);
    }

    .ft-social-link:focus-visible {
        outline: 2px solid rgba(0,212,255,0.50);
        outline-offset: 3px;
    }



/* ══════════════════════════════════════════════════════════
   FLAGSHIP PROGRAMMES
   ══════════════════════════════════════════════════════════ */
#programmes {
    padding: 110px var(--pad);
    background: var(--navy-3);
    border-top: 1px solid rgba(0,212,255,.06);
    position: relative;
}

    #programmes::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(0,212,255,0.018) 39px), repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(255,184,0,0.012) 39px);
        pointer-events: none;
    }

.prog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

.prog-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(0,212,255,0.10);
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

    .prog-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--cyan);
        opacity: .6;
    }

    .prog-card.g::before {
        background: var(--gold);
    }

    .prog-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0,212,255,0.26);
        background: rgba(255,255,255,0.038);
    }

    .prog-card.g:hover {
        border-color: rgba(255,184,0,0.26);
    }

.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 12px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.22);
    margin-bottom: 18px;
}

.prog-card.g .pc-badge {
    background: rgba(255,184,0,0.07);
    border-color: rgba(255,184,0,0.22);
}

.pc-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

.prog-card.g .pc-badge-dot {
    background: var(--gold);
}

.pc-badge-txt {
    font-family: var(--fb);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0,212,255,.75);
}

.prog-card.g .pc-badge-txt {
    color: rgba(255,184,0,.78);
}

.pc-title {
    font-family: var(--fs);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.14;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

    .pc-title em {
        color: var(--cyan);
        font-style: italic;
    }

.prog-card.g .pc-title em {
    color: var(--gold);
}

.pc-text {
    font-family: var(--fb);
    font-size: 14px;
    line-height: 1.74;
    color: var(--muted);
    margin-bottom: 18px;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.pc-tag {
    font-family: var(--fc);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    background: rgba(0,212,255,0.07);
    border: 1px solid rgba(0,212,255,0.20);
    color: rgba(0,212,255,.80);
}

.prog-card.g .pc-tag {
    background: rgba(255,184,0,0.06);
    border-color: rgba(255,184,0,0.20);
    color: rgba(255,184,0,.80);
}

.pc-outcome {
    background: rgba(0,212,255,0.05);
    border-left: 3px solid rgba(0,212,255,0.45);
    padding: 12px 16px;
    margin-top: auto;
}

.prog-card.g .pc-outcome {
    background: rgba(255,184,0,0.04);
    border-left-color: rgba(255,184,0,0.42);
}

.pc-outcome-lbl {
    font-family: var(--fc);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0,212,255,.65);
    margin-bottom: 5px;
}

.prog-card.g .pc-outcome-lbl {
    color: rgba(255,184,0,.65);
}

.pc-outcome-txt {
    font-family: var(--fs);
    font-size: 13.5px;
    font-style: italic;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}

/* Summit full-width card */
.summit-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(255,184,0,0.04));
    border: 1px solid rgba(0,212,255,0.16);
    border-top: 3px solid var(--gold);
    padding: 36px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease);
}

    .summit-card:hover {
        transform: translateY(-3px);
    }

.sc-year {
    position: absolute;
    right: 24px;
    top: -12px;
    font-family: var(--fc);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,212,255,0.055);
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
}

.sc-tiers {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 18px;
}

.sc-tier {
    padding: 12px 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.07);
}

    .sc-tier.d {
        border-top: 2px solid var(--cyan);
        background: rgba(0,212,255,0.06);
    }

    .sc-tier.g {
        border-top: 2px solid var(--gold);
        background: rgba(255,184,0,0.06);
    }

    .sc-tier.p {
        border-top: 2px solid rgba(255,255,255,.25);
    }

.sc-tier-name {
    font-family: var(--fc);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sc-tier.d .sc-tier-name {
    color: var(--cyan);
}

.sc-tier.g .sc-tier-name {
    color: var(--gold);
}

.sc-tier.p .sc-tier-name {
    color: rgba(255,255,255,.55);
}

.sc-tier-txt {
    font-family: var(--fb);
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   STANDARDS ALIGNMENT STRIP
   ══════════════════════════════════════════════════════════ */
.standards-strip {
    margin-top: 44px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(0,212,255,0.10);
    padding: 28px 32px;
    position: relative;
    z-index: 1;
}

.ss-label {
    font-family: var(--fc);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(0,212,255,0.65);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .ss-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(0,212,255,0.12);
    }

.ss-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px 32px;
}

.ss-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ss-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    transform: rotate(45deg);
    margin-top: 5px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0,212,255,.4);
}

.ss-item.g .ss-dot {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255,184,0,.4);
}

.ss-name {
    font-family: var(--fc);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 3px;
}

.ss-desc {
    font-family: var(--fb);
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   BOARD FORMATION SECTION
   ══════════════════════════════════════════════════════════ */
.board-formation {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(0,212,255,0.12);
    border-top: 3px solid rgba(0,212,255,0.40);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
}

.bf-text-col {
}

.bf-eyebrow {
    font-family: var(--fc);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(0,212,255,.65);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .bf-eyebrow::after {
        content: '';
        flex: 1;
        max-width: 50px;
        height: 1px;
        background: rgba(0,212,255,.16);
    }

.bf-title {
    font-family: var(--fs);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -.3px;
}

    .bf-title em {
        color: var(--cyan);
        font-style: italic;
    }

.bf-text {
    font-family: var(--fb);
    font-size: 14.5px;
    line-height: 1.78;
    color: var(--muted);
    margin-bottom: 22px;
}

.bf-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bf-domain {
    font-family: var(--fb);
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 14px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.18);
    color: rgba(255,255,255,.72);
}

.bf-stat-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bf-stat {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
}

.bf-stat-n {
    font-family: var(--fc);
    font-size: 36px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -1px;
}

    .bf-stat-n.g {
        color: var(--gold);
    }

.bf-stat-l {
    font-family: var(--fb);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.3px;
    color: rgba(255,255,255,.42);
    text-transform: uppercase;
    margin-top: 5px;
}

/* Governor cards — real appointments */
.gov-card {
    border: 1px solid rgba(0,212,255,0.12);
    background: rgba(2,11,31,0.45);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
    display: flex;
    flex-direction: column;
}

    .gov-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.20));
    }

    .gov-card:nth-child(even)::before {
        background: linear-gradient(90deg, var(--gold), rgba(255,184,0,0.20));
    }

    .gov-card:hover {
        border-color: rgba(0,212,255,0.28);
        background: rgba(2,11,31,0.62);
        transform: translateY(-3px);
    }

.gov-photo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0,212,255,0.30);
    margin-bottom: 20px;
    flex-shrink: 0;
    background: var(--navy-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gov-card:nth-child(even) .gov-photo-wrap {
    border-color: rgba(255,184,0,0.30);
}

.gov-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.gov-photo-initials {
    font-family: var(--fs);
    font-size: 22px;
    font-weight: 600;
    color: var(--cyan);
    line-height: 1;
}

.gov-card:nth-child(even) .gov-photo-initials {
    color: var(--gold);
}

.gov-role {
    font-family: var(--fc);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,212,255,0.65);
    margin-bottom: 6px;
}

.gov-card:nth-child(even) .gov-role {
    color: rgba(255,184,0,0.65);
}

.gov-name {
    font-family: var(--fs);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 4px;
    letter-spacing: -.3px;
}

.gov-org {
    font-family: var(--fc);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: rgba(0,212,255,0.55);
    margin-bottom: 16px;
}

.gov-card:nth-child(even) .gov-org {
    color: rgba(255,184,0,0.55);
}

.gov-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 14px;
}

.gov-bio {
    font-family: var(--fb);
    font-size: 13px;
    line-height: 1.72;
    color: rgba(255,255,255,0.65);
    flex: 1;
}

.gov-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.gov-tag {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.16);
    color: rgba(0,212,255,0.72);
    letter-spacing: .5px;
}

.gov-card:nth-child(even) .gov-tag {
    background: rgba(255,184,0,0.05);
    border-color: rgba(255,184,0,0.16);
    color: rgba(255,184,0,0.72);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --pad: 44px;
    }

    .mandate-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .imp-grid, .focus-grid, .prog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid, .path-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gov-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chairman-card {
        grid-template-columns: 1fr;
    }

    .cc-portrait {
        border-right: none;
        border-bottom: 1px solid rgba(0,212,255,0.14);
        min-height: 260px;
    }

    .cc-body {
        padding: 36px 32px;
    }

    .summit-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .board-formation {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ss-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 720px) {
    :root {
        --pad: 22px;
    }

    .nav-links {
        display: none;
    }

    .logo-txt-2 {
        display: none;
    }

    h1 {
        font-size: 42px;
    }

    .stat-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .imp-grid, .focus-grid, .case-grid, .path-grid, .prog-grid {
        grid-template-columns: 1fr;
    }

    .gov-grid {
        grid-template-columns: 1fr;
    }

    .summit-card {
        grid-template-columns: 1fr;
    }

    .sc-tiers {
        grid-template-columns: 1fr;
    }

    .ss-grid {
        grid-template-columns: 1fr;
    }

    .board-formation {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .bf-stat-col {
        flex-direction: row;
    }

    .cc-body {
        padding: 28px 24px;
    }

    .cc-name {
        font-size: 26px;
    }

    .cc-meta {
        gap: 18px;
    }

    .contact-box {
        flex-direction: column;
        gap: 22px;
        padding: 26px;
    }

    .cb-sep {
        width: 50px;
        height: 1px;
    }

    footer {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .quote-band {
        padding: 28px 26px 24px;
    }

    .qb-text, .qb-attr {
        padding-left: 0;
    }

    .qb-mark {
        left: 16px;
        top: -4px;
    }

    .ft-right {
        text-align: center;
    }

    .hero-emblem {
        width: 110px;
        height: 110px;
    }

    .hero-pre {
        font-size: 9.5px;
        letter-spacing: 4px;
        gap: 10px;
    }

        .hero-pre::before, .hero-pre::after {
            width: 28px;
        }
}


/* ══════════════════════════════════════════════════════════
   BLAZOR MOBILE NAVIGATION ADDITIONS
   ══════════════════════════════════════════════════════════ */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,212,255,0.24);
    background: rgba(0,212,255,0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

    .mobile-menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--cyan);
        border-radius: 2px;
    }

.mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 1003;
    pointer-events: none;
    visibility: hidden;
}

    .mobile-menu-panel.is-open {
        pointer-events: auto;
        visibility: visible;
    }

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1,8,16,0.62);
    opacity: 0;
    transition: opacity .22s var(--ease);
}

.mobile-menu-panel.is-open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100%;
    background: rgba(2,11,31,0.98);
    border-left: 1px solid rgba(0,212,255,0.20);
    box-shadow: -24px 0 70px rgba(0,0,0,0.38);
    padding: 26px 24px;
    transform: translateX(105%);
    transition: transform .28s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-panel.is-open .mobile-menu-drawer {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0,212,255,0.14);
}

.mobile-menu-close {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-link,
.mobile-menu-cta {
    font-family: var(--fc);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.74);
}

.mobile-menu-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--cyan);
    color: var(--navy);
    border-bottom: 0;
    padding: 14px 18px;
}

body.mobile-menu-locked {
    overflow: hidden;
}

@media (max-width: 720px) {
    .nav-inner {
        padding: 0 var(--pad);
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ══════════════════════════════════════════════════════════
   LEADERSHIP IMAGE CLEANUP
   Keeps both member images and initials visible in every card.
   ══════════════════════════════════════════════════════════ */
.cc-emblem.cc-photo-wrap,
.gov-photo-wrap {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.cc-emblem.cc-photo-wrap {
    width: 118px;
    height: 118px;
    border-width: 2px;
    box-shadow: 0 0 0 8px rgba(255,184,0,0.045), 0 18px 42px rgba(0,0,0,0.25);
}

.cc-photo-img,
.gov-photo-img,
.gov-photo-wrap img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: var(--navy-3);
}

.cc-mono,
.gov-photo-initials {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    line-height: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.32);
}

.cc-mono {
    right: -8px;
    bottom: -8px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,184,0,0.45);
    background: rgba(2,11,31,0.96);
    color: var(--gold);
    font-size: 21px;
    font-weight: 700;
}

.gov-photo-wrap {
    width: 88px;
    height: 88px;
    overflow: visible;
    margin-bottom: 24px;
    box-shadow: 0 0 0 6px rgba(0,212,255,0.035), 0 14px 34px rgba(0,0,0,0.24);
}

.gov-card:nth-child(even) .gov-photo-wrap {
    box-shadow: 0 0 0 6px rgba(255,184,0,0.035), 0 14px 34px rgba(0,0,0,0.24);
}

.gov-photo-initials {
    right: -7px;
    bottom: -7px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0,212,255,0.42);
    background: rgba(2,11,31,0.96);
    color: var(--cyan);
    font-family: var(--fc);
    font-size: 12px;
    font-weight: 800;
}

.gov-card:nth-child(even) .gov-photo-initials {
    border-color: rgba(255,184,0,0.42);
    color: var(--gold);
}

@media (max-width: 720px) {
    .cc-emblem.cc-photo-wrap {
        width: 104px;
        height: 104px;
    }

    .gov-photo-wrap {
        width: 78px;
        height: 78px;
    }
}

/* ══════════════════════════════════════════════════════════
   LEADERSHIP GOVERNOR GRID — DESKTOP FOUR COLUMNS
   Keeps the four member cards on one row on desktop while preserving
   2-column tablet and 1-column mobile behaviour from the existing media queries.
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
    .gov-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .gov-card {
        min-width: 0;
        padding: 28px 22px;
    }

    .gov-photo-wrap {
        width: 82px;
        height: 82px;
        margin-bottom: 22px;
    }

    .gov-name sup {
        font-size: 0.48em;
        line-height: 0;
        vertical-align: super;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .gov-org {
        font-size: 10.5px;
        letter-spacing: 1px;
    }

    .gov-bio {
        font-size: 12.5px;
        line-height: 1.68;
    }

    .gov-tag {
        font-size: 9.5px;
        padding: 2px 8px;
    }
}


/* ══════════════════════════════════════════════════════════
   FLOATING READABILITY TOGGLE
   Keeps readability access available without occupying nav or mobile menu space.
   ══════════════════════════════════════════════════════════ */
.readability-floating-toggle {
    position: fixed !important;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid rgba(255,184,0,0.42);
    border-radius: 999px;
    background: rgba(2,11,31,0.96);
    color: var(--gold);
    font-family: var(--fc);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    visibility: visible !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,184,0,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), opacity .18s var(--ease);
}

    .readability-floating-toggle:hover {
        transform: translateY(-2px);
        border-color: rgba(255,184,0,0.68);
        background: rgba(2,11,31,0.99);
    }

    .readability-floating-toggle:focus-visible {
        outline: 2px solid rgba(255,184,0,0.72);
        outline-offset: 4px;
    }

    .readability-floating-toggle[aria-pressed="true"] {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
    }

.readability-floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,184,0,0.12);
    font-family: var(--fs);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.readability-floating-toggle[aria-pressed="true"] .readability-floating-icon {
    background: rgba(2,11,31,0.12);
}

body.mobile-menu-locked .readability-floating-toggle {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 720px) {
    .readability-floating-toggle {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        min-height: 46px;
        padding: 11px 14px;
    }

    .readability-floating-text {
        display: none;
    }

    .readability-floating-icon {
        width: 30px;
        height: 30px;
    }
}

/* Hero title safety reset
   Prevents accidental debug/focus/title-frame borders from rendering around the launch headline. */
#hero .hero-body,
#hero .hero-body::before,
#hero .hero-body::after,
#hero h1,
#hero h1::before,
#hero h1::after {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

    #hero .hero-body::before,
    #hero .hero-body::after,
    #hero h1::before,
    #hero h1::after {
        content: none !important;
        display: none !important;
    }

/* High-readability mode */
body.readability-mode {
    --soft: rgba(255,255,255,0.94);
    --muted: rgba(255,255,255,0.82);
    --faint: rgba(255,255,255,0.52);
    background: #020B1F;
}

    body.readability-mode .hero-desc,
    body.readability-mode .section-sub,
    body.readability-mode .ic-text,
    body.readability-mode .fc-text,
    body.readability-mode .cc-text,
    body.readability-mode .path-text,
    body.readability-mode .pc-text,
    body.readability-mode .pc-outcome-txt,
    body.readability-mode .ss-desc,
    body.readability-mode .bf-text,
    body.readability-mode .vc-text,
    body.readability-mode .cc-body-txt,
    body.readability-mode .gov-bio,
    body.readability-mode .qb-text,
    body.readability-mode .cta-sub,
    body.readability-mode .regions {
        color: rgba(255,255,255,0.88);
        font-style: normal;
        font-size: clamp(15.5px, 1.05vw, 17px);
        line-height: 1.9;
        letter-spacing: 0.01em;
    }

    body.readability-mode .section-sub,
    body.readability-mode .hero-sub-serif,
    body.readability-mode .cta-sub {
        color: rgba(255,255,255,0.90);
        font-style: normal;
    }

    body.readability-mode .hero-desc,
    body.readability-mode .ic-text,
    body.readability-mode .fc-text,
    body.readability-mode .path-text,
    body.readability-mode .pc-text,
    body.readability-mode .bf-text,
    body.readability-mode .gov-bio {
        font-weight: 500;
    }

    body.readability-mode .gov-bio {
        font-size: 13.5px;
    }

    body.readability-mode .gov-org,
    body.readability-mode .cc-org,
    body.readability-mode .path-num,
    body.readability-mode .fc-num,
    body.readability-mode .ic-num,
    body.readability-mode .pc-badge-txt,
    body.readability-mode .pc-tag,
    body.readability-mode .gov-tag,
    body.readability-mode .mobile-menu-link,
    body.readability-mode .nav-links a {
        letter-spacing: 1.2px;
    }

    body.readability-mode .imp-card,
    body.readability-mode .fc-card,
    body.readability-mode .case-card,
    body.readability-mode .path-card,
    body.readability-mode .prog-card,
    body.readability-mode .gov-card,
    body.readability-mode .chairman-card,
    body.readability-mode .vision-card,
    body.readability-mode .mission-card,
    body.readability-mode .standards-strip,
    body.readability-mode .board-formation,
    body.readability-mode .summit-card,
    body.readability-mode .quote-band {
        background-color: rgba(255,255,255,0.045);
        border-color: rgba(255,255,255,0.14);
    }

    body.readability-mode .nav-links a,
    body.readability-mode .mobile-menu-link {
        color: rgba(255,255,255,0.84);
    }

    body.readability-mode .gov-name,
    body.readability-mode .cc-name,
    body.readability-mode .section-hl,
    body.readability-mode .ic-title,
    body.readability-mode .fc-title,
    body.readability-mode .path-title,
    body.readability-mode .pc-title,
    body.readability-mode .cta-hl {
        text-shadow: 0 1px 0 rgba(0,0,0,0.35);
    }

    body.readability-mode .reveal {
        transition-duration: .45s;
    }

@media (max-width: 720px) {
    body.readability-mode .hero-desc,
    body.readability-mode .section-sub,
    body.readability-mode .ic-text,
    body.readability-mode .fc-text,
    body.readability-mode .cc-text,
    body.readability-mode .path-text,
    body.readability-mode .pc-text,
    body.readability-mode .bf-text,
    body.readability-mode .gov-bio {
        font-size: 15.5px;
        line-height: 1.86;
    }
}

/* ══════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE HARDENING
   Fixes mobile nav visibility and prevents horizontal page overflow.
   This section intentionally sits last so it safely overrides earlier desktop-first rules.
   ══════════════════════════════════════════════════════════ */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    min-width: 0;
    touch-action: pan-y;
}

body,
div,
section,
article,
aside,
header,
footer,
nav,
main {
    min-width: 0;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

#hero,
#imperative,
#mandate,
#programmes,
#focus,
#engage,
#pathways,
#leadership,
#contact,
.inner,
.nav-inner,
.hero-body,
.imp-header,
.focus-header,
.eng-header,
.pw-header,
.ld-header,
.prog-header,
.cta-inner {
    max-width: 100%;
}

.nav-inner {
    gap: 18px;
}

.logo {
    min-width: 0;
    max-width: calc(100vw - 96px);
}

    .logo > div:last-child {
        min-width: 0;
    }

.logo-txt-1,
.logo-txt-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Use the mobile navigation before the desktop nav begins to crowd.
   This prevents the "hamburger flashes then disappears" issue on phones,
   large phones, foldables, small tablets, and narrow browser widths. */
@media (max-width: 1180px) {
    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        flex: 0 0 auto;
        position: relative;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Return to the full menu only where there is enough horizontal room. */
@media (min-width: 1181px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-panel {
    width: 100dvw;
    height: 100dvh;
    max-width: 100dvw;
    overflow: hidden;
}

.mobile-menu-drawer {
    width: min(88dvw, 360px);
    max-width: calc(100dvw - 24px);
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.mobile-menu-locked {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 720px) {
    :root {
        --pad: clamp(16px, 5vw, 22px);
    }

    nav {
        height: 64px;
    }

    .nav-inner {
        padding-inline: var(--pad);
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .logo-txt-1 {
        font-size: 19px;
        letter-spacing: 2.8px;
    }

    #hero {
        min-height: auto;
        padding: 118px var(--pad) 42px;
    }

    .hero-body {
        width: 100%;
        max-width: 100%;
    }

    .hero-emblem {
        width: clamp(82px, 24vw, 110px);
        height: clamp(82px, 24vw, 110px);
    }

    #hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.08;
        letter-spacing: -0.7px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-sub-serif,
    .hero-desc {
        max-width: 100%;
    }

    .hero-btns {
        width: 100%;
    }

        .hero-btns > a {
            width: 100%;
            max-width: 340px;
            text-align: center;
        }

    .stat-band {
        width: 100%;
        max-width: 100%;
    }

    .ticker-wrap,
    .ticker {
        max-width: 100%;
    }

    .case-grid,
    .path-grid,
    .prog-grid,
    .focus-grid,
    .imp-grid,
    .gov-grid,
    .ss-grid,
    .mandate-cols,
    .summit-card,
    .board-formation {
        width: 100%;
        max-width: 100%;
    }

    .bf-stat-col {
        flex-wrap: wrap;
    }

    .readability-floating-toggle {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        z-index: 2200;
    }
}

@media (max-width: 420px) {
    .logo-txt-2 {
        display: none;
    }

    #hero h1 {
        font-size: clamp(34px, 10.5vw, 44px);
    }

    .sb-n {
        font-size: 34px;
    }

    .contact-box {
        width: 100%;
    }
}

/* Fallback for browsers without overflow-x: clip support. */
@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

/* ══════════════════════════════════════════════════════════
   IMAGE FALLBACK HARDENING
   Replaces missing image icons with the CyCIS logo without changing layout.
   ══════════════════════════════════════════════════════════ */
.logo-mark img,
.hero-emblem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mobile-menu-head .logo-txt-1 img {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 8px;
    object-fit: contain;
    vertical-align: middle;
}

.gov-photo-wrap img.is-logo-fallback,
.cc-photo-wrap img.is-logo-fallback {
    object-fit: contain;
    object-position: center;
    padding: 14px;
    background: rgba(2,11,31,0.92);
}

.logo-mark img.is-logo-fallback,
.hero-emblem img.is-logo-fallback {
    object-fit: contain;
    object-position: center;
}


@media (max-width: 720px) {
    .ft-center {
        width: 100%;
    }

    .ft-social {
        gap: 7px;
    }

    .ft-social-link {
        padding: 7px 10px;
        font-size: 10px;
    }
}
