:root {
    /* Colors */
    --bg-paper: #F7F6F2;
    --primary: #2357D8;
    --primary-dark: #1d46ae;
    --dark: #13294B;
    --accent: #F4B400;
    --text-main: #222222;
    --text-muted: #666666;
    --card-bg: #FFFFFF;
    --border-soft: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-head: 'Playfair Display', serif;
    --font-anchor: 'National Park', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --radius-apple: 24px;
    --container-width: 1240px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: var(--font-body);
    background-color: var(--bg-paper);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 14.5px;
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

html.sidebar-open,
body.sidebar-open,
.lenis.lenis-stopped {
    overflow: hidden;
}

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

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    will-change: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

:focus-visible {
    outline: 3px solid rgba(35, 87, 216, 0.38);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(19, 41, 75, 0.22);
}

.skip-link:focus {
    transform: translateY(0);
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(17, 54, 42, 0.12));
}


/* NAVIGATION - Glass Navbar */
.nav-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    width: max-content;
    max-width: calc(100% - 40px);

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav-glass__logo {
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
}

.brand-logo--desktop {
    max-height: 44px;
}

.nav-glass__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-glass__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    border-radius: 9999px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.nav-glass__link:hover,
.nav-glass__compound-button:hover,
.nav-glass__toggle:hover {
    background: rgba(35, 87, 216, 0.1);
    color: var(--primary);
}

.nav-glass__link.active,
.nav-glass__compound-button.active,
.nav-glass__dropdown-wrapper.is-active .nav-glass__toggle {
    background: rgba(35, 87, 216, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.nav-glass__dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-glass__compound {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.nav-glass__compound-button {
    border: 0;
    background: transparent;
}

.nav-glass__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--text-main);
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-glass__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    /* Hidden by default with smooth transition */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

/* Invisible bridge for hover continuity */
.nav-glass__dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
}

.nav-glass__dropdown-wrapper:hover > .nav-glass__dropdown,
.nav-glass__dropdown-wrapper:focus-within > .nav-glass__dropdown,
.nav-glass__dropdown-wrapper.is-open > .nav-glass__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-glass__dropdown-wrapper:hover > [data-dropdown-trigger] .dropdown-icon,
.nav-glass__dropdown-wrapper:focus-within > [data-dropdown-trigger] .dropdown-icon,
.nav-glass__dropdown-wrapper.is-open > [data-dropdown-trigger] .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(35, 87, 216, 0.08);
    color: var(--primary);
}

.nav-glass__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.nav-glass__hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

@media (max-width: 1200px) {
    .nav-glass {
        padding: 10px 18px;
    }

    .nav-glass__link {
        padding: 8px 12px;
        font-size: 0.84rem;
    }

    .nav-glass__toggle {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 1080px) {
    .desktop-only {
        display: none !important;
    }

    .nav-glass {
        width: calc(100% - 24px);
        max-width: 650px;
        padding: 10px 12px 10px 18px;
        gap: 14px;
        justify-content: space-between;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(19, 41, 75, 0.08);
        box-shadow: 0 18px 48px rgba(19, 41, 75, 0.12);
    }

    .nav-glass.is-expanded {
        border-radius: 32px;
        box-shadow: 0 24px 60px rgba(19, 41, 75, 0.16);
    }

    .nav-glass__logo {
        flex: 1;
        min-width: 0;
        margin-right: 0;
    }

    .nav-glass__links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(19, 41, 75, 0.08);
        border-radius: 28px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    }

    .nav-glass__links.active {
        display: flex;
        align-items: stretch;
    }

    .nav-glass__link {
        width: 100%;
        text-align: left;
        min-height: 54px;
        padding: 14px 16px;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 18px;
    }

    .nav-glass__dropdown-wrapper {
        width: 100%;
        display: block;
        align-self: stretch;
        padding: 4px;
        border-radius: 22px;
        background: rgba(35, 87, 216, 0.04);
        transition: var(--transition-smooth);
    }

    .nav-glass__dropdown-wrapper.is-open,
    .nav-glass__dropdown-wrapper.is-active {
        background: rgba(35, 87, 216, 0.08);
    }

    .nav-glass__compound {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
    }

    .nav-glass__compound .nav-glass__link {
        flex: 1;
    }

    .nav-glass__compound-button {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-glass__toggle {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.8);
    }

    .nav-glass__dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        padding: 6px 0 8px 12px;
        margin: 0;
    }

    .nav-glass__dropdown-wrapper:hover > .nav-glass__dropdown,
    .nav-glass__dropdown-wrapper:focus-within > .nav-glass__dropdown {
        display: none;
    }

    .nav-glass__dropdown-wrapper.is-open > .nav-glass__dropdown {
        display: block;
        transform: none;
    }

    .dropdown-item {
        display: block;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        color: var(--text-muted);
        border-radius: 14px;
        white-space: normal;
        line-height: 1.45;
    }

    .nav-glass__links > .nav-glass__link,
    .nav-glass__links > .nav-glass__dropdown-wrapper {
        width: 100%;
    }

    .nav-glass .nav-glass__links.active {
        align-items: stretch !important;
    }

    .nav-glass .nav-glass__links.active > .nav-glass__link,
    .nav-glass .nav-glass__links.active .nav-glass__compound-button,
    .nav-glass .nav-glass__links.active .nav-glass__compound .nav-glass__link {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
    }

    .nav-glass .nav-glass__links.active .nav-glass__dropdown {
        width: 100% !important;
    }

    .nav-glass .nav-glass__links.active .dropdown-item {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    .nav-glass__hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        padding: 0;
        background: rgba(35, 87, 216, 0.08);
        border: 1px solid rgba(35, 87, 216, 0.12);
    }

    .nav-glass__hamburger[aria-expanded="true"] {
        background: rgba(35, 87, 216, 0.14);
    }

    .nav-glass__hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-glass__hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-glass__hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (min-width: 1081px) {
    .nav-glass {
        width: max-content;
        max-width: calc(100% - 40px);
        padding: 12px 24px;
        gap: 8px;
        border-radius: 9999px;
    }

    .nav-glass__hamburger {
        display: none;
    }

    .nav-glass__links {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-glass__link,
    .nav-glass__compound-button {
        display: inline-flex;
        width: auto;
        min-height: 0;
        padding: 8px 16px;
        justify-content: center;
        text-align: center;
    }

    .nav-glass__dropdown-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        width: auto;
        padding: 0;
        background: transparent;
    }

    .nav-glass__compound {
        display: inline-flex;
        grid-template-columns: none;
        width: auto;
        gap: 2px;
    }

    .nav-glass__toggle {
        width: 34px;
        height: 34px;
        border-radius: 9999px;
        background: transparent;
    }
}



/* FOOTER */
.footer {
    padding: 48px 24px;
    text-align: center;
    background: var(--bg-paper);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.brand-logo--footer {
    max-height: 58px;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__link:hover {
    color: var(--primary);
}

.footer__divider {
    width: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}


/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* RESPONSIVE: TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --radius-apple: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer__links {
        gap: 16px;
    }
}


/* RESPONSIVE: MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --radius-apple: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .footer {
        padding: 32px 16px;
    }

    .footer__logo {
        font-size: 1.25rem;
    }

    .footer__tagline {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .footer__links {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .footer__link {
        font-size: 0.85rem;
    }

    .footer__copyright {
        font-size: 0.8rem;
    }
}


/* RESPONSIVE: SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 40px 0;
    }

    .nav-glass {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 12px 10px 16px;
    }

    .nav-glass__logo {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   WOW Accreditation Bar (Sub-Header Extension)
   -------------------------------------------------------------------------- */
.nav-stack {
    position: relative;
}

.nav-stack-spacer {
    display: none;
}

.accreditation-bar {
    position: relative;
    z-index: 10;
    padding: 118px 20px 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 52%),
        linear-gradient(180deg, #faf9f5 0%, #f4f2eb 100%);
    border-bottom: 1px solid rgba(18, 40, 32, 0.06);
}

.accreditation-bar::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 140px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.accreditation-bar__surface {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 237, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        inset 0 -1px 0 rgba(19, 41, 75, 0.05),
        0 24px 48px rgba(21, 35, 28, 0.1);
    overflow: hidden;
}

.accreditation-bar__surface::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at top right, rgba(35, 87, 216, 0.12), transparent 42%);
    pointer-events: none;
}

.accreditation-bar__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px 28px;
    min-width: 0;
}

.accreditation-bar__brand {
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px 10px;
    border-radius: 16px;
    border: 1px solid rgba(35, 87, 216, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(249, 247, 241, 0.44));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.accreditation-bar__title {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(1.38rem, 1.3rem + 0.9vw, 1.9rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.24em;
    color: transparent;
    background: linear-gradient(135deg, #2357D8 0%, #13294B 52%, #F4B400 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 6px 16px rgba(26, 67, 55, 0.08);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.accreditation-bar__title-mini {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.34em;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
    color: rgba(19, 41, 75, 0.86);
    background: rgba(35, 87, 216, 0.08);
    border: 1px solid rgba(35, 87, 216, 0.14);
    border-radius: 999px;
    padding: 0.18rem 0.5rem;
    text-shadow: none;
    transform: translateY(-0.02em);
}

.accreditation-bar__subtitle {
    margin: 0;
    max-width: 42ch;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 560;
    line-height: 1.34;
    letter-spacing: 0.01em;
    color: rgba(37, 43, 40, 0.7);
    text-wrap: pretty;
}

.accreditation-bar__details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 0;
}

.accreditation-bar__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
    width: min(100%, 380px);
    min-width: 0;
}

.credential-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(35, 87, 216, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 236, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 14px 28px rgba(21, 35, 28, 0.08);
    overflow: hidden;
}

.credential-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, rgba(35, 87, 216, 0.95), rgba(19, 41, 75, 0.62));
}

.credential-card--registration::before {
    background: linear-gradient(90deg, rgba(194, 93, 44, 0.94), rgba(140, 57, 22, 0.64));
}

.credential-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 78px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(35, 87, 216, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
        linear-gradient(180deg, rgba(250, 249, 245, 0.98), rgba(241, 239, 231, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 10px 20px rgba(21, 35, 28, 0.06);
}

.credential-card__media--fallback {
    min-height: 74px;
    padding: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.credential-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 72px;
    object-fit: contain;
    object-position: center;
}

.credential-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: #2357D8;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4)),
        linear-gradient(180deg, rgba(35, 87, 216, 0.16), rgba(35, 87, 216, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 16px rgba(35, 87, 216, 0.12);
    flex-shrink: 0;
}

.credential-card--registration .credential-card__icon {
    color: #8d4a2b;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.44)),
        linear-gradient(180deg, rgba(217, 120, 55, 0.18), rgba(232, 99, 58, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 16px rgba(174, 92, 40, 0.12);
}

.wow-reg {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .accreditation-bar {
        padding-top: 108px;
        padding-bottom: 32px;
    }

    .accreditation-bar__surface {
        padding: 18px 20px;
    }

    .accreditation-bar__body {
        gap: 16px 20px;
    }

    .accreditation-bar__subtitle {
        font-size: 0.84rem;
        max-width: 32ch;
    }

    .credential-card {
        min-height: 108px;
        padding: 11px;
    }

    .credential-card__media {
        min-height: 70px;
        padding: 9px 10px;
    }

    .credential-card__image {
        max-height: 64px;
    }

    .credential-card__icon {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------------------------------------------------------
   Credential Tiles (3-col accreditation grid — matches mobile reference)
   -------------------------------------------------------------------------- */
.accreditation-bar__credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.credential-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px 6px 12px;
    border-radius: 16px;
    border: 1px solid rgba(35, 87, 216, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 16px rgba(21, 35, 28, 0.06);
    position: relative;
    overflow: hidden;
}

.credential-tile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #2357D8, #F4B400);
    border-radius: 16px 16px 0 0;
}

.credential-tile--iso::before {
    background: linear-gradient(90deg, #2357D8, #F4B400);
}

.credential-tile--est::before {
    background: linear-gradient(90deg, #2357D8, #1d46ae);
}

.credential-tile__label {
    font-family: var(--font-head);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: #13294B;
    text-transform: uppercase;
}

.credential-tile__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(244, 248, 245, 0.88));
    border: 1px solid rgba(35, 87, 216, 0.08);
    box-shadow: 0 4px 10px rgba(21, 35, 28, 0.06);
    overflow: hidden;
    flex-shrink: 0;
}

.credential-tile__img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    object-position: center;
}

.credential-tile__svg {
    width: 26px;
    height: 26px;
    color: #2357D8;
}

.credential-tile__sub {
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
}

/* Desktop: tiles sit beside the brand block */
@media (min-width: 901px) {
    .accreditation-bar__credentials {
        gap: 12px;
        max-width: 420px;
    }

    .credential-tile {
        padding: 16px 8px 14px;
        gap: 8px;
    }

    .credential-tile__label {
        font-size: 0.68rem;
    }

    .credential-tile__icon-wrap {
        width: 64px;
        height: 64px;
    }

    .credential-tile__img {
        width: 48px;
        height: 48px;
    }

    .credential-tile__svg {
        width: 30px;
        height: 30px;
    }

    .credential-tile__sub {
        font-size: 0.6rem;
    }
}

/* --------------------------------------------------------------------------
   Off-Canvas Sidebar
   -------------------------------------------------------------------------- */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1005; 
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    left: 0;
}

.side-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.side-menu__logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo--sidebar {
    max-height: 48px;
}

.side-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.side-menu__close:hover {
    background: rgba(0, 0, 0, 0.08);
}

.side-menu__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
}

.side-menu__link,
.side-menu__accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.side-menu__link:hover,
.side-menu__accordion-btn:hover {
    background: rgba(35, 87, 216, 0.06);
    color: var(--primary);
}

.side-menu__link.active,
.side-menu__accordion-btn.active {
    background: rgba(35, 87, 216, 0.08);
    color: var(--primary);
}

.side-menu__link--accent {
    background: #2357D8;
    color: #fff;
    box-shadow: 0 12px 24px rgba(35, 87, 216, 0.16);
}

.side-menu__link--accent:hover,
.side-menu__link--accent.active {
    background: #1d46ae;
    color: #fff;
}

.side-menu__accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.side-menu__accordion-btn[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.side-menu__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.side-menu__accordion-content-inner {
    padding: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-menu__accordion-content-inner--social {
    padding: 8px 0 0 14px;
}

.side-menu__subgroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 4px 14px;
    border-left: 1px solid rgba(35, 87, 216, 0.14);
}

.side-menu__subgroup-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(50, 84, 72, 0.68);
    padding-left: 4px;
}

.side-menu__sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    font-size: 0.9rem;
    color: #325448;
    font-weight: 550;
    border-radius: 11px;
    border: 1px solid rgba(35, 87, 216, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 245, 0.92));
    transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.side-menu__sublink:hover {
    color: var(--primary);
    border-color: rgba(35, 87, 216, 0.18);
    background: linear-gradient(180deg, rgba(247, 251, 248, 0.98), rgba(236, 245, 240, 0.95));
    transform: translateX(2px);
}

.side-menu__sublink--social::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    flex-shrink: 0;
    background: rgba(35, 87, 216, 0.4);
    box-shadow: 0 0 0 5px rgba(35, 87, 216, 0.1);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.side-menu__sublink--social:hover::after {
    transform: scale(1.12);
    background: rgba(35, 87, 216, 0.72);
    box-shadow: 0 0 0 6px rgba(35, 87, 216, 0.12);
}

.side-menu__footer {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
}

.side-menu__footer p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.side-menu__socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.side-menu__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.side-menu__socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (min-width: 901px) {
    .sidebar-overlay,
    .side-menu {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile First Navigation Component (Anchor Redesign)
   -------------------------------------------------------------------------- */
.mobile-nav {
    display: none; /* hidden on desktop */
}

@media (max-width: 1080px) {
    .nav-stack {
        --nav-stack-offset: 0px;
        --nav-collapse-progress: 0;
        --nav-hide-progress: 0;
        --nav-shell-shift: 0px;
        --nav-shell-scale: 1;
        --nav-accredit-shift: 0px;
        --nav-accredit-scale: 1;
        --nav-accredit-opacity: 1;
        --nav-logo-opacity: 1;
        --nav-logo-shift: 0px;
        --nav-logo-scale: 1;
        --nav-brand-shift: 0px;
        --nav-brand-opacity: 1;
        --nav-subtitle-shift: 0px;
        --nav-subtitle-opacity: 1;
        --nav-details-shift: 0px;
        --nav-details-opacity: 1;
        --nav-frost-opacity: 0.22;
        --nav-highlight-opacity: 0.48;
        --nav-merge-opacity: 0.86;
        --nav-halo-opacity: 0.28;
        position: fixed;
        top: 16px;
        left: 50%;
        width: min(calc(100% - 24px), 438px);
        z-index: 1000;
        isolation: isolate;
        transform: translate3d(-50%, var(--nav-stack-offset), 0);
        will-change: transform;
    }

    .nav-stack::before {
        content: "";
        position: absolute;
        inset: -8px -6px -18px;
        z-index: 0;
        border-radius: 32px;
        background:
            radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 54%),
            radial-gradient(circle at bottom, rgba(35, 87, 216, 0.18), transparent 68%);
        filter: blur(26px);
        opacity: var(--nav-halo-opacity);
        pointer-events: none;
    }

    .nav-stack-spacer {
        display: block;
        height: var(--mobile-nav-stack-height, 154px);
        pointer-events: none;
    }

    .nav-stack[data-nav-state="hidden"] {
        pointer-events: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        z-index: 2;
        overflow: hidden;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(241, 247, 244, 0.58));
        color: #13294B;
        padding: 9px 12px 9px 14px;
        border-radius: 9999px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.76),
            0 22px 46px rgba(19, 41, 75, 0.18);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        transform: translate3d(0, var(--nav-shell-shift), 0) scale(var(--nav-shell-scale));
        transform-origin: top center;
        will-change: transform;
    }

    .mobile-nav::before,
    .mobile-nav::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
    }

    .mobile-nav::before {
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.1) 48%, rgba(35, 87, 216, 0.14));
        opacity: var(--nav-frost-opacity);
    }

    .mobile-nav::after {
        inset: 1px;
        border-radius: inherit;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -14px 30px rgba(19, 41, 75, 0.06);
        opacity: var(--nav-highlight-opacity);
    }

    .mobile-nav__left {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 1;
        position: relative;
        z-index: 1;
    }

    .mobile-nav__hamburger {
        color: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: -4px;
        border-radius: 999px;
        border: 1px solid rgba(35, 87, 216, 0.08);
        background: rgba(255, 255, 255, 0.34);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
        transition: transform 0.24s var(--ease-premium), opacity 0.24s ease, background 0.24s ease;
        will-change: transform;
    }

    .mobile-nav__logo {
        display: inline-flex;
        align-items: center;
        opacity: var(--nav-logo-opacity);
        transform: translate3d(0, var(--nav-logo-shift), 0) scale(var(--nav-logo-scale));
        transform-origin: left center;
        transition: opacity 0.24s ease;
        white-space: nowrap;
        display: inline-block;
        flex-shrink: 0;
        will-change: transform, opacity;
    }

    .brand-logo--mobile {
        max-height: 36px;
    }

    .mobile-nav__actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .mobile-nav__icons {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .expandable-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(35, 87, 216, 0.08);
        color: #2357D8;
        border-radius: 999px;
        position: relative;
        border: 1px solid rgba(35, 87, 216, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: transform 0.24s var(--ease-premium), opacity 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
        will-change: transform;
    }

    .expandable-icon.active {
        background: rgba(35, 87, 216, 0.16);
        color: #1d46ae;
    }

    .e-icon-btn {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: inherit;
        background: transparent;
        border: none;
        pointer-events: none;
    }

    .e-icon-text {
        display: none;
    }

    .mobile-nav__donate {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 15px;
        background: linear-gradient(145deg, #ee7b4a, #d65c34);
        color: #ffffff;
        font-size: 0.82rem;
        font-weight: 700;
        border-radius: 999px;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.32),
            0 14px 24px rgba(216, 92, 52, 0.28);
        transition: transform 0.24s var(--ease-premium), opacity 0.24s ease, box-shadow 0.24s var(--ease-premium);
        text-decoration: none;
        white-space: nowrap;
        will-change: transform;
    }

    .mobile-nav__hamburger.is-pressed,
    .expandable-icon.is-pressed {
        transform: scale(0.96);
    }

    .mobile-nav__donate.is-pressed {
        transform: scale(0.96);
    }

    .mobile-nav__donate.is-springing {
        animation: mobile-donate-spring 560ms var(--ease-premium);
    }

    @media (hover: hover) and (pointer: fine) {
        .mobile-nav__hamburger:hover,
        .expandable-icon:hover {
            background: rgba(35, 87, 216, 0.14);
            transform: translateY(-1px);
        }

        .mobile-nav__donate:hover {
            transform: translateY(-2px) scale(1.01);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.34),
                0 18px 28px rgba(216, 92, 52, 0.32);
        }
    }

    .accreditation-bar {
        position: relative;
        z-index: 1;
        margin-top: -14px;
        padding: 0;
        background: transparent;
        border-bottom: none;
        transform: translate3d(0, var(--nav-accredit-shift), 0) scale(var(--nav-accredit-scale));
        opacity: var(--nav-accredit-opacity);
        transform-origin: top center;
        will-change: transform, opacity;
    }

    .accreditation-bar::before {
        display: none;
    }

    .accreditation-bar__surface {
        max-width: none;
        padding: 24px 14px 14px;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.42);
        background:
            linear-gradient(180deg, rgba(251, 250, 245, 0.94), rgba(245, 243, 236, 0.84));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.74),
            inset 0 -1px 0 rgba(24, 34, 28, 0.05),
            0 20px 42px rgba(19, 41, 75, 0.14);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }

    .accreditation-bar__surface::before {
        opacity: 0.78;
    }

    .accreditation-bar__surface::after {
        content: "";
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 30px;
        border-radius: 0 0 22px 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 236, 0));
        opacity: var(--nav-merge-opacity);
        pointer-events: none;
    }

    .accreditation-bar__body {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
        align-items: start;
        gap: 10px 12px;
    }

    .accreditation-bar__brand {
        transform: translate3d(0, var(--nav-brand-shift), 0);
        opacity: var(--nav-brand-opacity);
        will-change: transform, opacity;
    }

    .accreditation-bar__title {
        font-size: 1.02rem;
        letter-spacing: 0.2em;
    }

    .accreditation-bar__subtitle {
        margin-top: 4px;
        max-width: none;
        font-size: 0.68rem;
        line-height: 1.3;
        display: block;
        white-space: normal;
        overflow: visible;
        opacity: var(--nav-subtitle-opacity);
        transform: translate3d(0, var(--nav-subtitle-shift), 0);
        will-change: transform, opacity;
    }

    .accreditation-bar__details {
        justify-self: stretch;
        align-items: flex-end;
        gap: 7px;
        min-width: 0;
        max-width: none;
        transform: translate3d(0, var(--nav-details-shift), 0);
        opacity: var(--nav-details-opacity);
        will-change: transform, opacity;
    }

    .accreditation-bar__badges {
        width: min(100%, 314px);
        gap: 8px;
        justify-items: stretch;
    }

    .credential-card {
        min-height: 100px;
        padding: 10px;
        border-radius: 16px;
    }

    .credential-card__media {
        min-height: 62px;
        padding: 8px 10px;
        border-radius: 14px;
    }

    .credential-card__image {
        max-height: 56px;
    }

    .credential-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .wow-reg {
        width: 100%;
        text-align: right;
        font-size: 0.54rem;
        line-height: 1.25;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 640px) {
    .accreditation-bar__body {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .accreditation-bar__details {
        align-items: flex-start;
        gap: 6px;
    }

    .accreditation-bar__badges {
        justify-content: flex-start;
    }

    .wow-reg {
        text-align: left;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 480px) {
    .nav-stack {
        top: 12px;
        width: min(calc(100% - 20px), 438px);
    }

    .nav-stack-spacer {
        height: var(--mobile-nav-stack-height, 146px);
    }

    .mobile-nav {
        padding: 8px 10px 8px 12px;
    }

    .mobile-nav__actions {
        gap: 6px;
    }

    .mobile-nav__icons {
        gap: 4px;
    }

    .mobile-nav__hamburger,
    .expandable-icon,
    .e-icon-btn,
    .mobile-nav__donate {
        min-height: 36px;
        width: 36px;
        height: 36px;
    }

    .mobile-nav__donate {
        width: auto;
        padding: 0 12px;
        font-size: 0.76rem;
    }

    .mobile-nav__logo {
        font-size: 1.06rem;
    }

    .accreditation-bar {
        margin-top: -12px;
    }

    .accreditation-bar__surface {
        padding: 22px 12px 12px;
        border-radius: 24px;
    }

    .accreditation-bar__surface::after {
        left: 14px;
        right: 14px;
        height: 26px;
    }

    .accreditation-bar__body {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .accreditation-bar__title {
        font-size: 0.94rem;
        letter-spacing: 0.18em;
    }

    .accreditation-bar__subtitle {
        max-width: none;
        font-size: 0.62rem;
    }

    .accreditation-bar__details {
        align-items: flex-start;
        gap: 6px;
    }

    .accreditation-bar__badges {
        justify-content: flex-start;
        width: min(100%, 100%);
    }

    .credential-card {
        min-height: 94px;
        padding: 9px;
    }

    .credential-card__media {
        min-height: 56px;
        padding: 8px 9px;
    }

    .credential-card__image {
        max-height: 50px;
    }

    .credential-card__icon {
        width: 38px;
        height: 38px;
    }

    .wow-reg {
        text-align: left;
        font-size: 0.5rem;
    }
}

@keyframes mobile-donate-spring {
    0% {
        transform: scale(0.96);
    }
    58% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-stack,
    .mobile-nav,
    .mobile-nav::before,
    .mobile-nav::after,
    .mobile-nav__logo,
    .mobile-nav__hamburger,
    .expandable-icon,
    .mobile-nav__donate,
    .accreditation-bar,
    .accreditation-bar__brand,
    .accreditation-bar__subtitle,
    .accreditation-bar__details {
        animation: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
   Unified Header System
   -------------------------------------------------------------------------- */
.header-system {
    --header-inset-top: 20px;
    --header-side-inset: 24px;
    --header-max-width: 1180px;
    --header-progress: 0;
    --header-collapse-progress: 0;
    --header-morph-progress: 0;
    --header-hide-progress: 0;
    --header-accredit-travel: 96px;
    --header-hide-travel: 96px;
    --header-width-start: 1120px;
    --header-width-end: 860px;
    --header-main-height-start: 68px;
    --header-main-height-end: 60px;
    --header-main-pad-x-start: 22px;
    --header-main-pad-x-end: 16px;
    --header-main-pad-y-start: 12px;
    --header-main-pad-y-end: 9px;
    --header-accreditation-height: 118px;
    position: fixed;
    top: var(--header-inset-top);
    left: 50%;
    width: calc(var(--header-width-start) + (var(--header-width-end) - var(--header-width-start)) * var(--header-morph-progress));
    max-width: calc(100% - (var(--header-side-inset) * 2));
    height: calc(
        (var(--header-main-height-start) + ((var(--header-main-height-end) - var(--header-main-height-start)) * var(--header-morph-progress))) +
        (var(--header-accreditation-height) * (1 - var(--header-morph-progress)))
    );
    z-index: 1000;
    pointer-events: auto;
    transform:
        translate3d(-50%, calc(var(--header-hide-travel) * var(--header-hide-progress) * -1), 0)
        scale(calc(1 - (var(--header-morph-progress) * 0.014) - (var(--header-hide-progress) * 0.03)));
    opacity: calc(1 - (var(--header-hide-progress) * 1.35));
    display: flex;
    flex-direction: column;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: calc(22px + (999px - 22px) * var(--header-morph-progress));
    background:
        linear-gradient(160deg, rgba(248, 249, 246, 0.88), rgba(242, 244, 239, 0.86) 52%, rgba(240, 237, 230, 0.88));
    box-shadow:
        0 calc(14px + var(--header-morph-progress) * 8px) calc(30px + var(--header-morph-progress) * 10px)
        rgb(18 36 29 / calc(0.12 + var(--header-morph-progress) * 0.05 - var(--header-hide-progress) * 0.03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform-origin: top center;
    will-change: transform, opacity, width, height, border-radius, box-shadow;
    isolation: isolate;
}

.header-system::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at top right, rgba(35, 87, 216, 0.06), transparent 48%);
    pointer-events: none;
}

.header-system-spacer {
    height: var(--header-system-height, 224px);
    pointer-events: none;
}

.header-system[data-header-state="hidden"] {
    pointer-events: none;
}

.header-main,
.header-accreditation {
    position: relative;
    width: 100%;
}

.header-main {
    z-index: 2;
    display: flex;
    align-items: stretch;
    padding:
        calc(var(--header-main-pad-y-start) + (var(--header-main-pad-y-end) - var(--header-main-pad-y-start)) * var(--header-morph-progress))
        calc(var(--header-main-pad-x-start) + (var(--header-main-pad-x-end) - var(--header-main-pad-x-start)) * var(--header-morph-progress));
    min-height: calc(var(--header-main-height-start) + ((var(--header-main-height-end) - var(--header-main-height-start)) * var(--header-morph-progress)));
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border-radius:
        calc(22px + (999px - 22px) * var(--header-morph-progress))
        calc(22px + (999px - 22px) * var(--header-morph-progress))
        calc(10px + (999px - 10px) * var(--header-morph-progress))
        calc(10px + (999px - 10px) * var(--header-morph-progress));
}

.header-accreditation {
    z-index: 1;
    padding: 12px 22px 16px;
    background:
        linear-gradient(180deg, rgba(244, 241, 233, 0.9), rgba(241, 238, 229, 0.94));
    border-top: 1px solid rgba(18, 40, 32, 0.07);
    border-radius: 10px 10px 22px 22px;
    transform:
        translate3d(0, calc(var(--header-accredit-travel) * var(--header-collapse-progress) * -1), 0)
        scale(calc(1 - (var(--header-collapse-progress) * 0.03)));
    opacity: calc(1 - (var(--header-collapse-progress) * 1.45));
    transform-origin: top center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    overflow: clip;
}

.header-main .nav-glass,
.header-main .mobile-nav {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    color: #13294B;
    will-change: auto;
}

.header-main .nav-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header-main .nav-glass__hamburger {
    display: none;
}

.header-main .nav-glass__logo {
    margin: 0;
    flex-shrink: 0;
}

.header-main .nav-glass__links {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: 0;
    min-width: 0;
}

.header-main .nav-glass__link,
.header-main .nav-glass__compound-button {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
}

.header-main .nav-glass__dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
}

.header-main .nav-glass__compound {
    gap: 3px;
}

.header-main .nav-glass__compound-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-main .nav-glass__dropdown {
    top: calc(100% + 14px);
    left: 50%;
    min-width: 216px;
    padding: 8px;
    border: 1px solid rgba(35, 87, 216, 0.08);
    border-radius: 18px;
    background: rgba(249, 250, 246, 0.96);
    box-shadow: 0 18px 36px rgba(19, 41, 75, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate3d(-50%, 10px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.28s;
    z-index: 20;
}

.header-main .nav-glass__dropdown::before {
    top: -14px;
    height: 14px;
}

.header-main .nav-glass__dropdown-wrapper:hover > .nav-glass__dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 10px, 0);
}

.header-main .nav-glass__dropdown-wrapper.is-open > .nav-glass__dropdown,
.header-main .nav-glass__dropdown-wrapper:focus-within > .nav-glass__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0);
    transition-delay: 0s;
}

.header-main .nav-glass__dropdown .nav-glass__dropdown-wrapper {
    display: block;
    width: 100%;
}

.header-main .nav-glass__dropdown-wrapper--nested > .nav-glass__dropdown--nested {
    top: -8px;
    left: calc(100% + 12px);
    min-width: 192px;
    transform: translate3d(-10px, 0, 0);
    z-index: 24;
}

.header-main .nav-glass__dropdown-wrapper--nested.is-open > .nav-glass__dropdown--nested,
.header-main .nav-glass__dropdown-wrapper--nested:focus-within > .nav-glass__dropdown--nested {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
}

.header-main .nav-glass__dropdown--nested::before {
    top: 0;
    bottom: 0;
    left: -14px;
    width: 14px;
    height: auto;
}

.header-main .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 11px 14px;
    color: #13294B;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 12px;
    transition:
        background 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-main .dropdown-item--submenu {
    justify-content: space-between;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-main .dropdown-item:hover,
.header-main .dropdown-item--submenu:hover {
    background: rgba(35, 87, 216, 0.08);
    color: #2357D8;
    transform: translateY(-1px);
}

.header-main .nav-glass__dropdown-wrapper:hover > .nav-glass__compound-button .dropdown-icon,
.header-main .nav-glass__dropdown-wrapper:hover > .dropdown-item--submenu .dropdown-icon {
    transform: none;
}

.header-main .nav-glass__dropdown-wrapper:hover .dropdown-item--submenu .dropdown-icon,
.header-main .nav-glass__dropdown-wrapper:focus-within .dropdown-item--submenu .dropdown-icon,
.header-main .nav-glass__dropdown-wrapper.is-open .dropdown-item--submenu .dropdown-icon {
    transform: none;
}

.header-main .nav-glass__dropdown-wrapper.is-open > .nav-glass__compound-button .dropdown-icon,
.header-main .nav-glass__dropdown-wrapper:focus-within > .nav-glass__compound-button .dropdown-icon {
    transform: rotate(180deg);
}

.header-main .nav-glass__dropdown-wrapper.is-open > .dropdown-item--submenu .dropdown-icon,
.header-main .nav-glass__dropdown-wrapper:focus-within > .dropdown-item--submenu .dropdown-icon {
    transform: translateX(2px);
}

.header-main .dropdown-icon--side {
    flex-shrink: 0;
}

.header-main .nav-glass__donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #2357D8;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(35, 87, 216, 0.18);
    transition:
        transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.24s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.24s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.header-main .nav-glass__donate.active {
    background: #1d46ae;
}

.header-main .nav-glass__mobile-actions,
.header-main .mobile-nav {
    display: none;
}

.header-main .mobile-nav__left,
.header-main .mobile-nav__actions,
.header-main .mobile-nav__icons {
    display: flex;
    align-items: center;
}

.header-main .mobile-nav__left {
    gap: 10px;
    min-width: 0;
}

.header-main .mobile-nav__actions {
    gap: 8px;
    flex-shrink: 0;
}

.header-main .mobile-nav__icons {
    gap: 6px;
}

.header-main .mobile-nav__hamburger,
.header-main .expandable-icon,
.header-main .e-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
}

.header-main .mobile-nav__hamburger {
    color: inherit;
    margin-left: -2px;
    border: 1px solid rgba(35, 87, 216, 0.08);
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.24s var(--ease-premium), background 0.24s ease;
}

.header-main .mobile-nav__logo {
    display: inline-flex;
    align-items: center;
    opacity: 1;
    transform: none;
    white-space: nowrap;
}

.header-main .expandable-icon {
    background: rgba(35, 87, 216, 0.1);
    color: #2357D8;
    border: 1px solid rgba(35, 87, 216, 0.08);
    text-decoration: none;
    transition: transform 0.24s var(--ease-premium), background 0.24s ease;
}

.header-main .expandable-icon.active {
    background: rgba(35, 87, 216, 0.16);
    color: #1d46ae;
}

.header-main .e-icon-btn {
    color: inherit;
    background: transparent;
    border: none;
    pointer-events: none;
}

.header-main .e-icon-text {
    display: none;
}

.header-main .mobile-nav__donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    background: linear-gradient(145deg, #2f67ea, #2357D8);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(35, 87, 216, 0.18);
    transition: transform 0.24s var(--ease-premium), box-shadow 0.24s var(--ease-premium), filter 0.24s var(--ease-premium);
    white-space: nowrap;
}

.header-main .mobile-nav__hamburger.is-pressed,
.header-main .expandable-icon.is-pressed,
.header-main .mobile-nav__donate.is-pressed {
    transform: scale(0.96);
}

.header-main .mobile-nav__donate.is-springing {
    animation: mobile-donate-spring 560ms var(--ease-premium);
}

@media (hover: hover) and (pointer: fine) {
    .header-main .nav-glass__donate:hover {
        background: #1d46ae;
        transform: translateY(-1px);
        box-shadow: 0 14px 26px rgba(35, 87, 216, 0.22);
    }

    .header-main .mobile-nav__hamburger:hover,
    .header-main .expandable-icon:hover {
        background: rgba(35, 87, 216, 0.16);
        transform: translateY(-1px);
    }

    .header-main .mobile-nav__donate:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 10px 20px rgba(35, 87, 216, 0.22);
        filter: brightness(1.03);
    }
}

.header-accreditation .accreditation-bar__surface {
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header-accreditation .accreditation-bar__surface::before,
.header-accreditation .accreditation-bar__surface::after {
    display: none;
}

.header-accreditation .accreditation-bar__body {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 10px 14px;
    transform: translate3d(0, calc(var(--header-collapse-progress) * -6px), 0);
    opacity: calc(1 - (var(--header-collapse-progress) * 0.24));
    transform-origin: top center;
    will-change: transform, opacity;
}

.header-accreditation .accreditation-bar__brand {
    text-align: left;
    align-self: stretch;
    justify-content: center;
}

.header-accreditation .accreditation-bar__title {
    font-size: clamp(1.12rem, 0.98rem + 0.72vw, 1.6rem);
    gap: 0.44rem;
}

.header-accreditation .accreditation-bar__subtitle {
    max-width: 39ch;
    font-size: 0.83rem;
}

.header-accreditation .accreditation-bar__title-mini {
    font-size: 0.36em;
}

.header-accreditation .accreditation-bar__credentials {
    gap: 8px;
    align-self: center;
}

@media (max-width: 1200px) and (min-width: 1081px) {
    .header-main .nav-glass {
        gap: 10px;
    }

    .header-main .nav-glass__link,
    .header-main .nav-glass__compound-button {
        padding-inline: 9px;
        font-size: 0.78rem;
    }

    /* Swap long labels to short ones at tight widths */
    .header-main .nav-glass__link[data-short] {
        font-size: 0;
    }
    .header-main .nav-glass__link[data-short]::after {
        content: attr(data-short);
        font-size: 0.78rem;
    }

    .header-main .nav-glass__donate {
        padding-inline: 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 1080px) {
    .header-system {
        --header-inset-top: 16px;
        --header-side-inset: 12px;
        --header-max-width: 440px;
        --header-main-height-start: 58px;
        --header-main-height-end: 52px;
    }

    .header-main .nav-glass {
        display: none !important;
    }

    .header-main .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .header-accreditation {
        padding: 12px 14px 14px;
    }

    .header-accreditation .accreditation-bar__body {
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: translate3d(0, calc(var(--header-collapse-progress) * -4px), 0);
    }

    .header-accreditation .accreditation-bar__brand {
        text-align: center;
        width: 100%;
        align-items: center;
        padding: 10px 10px 8px;
        gap: 6px;
    }

    .header-accreditation .accreditation-bar__title {
        font-size: 0.96rem;
        letter-spacing: 0.18em;
        gap: 0.3rem;
        justify-content: center;
    }

    .header-accreditation .accreditation-bar__subtitle {
        font-size: 0.64rem;
        line-height: 1.3;
        text-align: center;
    }

    .header-accreditation .credential-tile {
        padding: 10px 4px 8px;
        gap: 4px;
        border-radius: 12px;
    }

    .header-accreditation .credential-tile__label {
        font-size: 0.56rem;
    }

    .header-accreditation .credential-tile__icon-wrap {
        width: 44px;
        height: 44px;
    }

    .header-accreditation .credential-tile__img {
        width: 34px;
        height: 34px;
    }

    .header-accreditation .credential-tile__svg {
        width: 22px;
        height: 22px;
    }

    .header-accreditation .credential-tile__sub {
        font-size: 0.48rem;
    }
}

@media (max-width: 480px) {
    .header-system {
        --header-inset-top: 12px;
        --header-side-inset: 10px;
    }

    .header-accreditation {
        padding: 10px 10px 12px;
    }

    .header-accreditation .accreditation-bar__title {
        font-size: 0.88rem;
        letter-spacing: 0.16em;
        gap: 0.26rem;
    }

    .header-accreditation .accreditation-bar__subtitle {
        font-size: 0.58rem;
    }

    .header-accreditation .accreditation-bar__title-mini {
        font-size: 0.33em;
        padding: 0.14rem 0.4rem;
    }

    .header-accreditation .accreditation-bar__credentials {
        gap: 6px;
    }

    .header-accreditation .credential-tile {
        padding: 8px 3px 7px;
        gap: 3px;
        border-radius: 10px;
    }

    .header-accreditation .credential-tile__label {
        font-size: 0.5rem;
    }

    .header-accreditation .credential-tile__icon-wrap {
        width: 38px;
        height: 38px;
    }

    .header-accreditation .credential-tile__img {
        width: 28px;
        height: 28px;
    }

    .header-accreditation .credential-tile__svg {
        width: 18px;
        height: 18px;
    }

    .header-accreditation .credential-tile__sub {
        font-size: 0.44rem;
    }

    .header-main .mobile-nav__hamburger,
    .header-main .expandable-icon,
    .header-main .e-icon-btn,
    .header-main .mobile-nav__donate {
        min-height: 36px;
        width: 36px;
        height: 36px;
    }

    .header-main .mobile-nav__donate {
        width: auto;
        padding: 0 12px;
        font-size: 0.76rem;
    }

    .header-main .mobile-nav__logo {
        font-size: 1.04rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-system,
    .header-main,
    .header-accreditation,
    .header-main .mobile-nav__hamburger,
    .header-main .expandable-icon,
    .header-main .mobile-nav__donate {
        animation: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
   Floating Donate Button (Mobile/Universal)
   -------------------------------------------------------------------------- */
.floating-donate {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #2357D8;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(35, 87, 216, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    text-decoration: none;
}

.floating-donate.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-donate:hover {
    background: #1d46ae;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(35, 87, 216, 0.5);
}

@media (max-width: 768px) {
    .floating-donate {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* --------------------------------------------------------------------------
   Premium One-Page Header Polish
   -------------------------------------------------------------------------- */
.header-system {
    border-color: rgba(35, 87, 216, 0.06);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
    box-shadow:
        0 12px 40px rgba(19, 41, 75, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 1 !important;
}

.header-system::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top right, rgba(35, 87, 216, 0.05), transparent 52%);
}

.header-main {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.header-main .nav-glass {
    color: var(--dark);
}

.header-main .nav-glass__links {
    justify-content: flex-start;
    gap: 2px;
}

.header-main .nav-glass__link,
.header-main .nav-glass__compound-button {
    color: rgba(19, 41, 75, 0.82);
    font-size: 0.82rem;
    letter-spacing: 0;
    min-height: 40px;
    padding: 8px 11px;
}

.header-main .nav-glass__link:hover,
.header-main .nav-glass__compound-button:hover,
.header-main .nav-glass__link.active {
    color: var(--primary);
    background: rgba(35, 87, 216, 0.09);
}

.header-main .dropdown-item:hover,
.header-main .dropdown-item--submenu:hover {
    color: var(--primary);
    background: rgba(35, 87, 216, 0.09);
}

.header-main .nav-glass__donate,
.header-main .mobile-nav__donate {
    background: linear-gradient(145deg, var(--primary), #1747c7);
    box-shadow: 0 12px 24px rgba(35, 87, 216, 0.2);
}

.header-main .nav-glass__donate.active,
.header-main .nav-glass__donate:hover,
.header-main .mobile-nav__donate:hover {
    background: linear-gradient(145deg, #1747c7, var(--primary-dark));
}

.header-accreditation {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 248, 0.88));
    border-top-color: rgba(35, 87, 216, 0.06);
}

.header-accreditation .accreditation-bar__body {
    grid-template-columns: minmax(340px, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 14px;
}

.header-accreditation .accreditation-bar__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(35, 87, 216, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
}

.accreditation-bar__logo {
    width: clamp(82px, 8vw, 116px);
    height: clamp(82px, 8vw, 116px);
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(19, 41, 75, 0.14));
}

.accreditation-bar__brand-copy {
    min-width: 0;
}

.header-accreditation .accreditation-bar__title,
.accreditation-bar__title {
    display: block;
    margin: 0;
    font-family: var(--font-anchor);
    font-size: clamp(1.5rem, 1.8vw, 2.3rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: var(--dark);
    background: none;
    text-shadow: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.header-accreditation .accreditation-bar__subtitle,
.accreditation-bar__subtitle {
    max-width: 36ch;
    margin-top: 7px;
    color: rgba(19, 41, 75, 0.68);
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.25;
}

.header-accreditation .accreditation-bar__credentials,
.accreditation-bar__credentials {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.header-accreditation .accreditation-bar__credentials::-webkit-scrollbar,
.accreditation-bar__credentials::-webkit-scrollbar {
    display: none;
}

.credential-tile {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 76px;
    min-width: 170px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 12px;
    text-align: left;
    border: 1px solid rgba(35, 87, 216, 0.1);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 242, 0.86));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(19, 41, 75, 0.06);
}

.credential-tile::before {
    background: linear-gradient(90deg, var(--primary), rgba(244, 180, 0, 0.92));
}

.credential-tile__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(235, 241, 255, 0.92));
    border-color: rgba(35, 87, 216, 0.1);
}

.credential-tile__img {
    width: 36px;
    height: 36px;
}

.credential-tile__fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.credential-tile__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.credential-tile__label {
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.credential-tile__sub {
    color: rgba(19, 41, 75, 0.58);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

@media (max-width: 1200px) and (min-width: 1081px) {
    .header-main .nav-glass {
        gap: 8px;
    }

    .header-main .nav-glass__link,
    .header-main .nav-glass__compound-button {
        padding-inline: 7px;
        font-size: 0.74rem;
    }

    /* Swap long labels to short ones at tight widths */
    .header-main .nav-glass__link[data-short] {
        font-size: 0;
    }
    .header-main .nav-glass__link[data-short]::after {
        content: attr(data-short);
        font-size: 0.74rem;
    }
}

@media (max-width: 1080px) {
    html {
        scroll-padding-top: 96px;
    }

    .header-accreditation .accreditation-bar__body {
        display: grid;
        grid-template-columns: 1fr;
    }

    .header-accreditation .accreditation-bar__brand {
        grid-template-columns: auto minmax(0, 1fr);
        text-align: left;
        padding: 10px;
    }

    .accreditation-bar__logo {
        width: 64px;
        height: 64px;
    }

    .header-accreditation .accreditation-bar__title {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
        justify-content: flex-start;
    }

    .header-accreditation .accreditation-bar__subtitle {
        font-size: 0.64rem;
        text-align: left;
    }

    .header-accreditation .accreditation-bar__credentials,
    .accreditation-bar__credentials {
        display: flex;
        gap: 8px;
    }

    .credential-tile {
        min-height: 64px;
        padding: 9px;
    }

    .credential-tile__icon-wrap {
        width: 38px;
        height: 38px;
    }

    .credential-tile__img {
        width: 28px;
        height: 28px;
    }

    .credential-tile__label {
        font-size: 0.68rem;
    }

    .credential-tile__sub {
        font-size: 0.58rem;
    }
}

@media (max-width: 480px) {
    .header-accreditation .accreditation-bar__credentials,
    .accreditation-bar__credentials {
        display: flex;
        gap: 6px;
    }

    .credential-tile {
        min-width: 140px;
    }
}
