/* IDL DESIGN SYSTEM — reuse these tokens and component patterns on future pages. */
@import url("public-site.css?v=4");

:root {
    --color-navy-950: #010912;
    --color-navy-900: #051827;
    --color-navy-800: #0a2234;
    --color-surface: rgba(10, 29, 44, 0.92);
    --color-white: #f8fafc;
    --color-muted: #a8b4be;
    --color-slate-400: #94A3B8;
    --color-gold: #c99a4b;
    --color-gold-light: #e4bf7a;
    --color-rating: #FFC400;
    --color-cyan: #0097B2;
    --color-cyan-dark: var(--color-cyan);
    --font-display: "Anton", sans-serif;
    --font-nav: "Montserrat", sans-serif;
    --font-body: var(--font-nav);
    --text-xs: 0.68rem;
    --text-sm: 0.82rem;
    --text-lg: clamp(1.15rem, 1.6vw, 1.5rem);
    --text-display: clamp(4.4rem, 8vw, 8.4rem);
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --radius-sm: 0.45rem;
    --radius-md: 0.8rem;
    --radius-pill: 100vmax;
    --shadow-soft: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    --transition: 180ms ease;
    --container-gutter: clamp(1.25rem, 4.5vw, 5rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--color-white);
    background: var(--color-navy-950);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
}

button,
input,
select,
textarea {
    font-family: var(--font-nav);
}

a {
    text-decoration: none;
}

.site-container {
    padding-inline: var(--container-gutter);
}

.site-navbar .site-container {
    position: relative;
}

.hero {
    --expertise-ticker-height: 2.75rem;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background-color: var(--color-navy-950);
    background-image: url("../img/backgrounds/home-hero.png?v=4");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}



/* Navigation */
.site-navbar {
    --color-cyan: #0097B2;
    --color-cyan-dark: #0097B2;
    --color-white: #f8fafc;
    --font-nav: "Montserrat", sans-serif;
    --radius-pill: 100vmax;
    --transition: 180ms ease;
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    min-height: 6rem;
    padding-block: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(1, 9, 18, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    will-change: transform;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-navbar.is-scrolled,
.site-navbar.is-menu-open {
    border-bottom-color: rgba(0, 151, 178, 0.18);
    background-color: rgba(1, 9, 18, 0.96);
    box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
}

.site-navbar.is-hidden:not(.is-menu-open) {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .site-navbar {
        transition-duration: 0.01ms;
    }
}




.site-navbar .navbar-nav {
    gap: clamp(0.4rem, 1.3vw, 1.5rem);
}

.site-navbar .nav-link {
    position: relative;
    padding: 0.55rem 0.45rem !important;
    color: #E3E3E3;
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 1.2rem;
    transition: color var(--transition);
}

.site-navbar .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.site-navbar .dropdown-toggle::after {
    display: none !important;
}

.site-navbar .p3-dropdown-icon {
    width: 0.7rem;
    height: 0.5rem;
    flex: 0 0 auto;
    overflow: visible;
    color: var(--color-gold-light);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.site-navbar .dropdown-toggle[aria-expanded="true"] .p3-dropdown-icon {
    transform: rotate(180deg);
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 0.45rem;
    bottom: 0.2rem;
    left: 0.45rem;
    height: 1px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link:active,
.site-navbar .nav-link.active {
    color: var(--color-white);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after,
.site-navbar .nav-link:active::after,
.site-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-cart-link {
    position: relative;
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    margin-right: 0.8rem;
    flex: 0 0 2.65rem;
    place-items: center;
    border: 1px solid rgba(0, 151, 178, 0.42);
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(2, 17, 29, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.navbar-cart-link .idl-cart-badge {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    display: grid;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.22rem;
    place-items: center;
    border: 2px solid var(--color-navy-950);
    border-radius: var(--radius-pill);
    color: var(--color-navy-950);
    background: var(--color-gold);
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
}

.navbar-cart-link--mobile {
    display: none;
}

.p3-auth-actions {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0.8rem 0 0;
}

.p3-auth-link {
    padding: 0.5rem 0.25rem;
    color: var(--color-gold-light);
    border: 0;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.p3-account-icon {
    position: relative;
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    flex: 0 0 2.65rem;
    place-items: center;
    color: var(--color-white);
    border: 1px solid rgba(0, 151, 178, 0.42);
    border-radius: 50%;
    background: rgba(2, 17, 29, 0.5);
    font-size: 0.95rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.p3-account-icon--mobile {
    display: none;
}

.p3-account-icon:hover,
.p3-account-icon:focus-visible,
.p3-account-icon.is-signed-in {
    color: var(--color-gold-light);
    border-color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.14);
    transform: translateY(-1px);
}

.p3-account-icon.is-signed-in::after {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    width: 0.48rem;
    height: 0.48rem;
    content: "";
    border: 2px solid var(--color-navy-950);
    border-radius: 50%;
    background: var(--color-gold-light);
}

.p3-account-dropdown {
    position: absolute;
    z-index: 1080;
    top: calc(100% + 0.85rem);
    right: 0;
    width: min(19rem, calc(100vw - 2rem));
    padding: 0.75rem;
    visibility: hidden;
    color: var(--color-white);
    background: rgba(3, 16, 28, 0.98);
    border: 1px solid rgba(201, 154, 75, 0.28);
    border-radius: var(--radius-card, var(--radius-md));
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.48);
    opacity: 0;
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 220ms;
}

.p3-account-dropdown[hidden] {
    display: none !important;
}

.p3-account-dropdown.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.p3-account-dropdown > header {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p3-account-dropdown__avatar {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    place-items: center;
    color: var(--color-navy-950);
    background: var(--color-gold-light);
    border-radius: 50%;
    font-size: 0.78rem;
}

.p3-account-dropdown > header div {
    min-width: 0;
}

.p3-account-dropdown > header small {
    display: block;
    color: var(--color-cyan);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.p3-account-dropdown > header strong {
    display: block;
    overflow: hidden;
    margin-top: 0.1rem;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p3-account-dropdown nav {
    display: grid;
    gap: 0.15rem;
    padding: 0.55rem 0;
}

.p3-account-dropdown nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.55rem;
    padding: 0.55rem 0.7rem;
    color: rgba(248, 250, 252, 0.76);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 650;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.p3-account-dropdown nav a i {
    width: 1rem;
    color: var(--color-gold-light);
    text-align: center;
}

.p3-account-dropdown nav a:hover,
.p3-account-dropdown nav a:focus-visible,
.p3-account-dropdown nav a.is-active {
    color: var(--color-white);
    border-color: rgba(0, 151, 178, 0.24);
    background: rgba(0, 151, 178, 0.11);
    transform: translateX(0.15rem);
}

.p3-account-dropdown > footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.55rem 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.p3-account-dropdown > footer a,
.p3-account-dropdown > footer button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    color: var(--color-muted);
    border: 0;
    background: transparent;
    font-size: 0.62rem;
    font-weight: 700;
}

.p3-account-dropdown > footer a:hover,
.p3-account-dropdown > footer a:focus-visible,
.p3-account-dropdown > footer button:hover,
.p3-account-dropdown > footer button:focus-visible {
    color: var(--color-gold-light);
}

.navbar-cart-link i {
    display: block;
    width: 1.05rem;
    height: 1.05rem;
    background-color: currentColor;
    font-size: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='19' cy='20' r='1'/%3E%3Cpath d='M3 3h2l2.4 11.2a2 2 0 0 0 2 1.6h7.8a2 2 0 0 0 2-1.6L21 7H6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='19' cy='20' r='1'/%3E%3Cpath d='M3 3h2l2.4 11.2a2 2 0 0 0 2 1.6h7.8a2 2 0 0 0 2-1.6L21 7H6'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (min-width: 992px) {
    .navbar-cart-link i {
        width: 1.2rem;
        height: 1.2rem;
    }
}

.navbar-cart-link:hover,
.navbar-cart-link:focus-visible,
.navbar-cart-link:active,
.navbar-cart-link.active {
    border-color: var(--color-cyan);
    color: var(--color-gold-light);
    background: rgba(0, 151, 178, 0.14);
    transform: translateY(-1px);
}

.btn-primary {
    --bs-btn-bg: var(--color-cyan);
    --bs-btn-border-color: var(--color-cyan);
    --bs-btn-hover-bg: var(--color-cyan-dark);
    --bs-btn-hover-border-color: var(--color-cyan-dark);
    --bs-btn-active-bg: var(--color-cyan-dark);
    --bs-btn-active-border-color: var(--color-cyan-dark);
    --bs-btn-color: var(--color-navy-950);
    --bs-btn-hover-color: var(--color-navy-950);
    font-weight: 700;
}

.btn-register {
    min-width: 8.5rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 1.4rem rgba(0, 151, 178, 0.3);
    font-size: 1rem;
    font-weight: 600;
    color: #050505;
    text-transform: capitalize;
}

/* Shared responsive navbar styles live here so every page uses the same component. */
@media (max-width: 991.98px) {
    .site-navbar {
        min-height: 5rem;
    }

    .site-navbar .site-container {
        flex-wrap: wrap;
    }

    .site-navbar .brand-mark {
        order: 1;
        margin-right: auto;
        margin-left: 0;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
        width: 2rem;
        height: 2rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        display: block;
        width: 1.6rem;
        height: 1.6rem;
    }

    .navbar-collapse {
        width: 100%;
        order: 3;
        margin-top: 0.9rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-md);
        background: rgba(3, 20, 33, 0.97);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(16px);
    }

    .site-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 0;
    }

    .site-navbar .nav-link {
        padding: 0.7rem 0.25rem !important;
    }

    .site-navbar .nav-link::after {
        right: auto;
        left: 0.25rem;
        width: 2rem;
    }

    .btn-register {
        display: inline-block;
        margin-top: 0.6rem;
    }

    .navbar-cart-link {
        margin-top: 0.6rem;
        vertical-align: middle;
    }

    body[class] .site-navbar .navbar-cart-link--desktop {
        display: none;
    }

    body[class] .site-navbar .navbar-cart-link--mobile {
        display: inline-grid;
        margin: 0 0.45rem 0 auto;
        order: 2;
    }

    body[class] .site-navbar .p3-account-icon--mobile {
        display: inline-grid;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0.55rem 0 0;
        flex-basis: 2.5rem;
        order: 2;
    }

    body[class] .site-navbar .p3-account-dropdown--mobile {
        top: calc(100% + 0.6rem);
        right: calc(var(--container-gutter) + 3.05rem);
        width: min(19rem, calc(100vw - (var(--container-gutter) * 2)));
        transform-origin: top right;
    }

    body[class] .site-navbar .navbar-collapse .p3-auth-actions {
        display: none;
    }

    body[class] .site-navbar .navbar-toggler {
        margin-left: 0;
        order: 3;
    }

    body[class] .site-navbar .navbar-collapse {
        order: 4;
    }
}

/* Hero typography */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    width: min(100%, 44rem);
    padding-top: 5rem;
    text-align: center;
}

.hero-kicker {
    margin: 0 0 0.4rem;
    font-size: clamp(1.45rem, 2.5vw, 2.3rem);
    font-weight: 400;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif !important;
    font-size: var(--text-display);
    font-weight: 700 !important;
    letter-spacing: normal;
    line-height: 0.8;
    text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    color: var(--color-gold);
    font-weight: inherit;
}

.country-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: 1.35rem;
    color: var(--color-cyan);
}

.country-title span {
    width: clamp(2rem, 4.4vw, 3.5rem);
    height: 2px;
    background: currentColor;
}

.country-title b {
    font-size: clamp(1.6rem, 3vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-subtitle {
    margin: 1.25rem 0 0;
    font-size: var(--text-lg);
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Event details card */
.event-panel {
    position: absolute;
    right: var(--container-gutter);
    bottom: calc(clamp(1.5rem, 5vh, 3.5rem) + var(--expertise-ticker-height));
    z-index: 3;
    width: min(47rem, 52vw);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 1.4rem 3.6rem rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(26px);
}

.event-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 10%, rgba(214, 164, 80, 0.14) 43%, transparent 58%);
    pointer-events: none;
}

.event-meta {
    position: relative;
    min-height: 4.15rem;
    margin-bottom: 1.35rem;
    padding: 1.5rem;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(40px);
}

.event-meta::after {
    content: "";
    position: absolute;
    top: 1.15rem;
    bottom: 1.15rem;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.13);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-white);
    font-size: clamp(0.72rem, 1.05vw, 1rem);
}

.meta-item:first-child {
    font-weight: 700;
}

.meta-item i {
    color: var(--color-gold-light);
    font-size: 1.05rem;
}

.meta-item:first-child i {
    color: var(--color-cyan);
}

.location-pin-outline {
    position: relative;
    display: inline-block;
    flex: 0 0 0.9rem;
    width: 0.9rem;
    height: 0.9rem;
    margin-bottom: 0.28rem;
    border: 2px solid var(--color-gold-light);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.location-pin-outline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.24rem;
    height: 0.24rem;
    border: 1px solid var(--color-gold-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.event-action {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 4.7rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(201, 154, 75, 0.42);
    border-radius: 0.7rem;
    color: var(--color-white);
    background: rgba(14, 31, 47, 0.88);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.event-action:hover,
.event-action:focus {
    color: var(--color-white);
    border-color: rgba(0, 151, 178, 0.5);
    transform: translateY(-2px);
}

.event-action-primary {
    color: #063247;
    border-color: transparent;
    background: var(--color-cyan);
    box-shadow: 0 0.75rem 1.8rem rgba(0, 151, 178, 0.16);
}

.event-action-primary:hover,
.event-action-primary:focus {
    color: #062b3c;
    background: var(--color-cyan);
}

.action-icon {
    display: grid;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: var(--color-gold-light);
    font-size: 1.35rem;
}

.event-action-primary .action-icon {
    color: #063247;
}

.event-action span:nth-child(2) {
    min-width: 0;
}

.event-action b,
.event-action small {
    display: block;
}

.event-action b {
    font-size: clamp(0.78rem, 1vw, 1rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.event-action small {
    margin-top: 0.12rem;
    color: var(--color-gold);
    font-size: clamp(0.58rem, 0.72vw, 0.72rem);
}

.event-action-primary small {
    color: rgba(2, 48, 65, 0.72);
}

.action-arrow {
    margin-left: auto;
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.event-action-primary .action-arrow {
    color: var(--color-navy-950);
}

/* Continuous expertise ticker */
.expertise-ticker {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(201, 154, 75, 0.2);
    border-bottom: 1px solid rgba(201, 154, 75, 0.2);
    background: #030d15;
}

.expertise-swiper {
    width: 100%;
    padding-block: 0.85rem;
}

.expertise-swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

.expertise-swiper .swiper-slide {
    display: flex;
    width: auto;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.25rem);
    padding-left: clamp(1.5rem, 3vw, 3.25rem);
    color: rgba(248, 250, 252, 0.72);
    font-size: clamp(0.7rem, 0.9vw, 1rem);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.expertise-swiper .swiper-slide i {
    display: block;
    width: 0.35rem;
    height: 0.35rem;
    flex: 0 0 0.35rem;
    background: var(--color-gold-light);
}

/* Congress quick links */
.quick-links {
    padding-block: clamp(2.6rem, 5vw, 4.75rem);
    background: var(--color-navy-950);
}

.quick-link-card {
    display: flex;
    min-height: 8.6rem;
    height: 100%;
    padding: 1.25rem 0.75rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    color: var(--color-white);
    background: rgba(6, 27, 51, 0.08);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}



.quick-link-card>span {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.quick-link-card small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    line-height: 1.2;
}

.quick-link-card:hover,
.quick-link-card:focus {
    color: var(--color-white);
    border-color: rgba(228, 191, 122, 0.62);
    background: rgba(10, 34, 52, 0.82);
    box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

.quick-link-card:hover>i,
.quick-link-card:focus>i {
    color: var(--color-cyan);
}

/* Shared section heading system */
.section-title {
    margin-bottom: 0.75rem;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
}

.section-description {
    margin: 0;
    color: rgba(168, 180, 190, 0.7);
    font-size: clamp(0.75rem, 1.05vw, 0.9rem);
    line-height: 1.55;
}

.section-description--italic {
    font-style: italic;
}

.section-title--display {
    color: var(--color-white);
    font-size: clamp(2.25rem, 5vw, 3rem);
    letter-spacing: -0.04em;
}

.section-title--display em {
    color: var(--color-cyan);
    font-weight: 300;
}

/* Scientific schedule */
.schedule-section {
    position: relative;
    padding-block: clamp(4rem, 7vw, 7rem);

    background: var(--color-navy-950);
    isolation: isolate;
}

.schedule-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -23.25rem;
    z-index: 0;
    width: 744px;
    height: 744px;
    border-radius: 999px;
    opacity: 0.2;
    background: #0A3375;
    filter: blur(114px);
    pointer-events: none;
}

.schedule-section>.container {
    position: relative;
    z-index: 1;
}

.schedule-tabs {
    gap: 0.65rem;
    margin-block: 2rem 2.3rem;
}

.schedule-tabs .nav-link {
    min-width: 5.25rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #353434;
    border-radius: var(--radius-pill);
    color: #E3E3E3;
    background: #1C1B1B;
    font-size: 1rem;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.schedule-tabs .nav-link:hover {
    border-color: rgba(0, 151, 178, 0.5);
    color: var(--color-white);
}

.schedule-tabs .nav-link.active {
    border-color: var(--color-cyan);
    color: var(--color-navy-950);
    background: var(--color-cyan);
}

.schedule-content {
    min-height: 25rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 6.4rem minmax(0, 1fr) auto;
    gap: 1.25rem;
    min-height: 5.35rem;
    margin-bottom: 0.85rem;
    padding: 1.5rem;
    align-items: center;
    border: 1px solid rgba(53, 52, 52, 1);
    border-radius: 0.35rem;
    background: #1C1B1B;
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.schedule-item:hover {
    border-color: rgba(0, 151, 178, 0.46);
    background: #202326;
    transform: translateY(-2px);
}

.schedule-item time {
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 700;
}

.schedule-item h3 {
    margin: 0 0 0.25rem;
    color: #E3E3E3;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.2vw, 1.25rem);
    font-weight: 700;
}

.schedule-item p {
    margin: 0;
    color: #C4C7C5;
    font-family: var(--font-nav);
    font-size: clamp(0.58rem, 0.8vw, 0.825rem);
}

.schedule-type {
    min-width: 4.7rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid currentColor;
    border-radius: var(--radius-pill);
    font-family: var(--font-nav);
    font-size: 0.65rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.type-cyan {
    color: var(--color-cyan);
}

.type-gold {
    color: #d27b25;
}

.type-muted {
    color: #6f7880;
}

.schedule-button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border: 1px solid #353434;
    border-radius: var(--radius-pill);
    color: #E3E3E3;
    background: #1C1B1B;
    font-family: var(--font-nav);
    font-size: 0.875rem;
}

.schedule-button:hover,
.schedule-button:focus {
    color: var(--color-navy-950);
    border-color: var(--color-gold-light);
    background: var(--color-gold-light);
}

/* Hands-on workshops */
.workshops-section {
    padding-block: clamp(4.5rem, 8vw, 8rem);
    background: var(--color-navy-950);
}

.workshops-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.workshops-view-all {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: #D8D4CC;
    font-size: 0.875rem;
}

.workshops-view-all:hover,
.workshops-view-all:focus {
    color: var(--color-navy-950);
    border-color: var(--color-gold-light);
    background: var(--color-gold-light);
}

.workshop-card {
    display: block;
    height: 100%;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: var(--color-white);
    background: #030D18;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.workshop-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
    border-radius: 0.55rem;
}

.workshop-meta {
    display: flex;
    margin-top: 1.45rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.workshop-meta time {
    color: #6B6862;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.workshop-meta span {
    padding: 0.25rem 0.65rem;
    border: 1px solid rgba(228, 191, 122, 0.38);
    border-radius: var(--radius-pill);
    color: var(--color-gold-light);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.workshop-card h3 {
    margin: 1.05rem 0 0;
    color: #F2EFEA;
    font-family: "Montserrat", sans-serif !important;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.3;
}

.workshop-card:hover,
.workshop-card:focus {
    color: var(--color-white);
    border-color: rgba(228, 191, 122, 0.62);
    box-shadow: 0 1.25rem 2.8rem rgba(0, 0, 0, 0.3);
    transform: translateY(-6px);
}

/* Dento Legends moments bento gallery */
.moments-section {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
    overflow: hidden;
    isolation: isolate;
    background: var(--color-navy-950);
}

.moments-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/backgrounds/bento-bg.png?v=4") center / cover no-repeat;
    background-position: center calc(100% + 90px);
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

.moments-container {
    position: relative;
    z-index: 1;
}

.moments-heading {
    width: min(100%, 52rem);
    margin: 0 auto clamp(2rem, 4vw, 3.25rem);
    text-align: center;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    min-height: clamp(22rem, 36vw, 31rem);
}

.moment-card {
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0.55rem;
    background: var(--color-navy-800);
}

.moment-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.moment-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease, filter 500ms ease;
}

.moment-card:hover img {
    filter: brightness(1.08);
    transform: scale(1.035);
}

.moments-button {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: 0.75rem 1.5rem;
    border: 1px solid #353434;
    border-radius: var(--radius-pill);
    color: #E3E3E3;
    background: #1C1B1B;
    font-family: var(--font-nav);
    font-size: 0.875rem;
}

.moments-button:hover,
.moments-button:focus {
    color: var(--color-navy-950);
    border-color: var(--color-gold-light);
    background: var(--color-gold-light);
}

/* Experience callout */
.experience-section {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
    background: var(--color-navy-950);
}

.experience-heading {
    margin-bottom: 0.5rem;
}

.experience-banner {
    position: relative;
    display: grid;
    min-height: clamp(20rem, 32vw, 27rem);
    padding: 2rem;
    overflow: hidden;
    place-items: center;
    border-radius: 1rem;
    background-image:
        linear-gradient(180deg, rgba(14, 14, 14, 0.48) 0%, rgba(14, 14, 14, 0.82) 100%),
        url("../img/backgrounds/experience-bg.jpg?v=4");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.experience-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 10%, rgba(14, 14, 14, 0.28) 100%);
    pointer-events: none;
}

.experience-content {
    position: relative;
    z-index: 1;
}

.experience-content h3 {
    margin-bottom: 0.8rem;
    color: var(--color-white);
    font-family: "Playfair Display", serif !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700 !important;
    line-height: 1.1;
}

.experience-content p {
    margin: 0;
    color: rgba(248, 250, 252, 0.7);
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    font-style: italic;
}

.experience-button {
    margin-top: 1.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #353434;
    border-radius: var(--radius-pill);
    color: #E3E3E3;
    background: rgba(28, 27, 27, 0.5);
    font-family: var(--font-nav);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.experience-button:hover,
.experience-button:focus {
    color: var(--color-navy-950);
    border-color: var(--color-gold-light);
    background: var(--color-gold-light);
}

/* Social community */
.social-section {
    padding-block: clamp(5rem, 9vw, 8.5rem);
    background: var(--color-navy-950);
}

.social-heading {
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.social-card {
    display: flex;
    min-height: 9.5rem;
    height: 100%;
    padding: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.8rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-card>i {
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.social-card>span {
    font-size: 0.75rem;
    font-weight: 600;
}

.social-card small {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.675rem;
}

.social-instagram>i {
    color: #F472B6;
}

.social-facebook>i {
    color: #60A5FA;
}

.social-linkedin>i {
    color: var(--color-cyan);
}

.social-youtube>i {
    color: #F87171;
}

.social-x>i {
    color: var(--color-white);
}

.social-card:hover,
.social-card:focus {
    color: var(--color-white);
    border-color: rgba(228, 191, 122, 0.6);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

/* FAQ accordion */
.faq-section {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 8rem);
    background: var(--color-navy-950);
    isolation: isolate;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 1042px;
    height: 780px;
    border-radius: 999px;
    opacity: 0.13;
    background: #0A3375;
    filter: blur(114px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.faq-section>.container {
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.faq-accordion {
    --bs-accordion-border-width: 0;
    width: min(100%, 52rem);
    margin-inline: auto;
}

.faq-accordion .accordion-item {
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    background: #162536;
    backdrop-filter: blur(40px);
}

.faq-accordion .accordion-button {
    min-height: 4.15rem;
    padding: 1.25rem;
    color: var(--color-white);
    background: #162536;
    box-shadow: none;
    font-size: clamp(0.75rem, 1vw, 1rem);
    font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-gold-light);
    background: #162536;
}

.faq-accordion .accordion-button::after {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: auto;
    filter: invert(76%) sepia(8%) saturate(500%) hue-rotate(163deg);
    background-size: 0.8rem;


}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: currentColor;
    background-image: none;
    filter: none;
    -webkit-mask: var(--bs-accordion-btn-active-icon) center / 0.8rem 0.8rem no-repeat;
    mask: var(--bs-accordion-btn-active-icon) center / 0.8rem 0.8rem no-repeat;
}

.faq-accordion .accordion-body {
    padding: 0.25rem 1.35rem 1.25rem;
    color: rgba(168, 180, 190, 0.82);
    background: #162536;
    font-size: 0.8rem;
    line-height: 1.65;
}

/* Contact */
.contact-section {
    padding-block: clamp(5rem, 9vw, 8rem);
    background: var(--color-navy-950);
}

.contact-label {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--color-cyan);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-copy .section-title {
    margin-bottom: 1.25rem;
    line-height: 1;
    text-align: left;
    font-weight: 800 !important;
    font-family: 'montserrat', sans-serif !important;
}

.contact-details {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0 1.75rem;
    font-style: normal;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.contact-detail-icon {
    display: grid;
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(0, 151, 178, 0.2);
    border-radius: 0.45rem;
    color: var(--color-cyan);
    background: rgba(16, 38, 53, 0.72);
    font-size: 0.72rem;
}

.contact-detail-icon .location-pin-outline {
    margin-bottom: 0.2rem;
    border-color: var(--color-cyan);
}

.contact-detail-icon .location-pin-outline::after {
    border-color: var(--color-cyan);
}

.contact-detail small {
    display: block;
    margin-bottom: 0.2rem;
    color: rgba(168, 180, 190, 0.62);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail div>span {
    color: var(--color-white);
    font-size: 0.8rem;
}

.contact-detail a:hover {
    color: var(--color-cyan);
}

.contact-socials {
    display: flex;
    gap: 0.65rem;
}

.contact-socials a {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(126, 152, 170, 0.25);
    border-radius: 0.55rem;
    color: rgba(248, 250, 252, 0.66);
    background: rgba(255, 255, 255, 0.06);
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-socials a:hover,
.contact-socials a:focus {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-3px);
}

.contact-form {
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px);
}

.contact-form .form-control {
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    color: var(--color-white);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 8.5rem;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: rgba(168, 180, 190, 0.55);
}

.contact-form .form-control:focus {
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 0.2rem rgba(0, 151, 178, 0.1);
}

.contact-submit {
    min-height: 3.1rem;
    border: 0;
    border-radius: 0.65rem;
    color: var(--color-navy-950);
    background: var(--color-cyan);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 151, 178, 0.18);
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-submit:hover,
.contact-submit:focus {
    color: var(--color-navy-950);
    background: var(--color-cyan);
}

/* Scientific Schedule page */
.schedule-page {
    background: var(--color-navy-950);
}

.inner-page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--color-navy-950);
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/backgrounds/schedule-bg.png?v=4");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.inner-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(1, 20, 41, 0) 0%, #010912 100%);
    pointer-events: none;
}

.inner-page-hero>.container {
    position: relative;
    z-index: 1;
}

.schedule-page-hero {
    min-height: 33rem;
    padding: 11rem 0 4.5rem;
}

.schedule-eyebrow {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--color-cyan);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.schedule-page-hero h1 {
    margin: 0;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.schedule-page-hero p {
    max-width: 40rem;
    margin: 1.5rem 0 0;
    color: #BDC8CD;
    font-size: clamp(0.75rem, 1vw, 1.5rem);
    line-height: 1.65;
}

.schedule-hero-panel {
    display: flex;
    width: min(100%, 32rem);
    align-items: flex-end;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: auto;
}

.schedule-hero-actions {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.schedule-hero-actions a {
    display: inline-flex;
    flex: 1 1 0;
    min-height: 3.5rem;
    padding: 0.8rem 0.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px solid rgba(0, 151, 178, 0.48);
    border-radius: 1.05rem;
    color: #D2E4FF;
    background: linear-gradient(145deg, #0d3150, #0b2944);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0.7rem 1.5rem rgba(0, 0, 0, 0.14);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.schedule-hero-actions a i {
    color: var(--color-cyan);
    font-size: 1.1rem;
}

.schedule-hero-actions a:last-child {
    color: var(--color-gold-light);
    border-color: rgba(228, 191, 122, 0.58);
}

.schedule-hero-actions a:last-child i {
    color: var(--color-gold-light);
}

.schedule-hero-actions a:hover,
.schedule-hero-actions a:focus {
    color: var(--color-white);
    border-color: var(--color-cyan);
    background: #123b5d;
    transform: translateY(-2px);
}

.schedule-hero-actions a:last-child:hover,
.schedule-hero-actions a:last-child:focus {
    color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.full-schedule {
    padding: 2.5rem 0 clamp(5rem, 8vw, 8rem);
    background: var(--color-navy-950);
}

.schedule-controls {
    display: grid;
    margin-bottom: 3rem;
    padding: 2rem 0;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 151, 178, 0.2);
    border-bottom: 1px solid rgba(0, 151, 178, 0.28);
}

.schedule-day-control {
    display: grid;
    gap: 0.75rem;
}

.schedule-control-heading,
.schedule-filter-field>span {
    color: #8F9DAA;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.schedule-day-tabs {
    flex: 0 0 auto;
    gap: 1rem;
}

.schedule-day-tabs .nav-link {
    display: flex;
    min-width: 8.6rem;
    min-height: 5.75rem;
    padding: 0.85rem 1.35rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(0, 151, 178, 0.24);
    border-radius: 1.05rem;
    color: rgba(214, 225, 238, 0.72);
    background: linear-gradient(145deg, #111d28, #0f1922);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.schedule-day-tabs .nav-link small {
    margin-bottom: 0.35rem;
    color: rgba(0, 151, 178, 0.55);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.schedule-day-tabs .nav-link.active {
    border-color: #174a77;
    color: var(--color-white);
    background: linear-gradient(145deg, #194c7d, #16426d);
    box-shadow: 0 0.8rem 1.8rem rgba(3, 21, 37, 0.25);
}

.schedule-day-tabs .nav-link.active small {
    color: var(--color-cyan);
}

.schedule-day-tabs .nav-link:hover {
    border-color: var(--color-cyan);
    color: var(--color-white);
    transform: translateY(-2px);
}

.schedule-filter-panel {
    padding: 1.25rem;
    border: 1px solid rgba(102, 213, 241, 0.16);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(14, 34, 51, 0.92), rgba(8, 23, 36, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.schedule-filter-heading {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.schedule-filter-heading p {
    margin: 0.25rem 0 0;
    color: #8F9DAA;
    font-size: 0.78rem;
}

.schedule-filter-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.schedule-filter-field {
    display: grid;
    min-width: 0;
    gap: 0.45rem;
}

.schedule-filter-field select,
.schedule-filter-field input {
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 2.4rem 0.65rem 0.9rem;
    border: 1px solid rgba(102, 213, 241, 0.22);
    border-radius: 0.75rem;
    color: #D6E1EE;
    background-color: #081C2E;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.schedule-search-control {
    position: relative;
    display: block;
}

.schedule-search-control i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0.9rem;
    color: #8F9DAA;
    font-size: 0.78rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.schedule-search-control input {
    padding-right: 0.9rem;
    padding-left: 2.35rem;
}

.schedule-search-control input::placeholder {
    color: #8F9DAA;
}

.schedule-filter-field select:hover,
.schedule-filter-field input:hover {
    border-color: rgba(102, 213, 241, 0.5);
}

.schedule-filter-field select:focus-visible,
.schedule-filter-field input:focus-visible {
    border-color: var(--color-cyan);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 151, 178, 0.16);
}

.schedule-filter-reset,
.schedule-empty-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.55rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(102, 213, 241, 0.2);
    border-radius: var(--radius-pill);
    color: #D2E4FF;
    background: rgba(8, 28, 46, 0.82);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.schedule-filter-reset:hover:not(:disabled),
.schedule-filter-reset:focus-visible,
.schedule-empty-reset:hover,
.schedule-empty-reset:focus-visible {
    color: #ffffff;
    border-color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.18);
}

.schedule-filter-reset:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.schedule-filter-status {
    margin: 1rem 0 0;
    color: #A7B8C7;
    font-size: 0.78rem;
}

.agenda-halls,
.agenda-row {
    display: grid;
    grid-template-columns: 5.5rem repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.agenda-halls {
    margin-bottom: 1rem;
    align-items: stretch;
}

.agenda-halls>span {
    display: flex;
    align-items: center;
    color: #BDC8CD;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.agenda-halls>div {
    display: flex;
    min-height: 5.7rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid transparent;
    border-radius: 1rem;
    color: rgba(216, 229, 244, 0.92);
    background: #171e24;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agenda-halls.is-hall-filtered {
    grid-template-columns: 5.5rem minmax(0, 1fr);
}

.agenda-halls div small {
    margin-top: 0.55rem;
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
}

.agenda-halls>div:nth-of-type(2) small {
    color: var(--color-gold-light);
}

.agenda-card-hall {
    display: none;
}

.schedule-empty-state {
    display: grid;
    min-height: 12rem;
    padding: 2.25rem 1rem;
    place-items: center;
    align-content: center;
    gap: 1rem;
    border: 1px dashed rgba(102, 213, 241, 0.22);
    border-radius: 1rem;
    color: #A7B8C7;
    text-align: center;
}

.schedule-empty-state p {
    margin: 0;
}

.agenda-row {
    margin-bottom: 1rem;
    align-items: stretch;
}

.tab-pane.is-hall-filtered .agenda-row {
    grid-template-columns: 5.5rem minmax(0, 1fr);
}

.agenda-row>time {
    padding-top: 0.9rem;
    color: rgba(102, 213, 241, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
}

.agenda-card {
    position: relative;
    display: flex;
    min-height: 19rem;
    padding: 1.5rem;
    overflow: hidden;
    flex-direction: column;
    border-radius: 1rem;
    background: #030D18;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.agenda-card>small {
    display: block;
    margin-bottom: 1.15rem;
    color: #BDC8CD;
    font-size: 0.75rem;
}

.agenda-card>small i {
    margin-right: 0.45rem;
    color: #BDC8CD;
}

.agenda-card h2 {
    max-width: 94%;
    margin: 0 0 1rem;
    color: #D2E4FF;
    font-size: clamp(1.15rem, 1.65vw, 1.5rem);
    font-weight: 800 !important;
    line-height: 1.22;
    font-family: "Montserrat", sans-serif !important;
}

.agenda-card>p {
    margin: 0 0 1.3rem;
    color: #BDC8CD;
    font-size: 1rem;
    line-height: 1.55;
}

.agenda-card>b {
    position: relative;
    display: flex;
    margin-top: auto;
    min-height: 3.2rem;
    padding: 1rem 0 0 3.35rem;
    justify-content: center;
    flex-direction: column;
    border-top: 1px solid rgba(0, 151, 178, 0.14);
    color: #D2E4FF;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.agenda-card>b small {
    margin-top: 0.25rem;
    color: #BDC8CD;
    font-size: 0.75rem;
    font-weight: 500;
}

.agenda-avatar {
    position: absolute;
    bottom: 1.35rem;
    left: 1.5rem;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(228, 191, 122, 0.38);
    border-radius: 50%;
    object-fit: cover;
}

.agenda-avatar+.agenda-avatar {
    left: 3.2rem;
}

.agenda-avatar-icon {
    display: grid;
    place-items: center;
    border-color: transparent;
    color: var(--color-cyan);
    background: #173551;
    font-size: 0.85rem;
}

.agenda-avatar-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.agenda-card>b.agenda-speakers-double {
    padding-left: 5.1rem;
}

.agenda-card:hover {
    border-color: rgba(0, 151, 178, 0.34);
    box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.agenda-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.65rem 0.9rem;
    border-radius: 0 1rem 0 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;

}

.badge-red {
    color: #FFB4AB;
    border: 1px solid rgba(255, 180, 171, 0.5);
    background: rgba(255, 180, 171, 0.2);
}

.badge-cyan {
    color: var(--color-cyan);
    border: 1px solid rgba(0, 151, 178, 0.5);
    background: rgba(0, 151, 178, 0.2);
}

.badge-gold {
    color: #E2C46E;
    border: 1px solid rgba(226, 196, 110, 0.5);
    background: rgba(226, 196, 110, 0.2);
}

.agenda-card .agenda-badge {
    border-top-color: transparent;
    border-right-color: transparent;
}

.keynote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.keynote-badge i {
    font-size: 0.72rem;
}

.agenda-row-featured .agenda-featured,
.agenda-row .agenda-featured {
    grid-column: 2 / -1;
}

.schedule-page .agenda-card>b .agenda-avatar {
    top: 0.75rem;
    bottom: auto;
    left: 0;
}

.schedule-page .agenda-card>b .agenda-avatar+.agenda-avatar {
    left: 1.7rem;
}

.schedule-page .agenda-card>.idl-session-speaker-link,
.schedule-page .agenda-card>.idl-chip {
    align-self: flex-start;
}

@media (min-width: 1200px) {
    .schedule-page .agenda-row>.agenda-card[data-hall="hall-a"] {
        grid-column: 2;
    }

    .schedule-page .agenda-row>.agenda-card[data-hall="hall-b"] {
        grid-column: 3;
    }

    .schedule-page .agenda-row>.agenda-card[data-hall="hall-c"] {
        grid-column: 4;
    }

    .schedule-page .agenda-row>.agenda-card[data-hall="all"],
    .schedule-page .tab-pane.is-hall-filtered .agenda-row>.agenda-card {
        grid-column: 2 / -1;
    }
}

.agenda-featured {
    min-height: 13rem;
}

.agenda-featured h2 {
    max-width: 80%;
    color: var(--color-gold-light);
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400 !important;
    line-height: 1.1;
    letter-spacing: 0.96px;
}

/* Speaker profile */
.speaker-profile-page {
    background: var(--color-navy-950);
}

.inner-content-page {
    --inner-hero-height: 34rem;
    min-height: 70rem;
}

.inner-content-page::before,
.inner-content-page::after {
    inset: 0 0 auto;
    height: var(--inner-hero-height);
    z-index: -1;
}

.speaker-profile {
    padding: 16rem 0 clamp(5rem, 8vw, 8rem);
}

.speaker-bio-panel,
.speaker-identity-card,
.lecture-card,
.abstract-form,
.abstract-tab-message {
    border: 1px solid rgba(0, 151, 178, 0.12);
    background: rgba(3, 18, 31, 0.93);
    box-shadow: 0 1.15rem 2.8rem rgba(0, 0, 0, 0.2);
}

.speaker-bio-panel {
    padding: 1.5rem;
    border-radius: 1rem;
    border: none;
    background: #030D18;
}

.speaker-bio-panel h2,
.speaker-bio-panel h3,
.speaker-section-heading h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.profile-eyebrow,
.profile-tabs .nav-link {
    font-family: var(--font-nav);
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}



.speaker-bio-panel h2 {
    margin: 0 0 1.3rem;
    color: var(--color-cyan);
    font-size: 1.25rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1E3A5F;
}

.speaker-bio-toggle {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    text-transform: inherit;
    cursor: default;
}

.speaker-bio-panel p {
    margin: 0 0 1rem;
    color: #A0AEC0;
    ;
    font-size: 0.875rem;
    line-height: 1.65;
}

.speaker-bio-panel h3 {
    margin: 1.55rem 0 0.8rem;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1E3A5F;
}

.speaker-metrics {
    display: grid;
    margin: 0;
    gap: 0.45rem;
}

.speaker-metrics>div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.speaker-metrics dt,
.speaker-metrics dd {
    margin: 0;
    color: rgba(225, 236, 244, 0.78);
    font-size: 0.875rem;
    font-weight: 500;
}


.speaker-metrics dd {
    color: var(--color-white);
}

.speaker-identity-card {
    position: relative;
    display: grid;
    grid-template-columns: 8.5rem minmax(0, 1fr) auto;
    min-height: 11rem;
    padding: 1.35rem 1.5rem;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 1rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(1, 9, 18, 0.49) 0%, rgba(1, 9, 18, 0.49) 100%);
    backdrop-filter: blur(17px);
}

/* .speaker-identity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    right: -60%;
    background: url(../img/backgrounds/bento-bg.png?v=4) right / cover no-repeat;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    opacity: 0.16;
} */

.speaker-photo-wrap {
    position: relative;
    z-index: 1;
    width: 8.5rem;
    aspect-ratio: 1;
    padding: 0.25rem;
    border: 2px solid var(--color-gold-light);
    border-radius: 50%;
}

.speaker-photo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: 34% center;
}

.speaker-identity-copy,
.speaker-socials {
    position: relative;
    z-index: 1;
}

.speaker-name-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.speaker-name-line h1 {
    margin: 0;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.25rem);
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
}

.speaker-name-line span {
    padding: 0.25rem 0.5rem;

    border-radius: 0.2rem;
    color: var(--color-cyan);
    border: 1px solid rgba(0, 151, 178, 0.50);
    background: rgba(0, 151, 178, 0.20);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.speaker-identity-copy>p {
    color: #A0AEC0;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.speaker-identity-copy>p i {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 0.45rem 0.15rem;
    border-radius: 50%;
    background: var(--color-cyan);
}

.speaker-facts {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    list-style: none;
}

.speaker-facts li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(210, 228, 255, 0.62);
    font-size: clamp(0.78rem, 1.2vw, 1rem);
    white-space: nowrap;
}

.speaker-facts i {
    color: var(--color-cyan);
    font-size: 0.875rem;
}

.speaker-facts strong {
    color: var(--color-white);
    font-size: 1.05em;
    font-weight: 800;
}

.speaker-rating span {
    margin-left: -0.25rem;
}

.speaker-socials {
    display: flex;
    align-self: start;
    gap: 0.45rem;
}

.speaker-socials a {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    color: #c9d6e2;
    border: 1px solid #1E3A5F;
    background: #0D2036;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.speaker-socials a:hover,
.speaker-socials a:focus {
    color: var(--color-navy-950);
    background: var(--color-cyan);
    transform: translateY(-2px);
}

.profile-tabs {
    margin-top: 1.5rem;
    border-bottom: 1px solid rgba(0, 151, 178, 0.22);
}

.profile-tabs .nav {
    gap: 1.5rem;
}

.profile-tabs .nav-link {
    position: relative;
    padding: 0.75rem 0;
    border: 0;
    color: #A0AEC0;
    background: transparent;
    font-size: 1.125rem;
}

.profile-tabs .nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.profile-tabs .nav-link:hover,
.profile-tabs .nav-link:focus,
.profile-tabs .nav-link.active {
    color: var(--color-cyan);
}

.profile-tabs .nav-link.active::before {
    transform: scaleX(1);
}

.speaker-section {
    padding-top: 2rem;
}

.speaker-section-heading {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.speaker-section-heading h2 {
    margin: 0;
    font-size: 1.5rem;
}

.speaker-section-heading h2 span {
    color: rgba(225, 236, 244, 0.42);
    font-size: 0.875rem;
}

.speaker-section-heading p {
    margin: 0;
    color: #A0AEC0;
    font-size: 0.875rem;
}

.speaker-section-heading p a {
    color: var(--color-cyan);
}

.lecture-card {
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 1.25rem;
    background: #020d18;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lecture-card:hover {
    box-shadow: 0 1.3rem 2.8rem rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 151, 178, 0.24);
    transform: translateY(-3px);
}

.lecture-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2.65 / 1;
    overflow: hidden;
    border-bottom: 2px solid rgba(36, 129, 169, 0.62);
    border-radius: 16px 16px 0 0;
}

.lecture-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px 16px 0 0;
    background: rgba(0, 151, 178, 0.1);
    pointer-events: none;
}

.lecture-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08) brightness(0.82);
    transition: transform 500ms ease, filter 500ms ease;
}

.lecture-card:hover .lecture-image img {
    filter: grayscale(1) contrast(1.06) brightness(0.9);
    transform: scale(1.025);
}

.lecture-image>span {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(164, 195, 218, 0.72);
    border-radius: 0.7rem;
    color: #d7e5f1;
    background: rgba(4, 20, 32, 0.72);
    backdrop-filter: blur(8px);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lecture-card h3 {
    margin: 0;
    padding: 1.25rem 1.25rem 1rem;
    color: var(--color-white);
    font-size: clamp(1rem, 1.55vw, 1.25rem);
    font-weight: 700 !important;
    line-height: 1.2;
    font-family: 'montserrat', sans-serif !important;
}

.lecture-card>div:last-child {
    display: flex;
    margin-inline: 1.25rem;
    padding: 1rem 0 1.25rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(63, 116, 151, 0.62);
    color: rgba(210, 228, 255, 0.72);
    font-size: 0.82rem;
}

.lecture-card time i {
    margin-right: 0.4rem;
    color: #9db4c8;
    font-size: 0.9rem;
}

.abstract-section {
    padding-top: clamp(3rem, 5vw, 4.5rem);
}

.abstract-section .speaker-section-heading {
    margin-bottom: 1.9rem;
}

.abstract-section .speaker-section-heading h2 {
    color: var(--color-white);
    letter-spacing: 0.035em;
}

.custom-select {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #a9bdcd;
    border-bottom: 2px solid #a9bdcd;
    pointer-events: none;
    transform: translateY(-68%) rotate(45deg);
    transition: border-color var(--transition);
}

.custom-select:focus-within::after {
    border-color: var(--color-cyan);
}

.custom-select select {
    padding-right: 3.25rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

select option {
    background-color: #030e19;
    color: #ecf3fa;
    padding: 0.5rem;
}

.submission-select select {
    min-height: 2.45rem;
    padding: 0.45rem 3.25rem 0.45rem 1rem;
    border: 1px solid rgba(54, 116, 161, 0.68);
    border-radius: var(--radius-pill);
    color: rgba(236, 243, 250, 0.92);
    background-color: #030e19;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.submission-select select:hover,
.submission-select select:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 0.18rem rgba(0, 151, 178, 0.08);
}

.abstract-form {
    padding: clamp(1.6rem, 3vw, 2rem);
    border: 0;
    border-radius: 1.25rem;
    background: #03101c;
}

.submission-owner {
    display: flex;
    margin-bottom: 1.8rem;
    padding-bottom: 1.35rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(53, 105, 141, 0.62);
}

.submission-owner>img {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    object-fit: cover;
    object-position: 82% center;
}

.submission-owner b,
.submission-owner small {
    display: block;
}

.submission-owner b {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
}

.submission-owner small {
    margin-top: 0.25rem;
    color: #A0AEC0;
    font-size: 0.75rem;
}

.abstract-form>label:not(.abstract-upload) {
    display: block;
    margin: 1.1rem 0 0.45rem;
    color: #A0AEC0;
    font-size: 0.875rem;
}

.abstract-form input[type="text"],
.abstract-form textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(54, 116, 161, 0.65);
    border-radius: 0.55rem;
    color: var(--color-white);
    background: #010b14;
    font-family: inherit;
    font-size: 0.88rem;
    outline: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.abstract-form textarea {
    min-height: 7.75rem;
    resize: vertical;
}

.abstract-form input::placeholder,
.abstract-form textarea::placeholder {
    color: rgba(168, 180, 190, 0.42);
}

.abstract-form input:focus,
.abstract-form textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 0.15rem rgba(0, 151, 178, 0.08);
}

.abstract-upload {
    display: flex;
    min-height: 7.5rem;
    margin-top: 1.7rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.7rem;
    border: 2px dashed rgba(46, 101, 151, 0.68);
    border-radius: 0.55rem;
    color: rgba(197, 214, 230, 0.7);
    background: #010b14;
    cursor: pointer;
    font-size: 0.88rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.abstract-upload i {
    color: #a6b9ca;
    font-size: 1.75rem;
}

.abstract-upload:hover,
.abstract-upload:focus-within {
    color: var(--color-white);
    border-color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.05);
}

.abstract-submit {
    min-height: 2.9rem;
    margin-top: 1.75rem;
    padding: 0.7rem 1.55rem;
    border: 1px solid rgba(0, 188, 215, 0.68);
    border-radius: 0.55rem;
    color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.08);
    font-size: 0.875rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 400 !important;
    font-family: var(--font-nav) !important;
}

.abstract-submit:hover,
.abstract-submit:focus {
    color: var(--color-navy-950);
    border-color: var(--color-cyan);
    background: var(--color-cyan);
}

.abstract-tab-message {
    margin-top: 2rem;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 0.8rem;
    text-align: center;
}

.abstract-tab-message>i {
    color: var(--color-cyan);
    font-size: 2rem;
}

.abstract-tab-message h2 {
    margin: 1rem 0 0.5rem;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
}

.abstract-tab-message p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.82rem;
}

/* Courses catalogue */
.courses-page {
    background: var(--color-navy-950);
}

.courses-catalog {
    padding: 12rem 0 clamp(5rem, 8vw, 8rem);
}

.courses-hero h1 {
    margin: 0;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: normal;
    text-transform: uppercase;
}



.courses-hero p {
    max-width: 44rem;
    margin: 1.3rem 0 0;
    color: rgba(205, 220, 232, 0.66);
    font-size: 0.82rem;
    line-height: 1.6;
}

.courses-divider {
    height: 1px;
    margin: 2.25rem 0 1.75rem;
    background: rgba(0, 151, 178, 0.17);
}

.courses-filter {
    padding: 0 1.15rem;

    color: rgba(211, 225, 237, 0.72);
}

.courses-filter-trigger-wrap {
    display: none;
}

.courses-filter-trigger {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(0, 185, 220, 0.55);
    border-radius: var(--radius-sm);
    color: var(--color-cyan);
    background: rgba(2, 18, 31, 0.88);
    font-weight: 700;
}

.filter-outline-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.courses-filter-trigger b {
    display: grid;
    min-width: 1.6rem;
    height: 1.6rem;
    margin-left: 0.35rem;
    padding-inline: 0.35rem;
    place-items: center;
    border-radius: 0.25rem;
    color: #001018;
    background: var(--color-cyan);
    font-size: 0.7rem;
}

.courses-filter .courses-filter-body {
    display: grid;
    padding: 0;
    gap: 2rem;
}

.courses-filter-close {
    display: none;
}

.filter-title {
    display: flex;
    min-height: 3.7rem;
    margin: 0;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-cyan);
    font-size: 1rem;
    font-weight: 700;
}

.filter-title>b {
    display: grid;
    min-width: 1.6rem;
    height: 1.6rem;
    margin-left: auto;
    padding-inline: 0.35rem;
    place-items: center;
    border-radius: 0.25rem;
    color: #001018;
    background: var(--color-cyan);
    font-size: 0.7rem;
}

.filter-group {
    margin: 0;
    margin-top: 1.5rem;
    border: 0;

}

.filter-group legend {
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
}

.filter-group legend button {
    display: flex;
    width: 100%;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border: 0;
    color: var(--color-white);
    background: transparent;
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-align: left;
    text-transform: uppercase;
}

.filter-group legend button i {
    color: #bdccda;
    font-size: 0.65rem;
    transition: color var(--transition), transform var(--transition);
}

.filter-group legend button:hover i,
.filter-group legend button:focus i {
    color: var(--color-cyan);
}

.filter-group legend button[aria-expanded="false"] i {
    transform: rotate(180deg);
}

.filter-group-content {
    display: grid;
    padding-top: 0;
    gap: 0.7rem;
}

.filter-group-content[hidden] {
    display: none;
}

.filter-group label {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.filter-group label small {
    color: rgba(205, 220, 232, 0.4);
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    border: 1px solid rgba(71, 120, 153, 0.35);
    border-radius: 0.2rem;
    appearance: none;
    background-color: #03111e;
    cursor: pointer;
}

.filter-group input[type="radio"] {
    border-radius: 50%;
}

.filter-group input[type="checkbox"]:checked {
    border-color: var(--color-cyan);
    background-color: var(--color-cyan);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23001018' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m3 8 3 3 7-7'/%3E%3C/svg%3E");
}

.filter-group input[type="radio"]:checked {
    border-color: var(--color-cyan);
    background: var(--color-cyan);
    box-shadow: inset 0 0 0 0.25rem #03111e;
}

.price-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.price-values>label {
    display: block;
    color: rgba(225, 236, 244, 0.82);
    font-weight: 500;
}

.price-values>label>span {
    display: flex;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.5rem 0.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    border-radius: 0.35rem;
    background: #03111e;
}

.price-values i {
    color: rgba(225, 236, 244, 0.82);
    font-size: 1.1rem;
    font-style: normal;
}

.price-values input[type="number"] {
    width: 3.5ch;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: rgba(225, 236, 244, 0.82);
    background: transparent;
    font: 400 1.1rem/1 var(--font-nav);
    appearance: textfield;
    -moz-appearance: textfield;
}

.price-values input[type="number"]::-webkit-inner-spin-button,
.price-values input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.price-values small {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(205, 220, 232, 0.5);
    font-size: 0.95rem;
    font-weight: 400;
}

.featured-courses>h2 {
    margin: 0 0 1rem;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}



.featured-course-card {
    display: grid;
    grid-template-columns: 8.1rem minmax(0, 1fr);
    min-height: 15rem;
    height: 100%;
    padding: 1.4rem;
    align-items: stretch;
    gap: 1.4rem;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 1rem;
    background: #020d18;
    isolation: isolate;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.featured-course-card--primary {
    border-color: rgba(0, 210, 235, 0.8);
    background: #031723;
}

.featured-course-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

.featured-course-card>img {
    width: 100%;
    height: 100%;
    min-height: 12.5rem;
    border-radius: 0.55rem;
    background: lightgray 50% / cover no-repeat;
    mix-blend-mode: luminosity;
    object-fit: cover;
}

.featured-course-card>div {
    display: flex;
    padding: 0.35rem 0;
    align-items: flex-start;
    flex-direction: column;
}

.featured-course-card small {
    color: #9caec2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.featured-course-card--primary small {
    color: var(--color-cyan);
}

.featured-course-card h3 {
    margin: 0.55rem 0 0.65rem;
    color: var(--color-white);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    font-weight: 700 !important;
    line-height: 1.2;
    font-family: var(--font-nav) !important;
}

.featured-course-card p {
    margin: 0 0 0.9rem;
    color: rgba(195, 211, 225, 0.65);
    font-size: 0.78rem;
    line-height: 1.55;
}

.featured-course-card a {
    display: inline-flex;
    min-height: 2rem;
    margin-top: auto;
    padding: 0.45rem 1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-cyan);
    border-radius: var(--radius-pill);
    color: var(--color-cyan);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.featured-course-card--primary a,
.featured-course-card a:hover,
.featured-course-card a:focus {
    color: #001018;
    background: var(--color-cyan);
}

.featured-course-card a:hover,
.featured-course-card a:focus {
    transform: translateY(-2px);
}

.course-toolbar {
    display: flex;
    margin: 2rem 0 0.85rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.course-search {
    position: relative;
    width: min(100%, 22rem);
}

.course-search i {
    position: absolute;
    top: 50%;
    left: 0.8rem;
    color: rgba(205, 220, 232, 0.42);
    font-size: 0.75rem;
    transform: translateY(-50%);
}

.course-search input {
    width: 100%;
    min-height: 2.45rem;
    padding: 11px 16px 12px 40px;
    border: none;
    border-radius: 0.5rem;
    color: #E2E8F0;
    background: #030D18;
    font-size: 0.875rem;
    outline: none;
}

.course-search input:focus {
    border-color: var(--color-cyan);
}

.course-sort {
    gap: 0.5rem;
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.course-sort::after {
    right: 0.75rem;
    width: 0.38rem;
    height: 0.38rem;
}

.course-sort select {
    min-height: 2.25rem;
    padding: 0.4rem 2.25rem 0.4rem 0.75rem;
    border: none;
    border-radius: 0.4rem;
    color: #E2E8F0;
    background: #03111e;
    font-family: inherit;
    font-size: 0.68rem;
    outline: none;
}

.course-results {
    margin: 0 0 1rem;
    color: rgba(205, 220, 232, 0.48);
    font-size: 0.68rem;
}

.course-card {
    display: flex;
    height: 100%;
    min-height: 27rem;
    overflow: hidden;
    flex-direction: column;
    border: 0;
    border-radius: 1rem;
    background: #020d18;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.16);
    transition: transform var(--transition), box-shadow var(--transition);
}

.course-card:hover {
    box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 151, 178, 0.22);
    transform: translateY(-4px);
}

.course-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: lightgray 50% / cover no-repeat;
    isolation: isolate;
}

.course-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 9, 18, 0.02), rgba(1, 9, 18, 0.45));
}

.course-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    background: lightgray 50% / cover no-repeat;
    mix-blend-mode: luminosity;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.82);
    transition: transform 450ms ease, filter 450ms ease;
}

.course-card:hover .course-card-image img {
    filter: contrast(1.04) brightness(0.9);
    transform: scale(1.035);
}

.course-card-image span {
    position: absolute;
    z-index: 1;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.38rem 0.58rem;
    border-radius: 0.1rem;
    color: #011429;
    background: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.course-card-body {
    display: flex;
    flex: 1;
    padding: 1.25rem;
    flex-direction: column;
}

.course-card-title {
    display: flex;
    min-height: 3.5rem;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

.course-card-title h2 {
    max-width: 72%;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 700 !important;
    line-height: 1.15;
    font-family: var(--font-nav) !important;
}

.course-card-title strong {
    flex: 0 0 auto;
    color: var(--color-cyan);
    font-size: 0.95rem;
    font-weight: 800;
}

.course-card-body ul {
    display: grid;
    margin: 1rem 0 1.1rem;
    padding: 0;
    gap: 0.65rem;
    color: rgba(205, 220, 232, 0.62);
    font-size: 0.75rem;
    list-style: none;
}

.course-card-body li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.course-card-body li i {
    width: 1rem;
    color: #8da8bb;
    text-align: center;
}

.course-instructor {
    display: flex;
    padding: 1rem 0 0.8rem;
    align-items: center;
    gap: 0.65rem;
    border-top: 1px solid rgba(64, 111, 143, 0.28);
    color: rgba(239, 245, 250, 0.86);
    font-size: 0.75rem;
}

.course-instructor img {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    object-fit: cover;
}

.course-card-footer {
    display: flex;
    margin-top: auto;
    padding-top: 0.65rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
}

.course-card-footer>span {
    color: var(--color-slate-400);
}

.course-card-footer>.seats-limited {
    color: #FB923C;
}

.course-card-footer>.seats-critical {
    color: #EF4444;
    font-weight: 700;
}

.course-card-footer a {
    color: var(--color-cyan);
    font-size: 0.78rem;
}

.course-card-footer a i {
    margin-left: 0.25rem;
    transition: transform var(--transition);
}

.course-card-footer a:hover i {
    transform: translateX(3px);
}

.course-pagination {
    display: flex;
    margin-top: 2.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.course-pagination button {
    display: grid;
    width: 2rem;
    height: 2rem;
    padding: 0;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    color: rgba(205, 220, 232, 0.58);
    background: transparent;
    font-size: 0.7rem;
}

.course-pagination button:hover,
.course-pagination button.active {
    color: #001018;
    border-color: var(--color-cyan);
    background: var(--color-cyan);
}

.course-pagination span {
    color: rgba(205, 220, 232, 0.38);
}

.courses-newsletter {
    display: flex;
    min-height: 9rem;
    padding: 2.75rem 0;
    align-items: center;
    background: #030D18;
}

.courses-newsletter .courses-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 7vw, 7rem);
}

.courses-newsletter h2 {
    margin: 0 0 0.45rem;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.875rem);
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.courses-newsletter p {
    margin: 0;
    color: var(--color-gold-light);
    font-size: 1rem;

}

.courses-newsletter form {
    display: flex;
    width: min(100%, 31rem);
    align-items: center;
    gap: 0.75rem;
}

.courses-newsletter input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.7rem 1.15rem;
    border: 0;
    border-radius: var(--radius-pill);
    color: #07131d;
    background: #f7f8fa;
    font-size: 0.8rem;
    outline: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: box-shadow var(--transition);
}

.courses-newsletter input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 151, 178, 0.18);
}

.courses-newsletter button {
    flex: 0 0 auto;
    min-width: 8rem;
    min-height: 2.75rem;
    padding: 0.7rem 1.4rem;
    border: 0;
    border-radius: var(--radius-pill);
    color: #FFFFFF;
    background: var(--color-cyan);
    box-shadow: 0 0.55rem 1.25rem rgba(0, 151, 178, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shared-layout-error {
    position: absolute;
    z-index: 20;
    width: 100%;
    padding: 1rem;
    color: var(--color-white);
    background: var(--color-navy-900);
    text-align: center;
}

/* Interactive venue map */
.venue-section {
    padding-top: clamp(4.5rem, 8vw, 7rem);

    background: var(--color-navy-950);
}

.venue-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.venue-heading>span {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--color-cyan);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.venue-heading .section-title {
    margin-bottom: 1rem;
    font-family: 'montserrat', sans-serif !important;
    font-weight: 800 !important;
}

.venue-map {
    height: clamp(25rem, 46vw, 38rem);
    overflow: hidden;
    border-top: 1px solid rgba(0, 151, 178, 0.16);
    border-bottom: 1px solid rgba(0, 151, 178, 0.16);
    background: #111;
}

.venue-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) brightness(0.58) contrast(1.18);
    transition: filter 350ms ease;
}

.venue-map:hover iframe,
.venue-map:focus-within iframe {
    filter: grayscale(0.85) brightness(0.72) contrast(1.08);
}

/* Footer */
.site-footer {
    padding: clamp(4rem, 7vw, 6.5rem) 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #080808;
}

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    text-transform: uppercase;
}

.footer-brand b {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-brand span {
    margin-top: 0.55rem;
    color: var(--color-cyan);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.footer-about,
.footer-newsletter-copy {
    max-width: 15rem;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    line-height: 1.6;
}

.site-footer h2 {
    margin-bottom: 1.35rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: "Montserrat", sans-serif !important;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--color-cyan);
}

.footer-event {
    display: grid;
    gap: 0.85rem;
}

.footer-event p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-event i {
    width: 0.85rem;
    color: var(--color-white);
    text-align: center;
}

.footer-event .location-pin-outline {
    flex-basis: 0.8rem;
    width: 0.8rem;
    height: 0.8rem;
    margin-bottom: 0.2rem;
    border-color: rgba(248, 250, 252, 0.75);
}

.footer-event .location-pin-outline::after {
    border-color: rgba(248, 250, 252, 0.75);
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.footer-socials a {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(126, 152, 170, 0.22);
    border-radius: 0.4rem;
    color: rgba(248, 250, 252, 0.6);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.85rem;
    transition: color var(--transition), border-color var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
}

.footer-newsletter-copy {
    margin-top: 0;
}

.footer-newsletter {
    display: flex;
    gap: 0.45rem;
    margin-top: 1rem;
}

.footer-newsletter input {
    min-width: 0;
    width: 100%;
    height: 2.7rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(126, 152, 170, 0.22);
    border-radius: 0.45rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.055);
    font-size: 1rem;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(168, 180, 190, 0.48);
    font-size: 1rem;
}

.footer-newsletter input:focus {
    border-color: var(--color-cyan);
}

.footer-newsletter button {
    flex: 0 0 auto;
    height: 2.7rem;
    padding-inline: 1rem;
    border: 0;
    border-radius: 0.45rem;
    color: var(--color-navy-950);
    background: var(--color-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--transition);
}

.footer-newsletter button:hover,
.footer-newsletter button:focus {
    background: var(--color-cyan);
}

.footer-bottom {
    display: flex;
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: 1.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-bottom>div {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Shared responsive footer styles */
@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 3.75rem;
    }

    .footer-about {
        max-width: 18rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-brand b {
        font-size: 1.05rem;
    }

    .site-footer .footer-brand span,
    .site-footer h2,
    .site-footer .footer-bottom p,
    .site-footer .footer-bottom a {
        font-size: var(--text-xs);
    }

    .site-footer .footer-about,
    .site-footer .footer-newsletter-copy,
    .site-footer .footer-nav a,
    .site-footer .footer-event p,
    .site-footer .footer-newsletter input,
    .site-footer .footer-newsletter input::placeholder {
        font-size: var(--text-sm);
    }

    .site-footer .footer-newsletter button {
        font-size: 0.75rem;
    }

    .site-footer .footer-socials a {
        font-size: 0.78rem;
    }
}

@media (max-width: 374.98px) {
    .footer-newsletter {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }
}

:focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 3px;
}

/* Glass light sweep for interactive buttons and button-like links */
:is(.btn-register,
    .navbar-toggler,
    .event-action,
    .quick-link-card,
    .schedule-tabs .nav-link,
    .schedule-button,
    .workshops-view-all,
    .moments-button,
    .experience-button,
    .contact-submit,
    .abstract-submit,
    .featured-course-card a,
    .course-card-footer a,
    .course-pagination button,
    .courses-newsletter button,
    .schedule-hero-actions a,
    .schedule-day-tabs .nav-link,
    .schedule-filter-reset,
    .schedule-empty-reset,
    .footer-newsletter button) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

:is(.btn-register,
    .navbar-toggler,
    .event-action,
    .quick-link-card,
    .schedule-tabs .nav-link,
    .schedule-button,
    .workshops-view-all,
    .moments-button,
    .experience-button,
    .contact-submit,
    .abstract-submit,
    .featured-course-card a,
    .course-card-footer a,
    .course-pagination button,
    .courses-newsletter button,
    .schedule-hero-actions a,
    .schedule-day-tabs .nav-link,
    .schedule-filter-reset,
    .schedule-empty-reset,
    .footer-newsletter button)::after {
    content: "";
    position: absolute;
    inset: -50% auto -50% -75%;
    z-index: -1;
    width: 42%;
    pointer-events: none;
    background: linear-gradient(105deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.1) 65%,
            transparent 100%);
    filter: blur(0.5px);
    transform: skewX(-18deg);
    transition: left 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

:is(.btn-register,
    .navbar-toggler,
    .event-action,
    .quick-link-card,
    .schedule-tabs .nav-link,
    .schedule-button,
    .workshops-view-all,
    .moments-button,
    .experience-button,
    .contact-submit,
    .abstract-submit,
    .featured-course-card a,
    .course-card-footer a,
    .course-pagination button,
    .courses-newsletter button,
    .schedule-hero-actions a,
    .schedule-day-tabs .nav-link,
    .schedule-filter-reset,
    .schedule-empty-reset,
    .footer-newsletter button):is(:hover, :focus-visible)::after {
    left: 135%;
}

/* Course details page */
.course-details-page {
    background: var(--color-navy-950);
}

.course-detail-main {
    padding: 12rem 0 clamp(5rem, 8vw, 8rem);
}



.course-detail-hero {
    margin-bottom: 2.5rem;
}

.course-detail-mobile-badges {
    display: none;
}

.course-detail-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.course-detail-hero h1 {

    margin: 0;
    color: var(--color-gold-light);
    font-size: clamp(3.25rem, 6.5vw, 5.75rem);
    letter-spacing: 0.02em;
    line-height: 0.96;
    text-transform: uppercase;
}

.course-detail-hero>p {
    max-width: 50rem;
    margin: 1.25rem 0 0;
    color: rgba(205, 220, 232, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
}

.course-detail-meta {
    display: flex;
    margin-top: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2.75rem;
    color: rgba(205, 220, 232, 0.64);
    font-size: 0.8rem;
}

.course-detail-author {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-white);
}

.course-detail-author img {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    object-fit: cover;
}

.course-detail-author span {
    display: grid;
    gap: 0.15rem;
}

.course-detail-author small {
    color: rgba(205, 220, 232, 0.48);
    font-size: 0.72rem;
}

.course-detail-author strong {
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 600;
}

.course-detail-meta>span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.course-detail-meta>span i {
    color: var(--color-gold-light);
}

.course-detail-rating {
    gap: 0.65rem !important;
}

.course-detail-stars {
    display: inline-flex;
    gap: 0.12rem;
}

.course-detail-stars i {
    color: var(--color-rating) !important;
    font-size: 0.86rem;
}

.course-detail-rating>strong {
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 700;
}

.course-detail-rating>small {
    color: rgba(205, 220, 232, 0.55);
    font-size: 0.75rem;
}

.course-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(17rem, 0.92fr);
    align-items: start;
    gap: 1.5rem 2rem;
}

.course-detail-media {
    position: relative;
    min-height: 25rem;
    overflow: hidden;
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 1rem;
    background: #020d18;
}

.course-detail-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 8, 16, 0.56));
    pointer-events: none;
}

.course-detail-media>img {
    width: 100%;
    height: 100%;
    min-height: 25rem;
    object-fit: cover;
    filter: saturate(0.55) contrast(1.08) brightness(0.72);
}

.course-detail-media>button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 4rem;
    height: 4rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-cyan);
    box-shadow: 0 0 0 0.65rem rgba(0, 151, 178, 0.13);
    transform: translate(-50%, -50%);
    transition: background var(--transition), box-shadow var(--transition);
}

.course-detail-media>button:hover,
.course-detail-media>button:focus-visible {
    background: var(--color-cyan);
    box-shadow: 0 0 0 0.85rem rgba(0, 151, 178, 0.18);
}

.course-detail-media>button i {
    margin-left: 0.2rem;
}



.course-booking-column {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.course-booking-stack {
    position: sticky;
    top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.course-booking-card,
.course-includes,
.course-share-card {
    padding: 1.4rem;
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 1rem;
    background: rgba(2, 15, 27, 0.94);
    box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.28);
}

.course-booking-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.course-booking-price strong {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
}

.course-booking-price del {
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.course-booking-price small {
    margin-left: auto;
    padding: 0.3rem 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.25rem;
    color: #F87171;
    background: rgba(239, 68, 68, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-offer-timer {
    display: flex;
    margin: 1.1rem 0 0;
    align-items: center;
    gap: 0.5rem;
    color: #F87171;
    font-size: 0.875rem;
}

.course-booking-facts,
.course-includes ul,
.course-instructor-profile ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-booking-facts {
    display: grid;
    padding: 1.25rem 0;
    gap: 1rem;
}

.course-booking-facts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.course-booking-facts li span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.course-booking-facts img {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    object-fit: contain;
}

.course-booking-facts strong {
    color: #FFFFFF;
    font-size: 0.875em;
    font-weight: 500;
    text-align: right;
}

.course-cart-button,
.course-buy-button {
    display: flex;
    width: 100%;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-cyan);
    border-radius: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.course-cart-button {
    color: var(--color-white);
    background: var(--color-cyan);
}

.course-cart-button:hover,
.course-cart-button:focus {
    color: var(--color-white);
    background: var(--color-cyan);
}

.course-buy-button {
    margin-top: 0.6rem;
    color: var(--color-cyan);
    background: transparent;
}

.course-buy-button:hover,
.course-buy-button:focus {
    color: var(--color-white);
    background: var(--color-cyan);
}

.course-booking-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.course-booking-actions button {
    display: inline-flex;
    min-height: 2.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #1E293B;
    border-radius: 1rem;
    color: #E2E8F0;
    background: #000F21;
    font-size: 0.875rem;
}

.gift-outline-icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.course-buy-cart-icon,
.course-save-icon {
    display: none;
}

.course-status-note {
    margin: 0.85rem 0 0;
    color: var(--color-slate-400);
    font-size: 0.75rem;
    text-align: center;
}

.course-includes {
    margin: 0;
}

.course-includes h2 {
    margin: 0 0 1.1rem;
    color: var(--color-white);
    font-family: var(--font-nav) !important;
    font-size: 1rem;
    font-weight: 700 !important;
}

.course-includes ul {
    display: grid;
    gap: 0.85rem;
}

.course-includes li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.course-includes li>img {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    object-fit: contain;
}

.course-share-card {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.course-share-card h2 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-nav) !important;
    font-size: 0.7rem;
    font-weight: 500 !important;
}

.course-share-card>div {
    display: flex;
    gap: 0.35rem;
}

.course-share-card a {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(126, 152, 170, 0.2);
    border-radius: 0.4rem;
    color: rgba(205, 220, 232, 0.68);
    font-size: 0.68rem;
    transition: color var(--transition), border-color var(--transition);
}

.course-share-card a:hover,
.course-share-card a:focus {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.course-detail-content {
    min-width: 0;
}

.course-detail-tabs {
    display: flex;
    margin-bottom: 2rem;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 151, 178, 0.16);
    gap: 1.75rem;
    scrollbar-width: none;
}

.course-detail-tabs a {
    position: relative;
    flex: 0 0 auto;
    padding: 0.9rem 0;
    color: rgba(205, 220, 232, 0.52);
    font-size: 1rem;
    font-weight: 500;
}

.course-detail-tabs a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--color-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.course-detail-tabs a:hover,
.course-detail-tabs a.active {
    color: var(--color-cyan);
}

.course-detail-tabs a:hover::after,
.course-detail-tabs a.active::after {
    transform: scaleX(1);
}

.course-detail-section {
    padding: 0 0 2.5rem;
}

.course-detail-section+.course-detail-section {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 151, 178, 0.12);
}

.course-detail-section h2,
.course-detail-section-heading h2,
.related-courses>.course-detail-section-heading h2 {
    margin: 0 0 1.1rem;
    color: var(--color-white);
    font-size: clamp(1.6rem, 3vw, 1.5rem);
    letter-spacing: 0.035em;
    text-transform: uppercase;
    font-weight: 400 !important;
}

.course-detail-section>p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.8;
}

.course-detail-section h3 {
    margin: 2rem 0 1rem;
    color: var(--color-white);
    font-family: var(--font-nav) !important;
    font-size: 0.84rem;
    font-weight: 700 !important;
}

.course-learning-card {
    margin-top: 2rem;
    padding: 1.4rem;
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 0.85rem;
    background: rgba(2, 15, 27, 0.52);
}

.course-learning-card h3 {
    display: flex;
    margin: 0 0 1.25rem;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
}

.course-learning-card h3 i {
    color: var(--color-cyan);
    font-size: 1.25rem;
}

.course-learning-grid,
.course-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.75rem;
}

.course-learning-grid>p {
    display: flex;
    margin: 0;
    align-items: flex-start;
    gap: 0.65rem;
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.55;
}

.course-learning-grid i {
    margin-top: 0.12rem;
    color: var(--color-cyan);
    font-size: 0.875rem;
}

.course-learning-grid span {
    display: block;
}

.course-audience-grid {
    margin-top: 2.25rem;
    gap: 2rem 2.5rem;
}

.course-audience-grid>div {
    padding: 0;
}

.course-audience-grid h3 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
}


.course-audience-grid ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0.8rem;
    list-style: none;
}

.course-audience-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.course-audience-list li i {
    margin-top: 0.22rem;
    color: var(--color-cyan);
    font-size: 0.875rem;
}

.course-requirements-list li i {
    margin-top: 0.38rem;
    color: rgba(205, 220, 232, 0.72);
    font-size: 0.25rem;
}

.course-detail-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.course-curriculum>.course-detail-section-heading {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 151, 178, 0.16);
}

.course-curriculum>.course-detail-section-heading h2 {
    margin: 0;
}

.curriculum-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.curriculum-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

.curriculum-stats i {
    color: #94A3B8;
}

.curriculum-module {
    margin-top: 1rem;
    padding: 0 1.15rem;
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 0.85rem;
    background: rgba(2, 15, 27, 0.52);
}

.curriculum-module summary {
    display: flex;
    min-height: 4.2rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

.curriculum-module summary::-webkit-details-marker {
    display: none;
}

.curriculum-module summary::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin: 0 0.25rem 0 0.15rem;
    border-right: 1px solid rgba(205, 220, 232, 0.8);
    border-bottom: 1px solid rgba(205, 220, 232, 0.8);
    transform: rotate(-45deg);
    transition: border-color var(--transition), transform var(--transition);
}

.curriculum-module[open] summary::before {
    border-color: var(--color-cyan);
    transform: translateY(-0.1rem) rotate(45deg);
}

.curriculum-module summary>span {
    margin-right: auto;
}

.curriculum-module summary small {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
}

.curriculum-module summary small b {
    color: #94A3B8;
    font-size: 0.875rem;
}

.curriculum-module ol {
    display: grid;
    margin: 0 0 1.2rem;
    padding: 0.9rem 0.9rem 0 1.8rem;
    border-top: 1px solid rgba(0, 151, 178, 0.12);
    gap: 0.7rem;
    list-style: none;
}

.curriculum-module li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #E2E8F0;
    font-size: 0.875rem;
}

.curriculum-module li span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.curriculum-module li i {
    color: #94A3B8;
}

.curriculum-module time {
    color: #94A3B8;
}

.course-instructor-profile {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    padding: 1.75rem;
    gap: 1.75rem;
    border: 1px solid rgba(0, 151, 178, 0.14);
    border-radius: 1rem;
    background: rgba(2, 15, 27, 0.7);
}

.course-instructor-profile>img {
    width: 6.5rem;
    aspect-ratio: 1;
    border: 2px solid var(--color-cyan);
    border-radius: 50%;
    object-fit: cover;
}

.course-instructor-profile h3 {
    margin: 0;
    font-size: 1.25rem;
}

.course-instructor-profile>div>span {
    display: block;
    margin-top: 0.25rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

.course-instructor-profile p {
    margin: 1rem 0 0;
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.course-instructor-profile ul {
    display: flex;
    margin-top: 0.85rem;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
}

.course-instructor-profile li {
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

.course-instructor-profile li i {
    margin-right: 0.35rem;
    color: var(--color-slate-400);
}

.course-instructor-profile li:first-child i {
    color: var(--color-rating);
}

.course-instructor-profile li strong {
    color: var(--color-white);
    font-weight: 500;
}

.course-reviews {
    scroll-margin-top: 2rem;
}

.course-reviews-heading {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.course-reviews-heading h2 {
    margin-bottom: 0.35rem;
}

.course-reviews-heading p {
    margin: 0;
    color: rgba(205, 220, 232, 0.52);
    font-size: 0.875rem;
}

.course-reviews-navigation {
    display: flex;
    gap: 0.5rem;
}

.course-reviews-navigation button {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    align-items: center;
    place-items: center;
    border: 1px solid rgba(0, 151, 178, 0.28);
    border-radius: 50%;
    color: var(--color-cyan);
    background: rgba(2, 15, 27, 0.72);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.course-reviews-navigation button:hover,
.course-reviews-navigation button:focus {
    border-color: var(--color-cyan);
    color: #001018;
    background: var(--color-cyan);
}

.course-reviews-navigation button.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.course-review-stars {
    display: flex;
    gap: 0.14rem;
    color: var(--color-rating);
    font-size: 0.68rem;
}

.course-reviews-swiper {
    padding-bottom: 2rem;
}

.course-reviews-swiper .swiper-slide {
    height: auto;
}

.course-reviews-pagination .swiper-pagination-bullet {
    width: 0.42rem;
    height: 0.42rem;
    background: rgba(205, 220, 232, 0.35);
    opacity: 1;
}

.course-reviews-pagination .swiper-pagination-bullet-active {
    width: 1.25rem;
    border-radius: var(--radius-pill);
    background: var(--color-cyan);
}

.course-review-card {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    padding: 1.15rem;
    gap: 0.9rem;
    border: 1px solid rgba(126, 152, 170, 0.14);
    border-radius: 0.75rem;
    background: rgba(2, 15, 27, 0.42);
}

.course-review-card>img {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(0, 151, 178, 0.52);
    border-radius: 50%;
    object-fit: cover;
}

.course-review-content header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.course-review-content h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 1.25rem;
}

.course-review-content header span,
.course-review-content time {
    color: rgba(205, 220, 232, 0.42);
    font-size: 0.875rem;
}

.course-review-content .course-review-stars {
    margin-top: 0.55rem;
}

.course-review-content p {
    margin: 0.7rem 0;
    color: rgba(205, 220, 232, 0.62);
    font-size: 0.875rem;
    line-height: 1.65;
}

.course-review-content button {
    padding: 0;
    border: 0;
    color: rgba(205, 220, 232, 0.48);
    background: transparent;
    font-size: 0.875rem;
}

.course-review-content button:hover,
.course-review-content button:focus {
    color: var(--color-cyan);
}

.course-review-content button span {
    margin-left: 0.2rem;
}

.related-courses {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 151, 178, 0.12);
}

.related-courses>.course-detail-section-heading {
    margin-bottom: 1rem;
}

.related-courses>.course-detail-section-heading h2 {
    margin: 0;
}

.related-courses>.course-detail-section-heading a {
    color: var(--color-cyan);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.related-course-card {
    display: flex;
    min-height: 22rem;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(126, 152, 170, 0.14);
    border-radius: 0.9rem;
    color: var(--color-white);
    background: #020d18;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.related-course-card:hover,
.related-course-card:focus {
    color: var(--color-white);
    border-color: rgba(0, 151, 178, 0.45);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.related-course-image {
    position: relative;
    width: calc(100% - 2rem);
    margin: 1rem 1rem 0;
    aspect-ratio: 1.62 / 1;
    overflow: hidden;
    border-radius: 0.25rem;
}

.related-course-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.55) contrast(1.05) brightness(0.78);
}

.related-course-image>span {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #1E293B;
    color: #FFFFFF;
    background: rgba(0, 15, 33, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 0.25rem;
    backdrop-filter: blur(8px);
}

.related-course-card>div {
    display: flex;
    flex: 1;
    padding: 0.9rem 1rem 1.1rem;
    flex-direction: column;
}

.related-course-card h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-nav) !important;
    font-size: 0.86rem;
    font-weight: 700 !important;
    line-height: 1.45;
}

.related-course-meta {
    display: flex;
    margin-top: auto;
    padding-top: 1.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.related-course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(205, 220, 232, 0.48);
    font-size: 0.6rem;
}

.related-course-meta span i {
    color: var(--color-rating);
}

.related-course-meta small {
    color: rgba(205, 220, 232, 0.42);
    font-size: 0.55rem;
}

.related-course-meta strong {
    color: var(--color-cyan);
    font-size: 0.9rem;
}

/* Cart page */
.cart-page {
    background: var(--color-navy-950);
}

.cart-main {
    min-height: 100vh;
    padding: 9.5rem 0 5.5rem;
}

.cart-heading {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 151, 178, 0.18);
}

.cart-heading p,
.cart-section-label h2,
.saved-courses>h2,
.cart-summary h2,
.cart-includes h2 {
    color: var(--color-gold);
    font-family: var(--font-nav) !important;
    font-size: 0.75rem;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-heading p {
    margin: 0 0 0.45rem 2.05rem;
}

.cart-heading h1 {
    display: flex;
    margin: 0;
    align-items: center;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-transform: uppercase;
}

.cart-heading h1 i {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    margin-right: 0.85rem;
    flex: 0 0 2.35rem;
    place-items: center;
    border: 1px solid rgba(0, 151, 178, 0.52);
    border-radius: 50%;
    color: rgba(248, 250, 252, 0.9);
    background: rgba(2, 17, 29, 0.72);
    font-size: 0.65rem;
    box-shadow: inset 0 0 1rem rgba(0, 151, 178, 0.04);
}

.cart-checkout-layout {
    display: grid;
    margin-top: 1.3rem;
    grid-template-columns: minmax(0, 2fr) minmax(18rem, 0.9fr);
    align-items: start;
    gap: 2rem;
}

.cart-section-label {
    display: flex;
    margin-bottom: 0.55rem;
    align-items: center;
    justify-content: space-between;
}

.cart-section-label h2,
.saved-courses>h2,
.cart-summary h2,
.cart-includes h2 {
    margin: 0;
}

.cart-section-label>span {
    color: rgba(168, 180, 190, 0.72);
    font-size: 0.7rem;
}

.cart-items {
    display: grid;
    gap: 0.65rem;
}

.cart-item {
    position: relative;
    display: grid;
    min-height: 6.4rem;
    padding: 1rem;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border: 1px solid #16324A;
    background: #030D18;
    border-radius: 1.125rem;

    transition: border-color var(--transition), opacity var(--transition), transform var(--transition);
}

.cart-item:hover {
    border-color: rgba(0, 151, 178, 0.52);
}

.cart-item.is-removing {
    opacity: 0;
    transform: translateX(-1rem);
}

.cart-item>img {
    width: 5.2rem;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.cart-item-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.cart-item-tag,
.saved-course>div>span {
    display: inline-block;
    margin-bottom: 0.3rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(15, 158, 183, 0.40);
    background: rgba(15, 158, 183, 0.12);
    border-radius: 999px;
    color: var(--color-cyan);

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.cart-item-tag--gold {
    border-color: rgba(201, 154, 75, 0.45);
    color: var(--color-gold-light);
    background: rgba(201, 154, 75, 0.1);
}

.cart-item-copy h3,
.saved-course h3 {
    margin: 0 0 0.25rem;
    color: #FCFBFB;
    font-family: var(--font-nav) !important;
    font-size: 1rem;
    font-weight: 600 !important;
    line-height: 1.35;
}

.cart-item-copy p,
.saved-course p {
    margin: 0;
    color: #8AA0B3;
    font-size: 0.75rem;
}

.cart-item-copy p span {
    margin-inline: 0.3rem;
    color: rgba(0, 151, 178, 0.7);
}

.cart-item-copy strong,
.saved-course p {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-gold-light);
    font-size: 1.25rem;
    font-weight: 400;
}

.cart-item-remove {
    position: absolute;
    top: 0.55rem;
    right: 0.65rem;
    padding: 0.15rem;
    border: 0;
    color: rgba(168, 180, 190, 0.75);
    background: transparent;
    font-size: 0.65rem;
    transition: color var(--transition), transform var(--transition);
}

.cart-item-remove:hover,
.cart-item-remove:focus-visible {
    color: var(--color-gold-light);
    transform: rotate(90deg);
}

.cart-quantity {
    position: absolute;
    right: 0.7rem;
    bottom: 0.55rem;
    display: flex;
    overflow: hidden;
    align-items: center;
    min-width: 5.5rem;
    height: 2rem;
    justify-content: center;
    border: 1px solid rgba(0, 151, 178, 0.42);
    border-radius: var(--radius-pill);
    background: rgba(1, 9, 18, 0.88);
}

.cart-quantity button,
.cart-quantity output {
    display: grid;
    width: 1.8rem;
    height: 100%;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    line-height: 1;
}

.cart-quantity button {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.cart-quantity output {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-item-price {
    display: flex;
    margin-top: 0.35rem;
    align-items: center;
    gap: 0.45rem;
}

.cart-item-price strong {
    margin-top: 0;
}

.cart-item-price del {
    color: rgba(168, 180, 190, 0.55);
    font-size: 0.6rem;
}

.cart-item-price>span {
    padding: 0.12rem 0.35rem;
    border-radius: 0.25rem;
    color: #FFA2A2;
   background: rgba(251, 44, 54, 0.15);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.cart-quantity button:hover,
.cart-quantity button:focus-visible {
    color: var(--color-white);
    background: rgba(0, 151, 178, 0.1);
}

.cart-promo {
    display: flex;
    margin-top: 0.8rem;
    padding: 0.35rem 0.4rem 0.35rem 0.85rem;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(0, 151, 178, 0.2);
    border-radius: 0.5rem;
    background: rgba(2, 13, 24, 0.7);
}

.cart-promo label {
    color: rgba(168, 180, 190, 0.58);
    font-size: 0.65rem;
}

.cart-promo input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--color-white);
    background: transparent;
    font-size: 0.875rem;
    border-radius: 0.75rem;
}

.cart-promo button {
    padding: 0.38rem 0.75rem;
    border: 1px solid rgba(212, 174, 110, 0.50);
    border-radius: 0.5rem;
    color: var(--color-gold-light);
    background: transparent;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-promo.is-applied {
    border-color: rgba(0, 151, 178, 0.6);
}

.saved-courses {
    margin-top: 1.7rem;
}

.saved-courses>h2 {
    margin-bottom: 0.7rem;
}

.saved-courses>h2 span {
    color: rgba(168, 180, 190, 0.65);
}

.saved-course {
    display: grid;
    min-height: 4.5rem;
    margin-bottom: 0.55rem;
    padding: 0.55rem;
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(0, 151, 178, 0.18);
    border-radius: 0.75rem;
    background: rgba(2, 13, 24, 0.62);
}

.saved-course>img {
    width: 4rem;
    height: 3.35rem;
    object-fit: cover;
    border-radius: 0.3rem;
}

.saved-course div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.saved-course p small {
    margin-left: 0.35rem;
    color: rgba(168, 180, 190, 0.45);
    font-size: 0.52rem;
    text-decoration: line-through;
}

.saved-course>button {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(201, 154, 75, 0.55);
    border-radius: 50%;
    color: var(--color-gold-light);
    background: transparent;
    font-size: 0.65rem;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.saved-course>button:hover,
.saved-course>button:focus-visible,
.saved-course>button.is-added {
    color: var(--color-navy-950);
    background: var(--color-gold-light);
    transform: scale(1.06);
}

.cart-summary-column {
    position: sticky;
    top: 6.5rem;
    display: grid;
    gap: 0.8rem;
}

.cart-summary,
.cart-includes {
    padding: 1.25rem;
    border-radius: 1.125rem;
    border: 1px solid #16324A;
    background: #030D18;
}

 .cart-includes{
    border: 1px solid rgba(212, 174, 110, 0.20);

 }

.cart-summary h2,
.cart-includes h2 {
    margin-bottom: 1rem;
}

.cart-summary dl {
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.875rem;
}

.cart-summary dl>div,
.cart-total {
    display: flex;
    margin-bottom: 0.45rem;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(168, 180, 190, 0.8);
    font-size: 0.875rem;
}

.cart-summary dd {
    margin: 0;
    color: var(--color-white);
}

.cart-summary .cart-saving {
    color: var(--color-cyan);
}

.cart-total {
    margin: 0;
    padding: 0.95rem 0;
    align-items: center;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-total strong {
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
}

.cart-checkout {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0.75rem;
    color: #1A1206;
    background: var(--color-cyan);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: filter var(--transition), transform var(--transition);
}

.cart-checkout:hover,
.cart-checkout:focus-visible {
    filter: brightness(1.14);
    transform: translateY(-1px);
}

.cart-summary>p {
    margin: 0.55rem 0 0;
    color: #8AA0B3;
    font-size: 0.75rem;
    text-align: center;
}

.cart-trust-grid {
    display: grid;
    margin: 1rem -1.2rem -1.2rem;
    padding: 1rem 0.9rem 1.15rem;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 0.75rem;
    border-top: 1px solid rgba(0, 151, 178, 0.12);
    border-radius: 0 0 0.65rem 0.65rem;
    background: rgba(2, 15, 27, 0.7);
}

.cart-trust-grid span {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    justify-items: center;
    gap: 0.55rem;
    color: var(--color-gold-light);
    text-align: center;
}

.cart-trust-grid i {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    place-items: center;
    border: 1px solid rgba(201, 154, 75, 0.08);
    border-radius: 50%;
    color: var(--color-gold-light);
    background: rgba(201, 154, 75, 0.08);
    font-size: 0.72rem;
}

.cart-trust-grid small {
    color: rgba(168, 180, 190, 0.72);
    font-size: 0.55rem;
    line-height: 1.25;
    white-space: nowrap;
}

.cart-includes ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0.45rem;
    list-style: none;
}

.cart-includes li {
    color: rgba(205, 220, 232, 0.7);
    font-size: 0.75rem;
}

.cart-includes li i {
    width: 1rem;
    color: var(--color-cyan);
}

.cart-page .related-courses {
    margin-top: 5rem;
}

/* ===== Merged page styles from main2.css (scoped to original pages) ===== */
:where(body.about-page, body.speakers-page, body.gallery-page) {
    --color-navy-950: #010912;
    --color-navy-900: #051827;
    --color-navy-800: #0a2234;
    --color-surface: rgba(10, 29, 44, 0.92);
    --color-white: #f8fafc;
    --color-muted: #a8b4be;
    --color-gold: #e9c176;
    --color-gold-light: #f3cb83;
    --color-cyan: #66d5f1;
    --color-cyan-dark: #24c2e1;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Hanken Grotesk', "Trebuchet MS", Arial, sans-serif;
    --font-nav: 'Montserrat', sans-serif;
    --text-xs: 0.68rem;
    --text-sm: 0.82rem;
    --radius-sm: 0.45rem;
    --radius-md: 0.8rem;
    --radius-lg: 1.25rem;
    --radius-pill: 100vmax;
    --shadow-soft: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    --shadow-card: 0 1.4rem 3rem rgba(0, 0, 0, 0.24);
    --transition: 180ms ease;
    --container-gutter: clamp(1.25rem, 4.5vw, 5rem);
    --section-space: clamp(4rem, 8vw, 7rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:where(body.about-page, body.speakers-page, body.gallery-page) {
    margin: 0;
    color: var(--color-white);
    background-color: var(--color-navy-950);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

:where(body.about-page, body.speakers-page, body.gallery-page) main {
    position: relative;
    overflow: clip;
    background: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) main section {
    position: relative;
}

:where(body.about-page, body.speakers-page, body.gallery-page) main section:not(.about-hero):not(.speakers-hero) {
    padding-block: var(--section-space);
}

:where(body.about-page, body.speakers-page, body.gallery-page) img {
    max-width: 100%;
}

:where(body.about-page, body.speakers-page, body.gallery-page) a {
    text-decoration: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .site-container {
    padding-inline: var(--container-gutter);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .container {
    width: min(100% - 2rem, 76rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) :focus-visible {
    outline: 2px solid var(--color-cyan);
    outline-offset: 3px;
}

@keyframes pageReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floatPulse {

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

    50% {
        transform: translateY(-6px);
    }
}

@keyframes glowSweep {
    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(130%);
    }
}

.js :where(body.about-page, body.speakers-page, body.gallery-page) .scroll-reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js :where(body.about-page, body.speakers-page, body.gallery-page) .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js :where(body.about-page, body.speakers-page, body.gallery-page) .section-reveal {
    transform: translateY(1.25rem);
}

.js :where(body.about-page, body.speakers-page, body.gallery-page) .section-reveal.is-visible {
    transform: translateY(0);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    background-color: var(--color-navy-950);
    background-image:
        linear-gradient(115deg, rgba(1, 9, 18, 0.78), rgba(1, 9, 18, 0.26) 50%, rgba(1, 9, 18, 0.72)),
        url("../img/hero-section-about2.png?v=4");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 38%, transparent 22%, rgba(1, 9, 18, 0.48) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(7rem, 15vw, 12rem);
    background: linear-gradient(180deg, transparent, var(--color-navy-950) 94%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, 48rem);
    padding-top: 5rem;
    text-align: center;
    animation: pageReveal 850ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-kicker {
    display: inline-block;
    margin: 0 0 1.4rem;
    padding: 0.4rem 1.25rem;
    border: 1px solid rgba(102, 213, 241, 0.35);
    border-radius: 0.15rem;
    background: rgba(102, 213, 241, 0.08);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
    animation: pageReveal 700ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-title {
    margin: 0 0 1.75rem;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.25rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 0.4rem 1.8rem rgba(233, 193, 118, 0.16);
    animation: pageReveal 900ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-description {
    max-width: 46rem;
    margin: 0 auto;
    color: #BDC8CD;
    font-family: var(--font-nav);
    font-size: clamp(0.82rem, 1.15vw, 1.06rem);
    line-height: 1.75;
    letter-spacing: 0.01em;
    animation: pageReveal 1050ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .about-description strong {
    color: var(--color-white);
    font-weight: 500;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .strategic-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .leadership-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .highlights-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .venue-logistics-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .support-archive-section {
    background: transparent;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .strategic-section::before,
:where(body.about-page, body.speakers-page, body.gallery-page) .leadership-section::before,
:where(body.about-page, body.speakers-page, body.gallery-page) .highlights-section::before,
:where(body.about-page, body.speakers-page, body.gallery-page) .venue-logistics-section::before,
:where(body.about-page, body.speakers-page, body.gallery-page) .support-archive-section::before {
    content: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .strategic-heading,
:where(body.about-page, body.speakers-page, body.gallery-page) .leadership-heading,
:where(body.about-page, body.speakers-page, body.gallery-page) .venue-main-heading {
    margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .member-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .support-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .archive-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .venue-card {
    box-shadow: var(--shadow-card);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-card {
    height: 100%;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(5, 24, 39, 0.96), rgba(3, 13, 24, 0.98));
    transition: transform 220ms ease, border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 1.8rem 3rem rgba(0, 0, 0, 0.28);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    font-size: 1.05rem;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-icon--cyan {
    border: 1.5px solid rgba(41, 193, 223, 0.45);
    color: var(--color-cyan);
    background: rgba(41, 193, 223, 0.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-icon--gold {
    border: 1.5px solid rgba(201, 154, 75, 0.45);
    color: var(--color-gold-light);
    background: rgba(201, 154, 75, 0.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-card:hover .directive-icon,
:where(body.about-page, body.speakers-page, body.gallery-page) .member-card:hover .member-icon,
:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-card:hover .highlight-header-icon {
    transform: translateY(-3px) scale(1.05);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-title {
    margin: 0 0 0.85rem;
    color: var(--color-gold);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-title--light {
    color: var(--color-white);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-slider-controls {
    display: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-text {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    line-height: 1.75;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-list li {
    position: relative;
    margin-bottom: 0.65rem;
    padding-left: 1.1rem;
    color: var(--color-muted);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-list li:last-child {
    margin-bottom: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .directive-list li::before {
    width: 0.38rem;
    height: 0.38rem;
    position: absolute;
    left: 0;
    top: 0.45rem;
    background: url("../img/icons/goal-icon.svg?v=4") center / contain no-repeat;
    content: "";
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-group {
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-group:last-child {
    margin-bottom: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider--left .divider-line,
:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider--center .divider-line {
    flex: 1;
    height: 1px;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider--left .divider-line {
    background: rgba(102, 213, 241, 0.2);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider--center {
    justify-content: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-divider--center .divider-line {
    background: rgba(233, 193, 118, 0.2);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-title {
    margin: 0;
    font-size: clamp(0.9rem, 1.3vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-title--cyan {
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-title--gold {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-card {
    height: 100%;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(4, 18, 30, 0.98), rgba(3, 13, 24, 0.98));
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 213, 241, 0.18);
    background: #051323;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    transition: transform 240ms ease, background 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-icon img {
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-icon--cyan {
    background: rgba(102, 213, 241, 0.12);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-icon--gold {
    background: rgba(233, 193, 118, 0.12);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-name {
    margin: 0 0 0.4rem;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 700;
    line-height: 1.3;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-role {
    margin: 0 0 0.35rem;
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    font-weight: 600;
    line-height: 1.35;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-role--cyan {
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-role--gold {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .member-org {
    margin: 0;
    color: #8c9cae;
    font-size: clamp(0.7rem, 0.85vw, 0.8rem);
    line-height: 1.35;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 19rem;
    padding: clamp(1.8rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(4, 18, 30, 0.98), rgba(3, 13, 24, 0.98));
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    background: #051323;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-title--cyan {
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-title--gold {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-header-icon img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-description {
    margin: 0 0 2rem;
    color: #8c9cae;
    font-size: clamp(0.82rem, 1.05vw, 0.95rem);
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 2.2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .avatar-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    margin-left: -0.65rem;
    border: 2px solid #030d18;
    border-radius: 50%;
    background: rgba(102, 213, 241, 0.12);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .avatar-circle:first-child {
    margin-left: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .avatar-circle img {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .avatar-badge {
    color: var(--color-cyan);
    background: rgba(102, 213, 241, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    animation: floatPulse 4.2s ease-in-out infinite;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .sponsor-slots {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .sponsor-pill {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 2.8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    color: #8c9cae;
    font-size: 0.85rem;
    font-weight: 500;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .sponsor-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.1) 50%, transparent 80%);
    opacity: 0;
    transition: opacity 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-card:hover .sponsor-pill::before {
    opacity: 1;
    animation: glowSweep 1.6s ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-action-wrap {
    margin-top: auto;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity var(--transition), transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-action--gold {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-action:hover {
    opacity: 0.85;
    transform: translateX(3px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .highlight-action i {
    font-size: 0.7rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(102, 213, 241, 0.15);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(4, 18, 30, 0.98), rgba(3, 13, 24, 0.98));
}

:where(body.about-page, body.speakers-page, body.gallery-page) .location-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(102, 213, 241, 0.35);
    border-radius: var(--radius-pill);
    background: rgba(102, 213, 241, 0.06);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 500;
    line-height: 1.35;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-address {
    margin: 0 0 2.2rem;
    color: #8c9cae;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-style: normal;
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-nav);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn:hover {
    transform: translateY(-2px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn img {
    width: 0.95rem;
    height: 0.95rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn--filled {
    border: 1px solid var(--color-cyan);
    background: var(--color-cyan);
    color: #010912;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn--filled img {
    filter: brightness(0);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn--filled:hover {
    background: #4ecceb;
    color: #010912;
    box-shadow: 0 0 1.2rem rgba(102, 213, 241, 0.4);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn--outlined {
    border: 1px solid rgba(102, 213, 241, 0.45);
    background: transparent;
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-btn--outlined:hover {
    border-color: var(--color-cyan);
    background: rgba(102, 213, 241, 0.1);
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-map-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 20rem;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(102, 213, 241, 0.15);
    border-radius: var(--radius-md);
    background: #020810;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    border: 0;
    filter: grayscale(1) brightness(0.58) contrast(1.18);
    transition: filter 350ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .venue-map-box:hover iframe,
:where(body.about-page, body.speakers-page, body.gallery-page) .venue-map-box:focus-within iframe {
    filter: grayscale(0.85) brightness(0.72) contrast(1.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .coordinates-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(102, 213, 241, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(3, 13, 24, 0.88);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    pointer-events: none;
    backdrop-filter: blur(12px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .archive-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 26rem;
    padding: clamp(1.8rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(4, 18, 30, 0.98), rgba(3, 13, 24, 0.98));
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-card:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .archive-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    background: #051323;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-title,
:where(body.about-page, body.speakers-page, body.gallery-page) .archive-title {
    margin: 0 0 1rem;
    font-family: var(--font-nav);
    font-size: clamp(0.95rem, 1.25vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-title--cyan {
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-title--gold {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-description,
:where(body.about-page, body.speakers-page, body.gallery-page) .archive-description {
    margin: 0 0 2rem;
    color: #8c9cae;
    font-size: clamp(0.82rem, 1.05vw, 0.92rem);
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn:hover {
    transform: translateY(-2px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn i {
    font-size: 0.95rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--filled-cyan {
    border: 1px solid #139eb9;
    background: #139eb9;
    color: #010912;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--filled-cyan img {
    filter: brightness(0);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--filled-cyan:hover {
    background: var(--color-cyan);
    color: #010912;
    box-shadow: 0 0 1.2rem rgba(102, 213, 241, 0.4);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--whatsapp {
    border: 1px solid #25d366;
    background: rgba(37, 211, 102, 0.05);
    color: #25d366;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    box-shadow: 0 0 1.2rem rgba(37, 211, 102, 0.25);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--outline-gray {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--color-white);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-btn--outline-gray:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-social-footer {
    margin-top: 2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-divider {
    margin: 0 0 1.5rem;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .support-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #8c9cae;
    font-size: 0.72rem;
    transition: color var(--transition), transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .social-item img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .social-item:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .social-item:hover img {
    filter: grayscale(0) opacity(1);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-weight: 500;
    transition: color var(--transition), padding-left var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-arrow {
    color: var(--color-gold);
    font-size: 0.85rem;
    transition: transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-item:hover {
    color: var(--color-gold);
    padding-left: 0.35rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-item:hover .archive-arrow {
    transform: translateX(4px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    color: #8c9cae;
    font-size: 0.78rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .archive-note img {
    width: 0.85rem;
    height: 0.85rem;
    object-fit: contain;
    opacity: 0.75;
}

/* Speakers page */
.speakers-page,
.speakers-page main,
.speakers-page .speaker-section {
    background: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-container {
    width: min(100% - 2rem, 72rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    background-color: var(--color-navy-950);
    background-image:
        linear-gradient(115deg, rgba(1, 9, 18, 0.78), rgba(1, 9, 18, 0.26) 50%, rgba(1, 9, 18, 0.72)),
        url("../img/hero-section-about2.png?v=4");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 38%, transparent 22%, rgba(1, 9, 18, 0.48) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(7rem, 15vw, 12rem);
    background: linear-gradient(180deg, transparent, var(--color-navy-950) 94%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, 48rem);
    padding-top: 5rem;
    text-align: center;
    animation: pageReveal 850ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-kicker {
    display: inline-block;
    margin: 0 0 1.4rem;
    padding: 0.4rem 1.25rem;
    border: 1px solid rgba(102, 213, 241, 0.36);
    border-radius: 0.15rem;
    background: rgba(102, 213, 241, 0.08);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(0.58rem, 0.9vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero-title {
    margin: 0;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0.5rem 2rem rgba(233, 193, 118, 0.16);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-hero-description {
    max-width: 34rem;
    margin: 1.35rem auto 0;
    color: #bdc8cd;
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 1.05vw, 0.95rem);
    line-height: 1.65;
}

/* Meet Our Speakers Section */
:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-section {
    padding-top: clamp(2rem, 4vw, 3.5rem) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-section .speakers-container {
    width: min(100% - 2rem, 72rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 1.5rem;
    row-gap: 2.25rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-header {
    max-width: 38rem;
    margin: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-title {
    margin: 0 0 0.9rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.7vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-description {
    margin: 0;
    color: #8f9daa;
    font-family: var(--font-nav);
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    line-height: 1.72;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    gap: 0.9rem;
    margin: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-nav-btn {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.45rem;
    background: linear-gradient(180deg, #7ce0f4 0%, #49bad4 100%);
    color: #f4fbff;
    font-size: 0.68rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-nav-btn:hover {
    background: linear-gradient(180deg, #90e8f8 0%, #55c7e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.2rem rgba(73, 186, 212, 0.28);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-nav-btn:active {
    transform: scale(0.95);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speakers-accordion {
    --meet-panel-count: 7;
    --meet-panel-gap: 1rem;
    --meet-collapsed-width: 5rem;
    --meet-expanded-width: calc(100% - ((var(--meet-panel-count) - 1) * (var(--meet-collapsed-width) + var(--meet-panel-gap))));
    display: flex;
    grid-column: 1 / -1;
    gap: var(--meet-panel-gap);
    width: 100%;
    height: 37rem;
    padding: 0;
    border-radius: 1.15rem;
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel {
    position: relative;
    flex: 0 0 var(--meet-collapsed-width);
    width: var(--meet-collapsed-width);
    height: 100%;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis 850ms cubic-bezier(0.22, 1, 0.36, 1), width 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms ease, box-shadow 520ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.24);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel.is-active {
    flex: 0 0 var(--meet-expanded-width);
    width: var(--meet-expanded-width);
}

/* Thumbnail view (collapsed) */
:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-thumb {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 520ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 13, 19, 0.2) 0%, rgba(9, 13, 19, 0.5) 55%, rgba(9, 13, 19, 0.16) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel.is-active .meet-panel-thumb {
    opacity: 0;
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* filter: grayscale(0.15) brightness(0.78); */
    transition: filter var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel:hover .meet-panel-thumb img {
    filter: grayscale(0) brightness(0.9);
}

@media (prefers-reduced-motion: reduce) {

    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel,
    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-thumb,
    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-expanded,
    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-overlay,
    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-thumb img {
        transition: none;
    }

    :where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel:hover {
        transform: none;
    }
}

/* Expanded view */
:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-expanded {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 84%, rgba(65, 61, 118, 0.95) 0%, rgba(40, 39, 70, 0.72) 28%, rgba(25, 28, 36, 0.94) 60%, rgba(25, 28, 36, 1) 100%);
    transition: opacity 650ms ease 160ms;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel.is-active .meet-panel-expanded {
    opacity: 1;
    z-index: 3;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-expanded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: none;
    transform: none;
    transition: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-expanded::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(18, 21, 27, 0.1) 0%, rgba(18, 21, 27, 0) 38%),
        linear-gradient(180deg, rgba(18, 21, 27, 0.12) 0%, rgba(18, 21, 27, 0) 28%, rgba(18, 21, 27, 0.18) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-overlay {
    position: absolute;
    inset: 1.5rem 1.35rem auto;
    z-index: 4;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 560ms ease 260ms, transform 560ms ease 260ms;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-speaker-panel.is-active .meet-panel-overlay {
    opacity: 1;
    transform: translateY(0);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-role {
    display: block;
    margin-bottom: 0.35rem;
    color: #4d87ff;
    font-family: 'Satoshi', var(--font-nav);
    font-size: clamp(0.58rem, 0.8vw, 0.68rem);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .meet-panel-name {
    margin: 0;
    color: var(--color-white);
    font-family: 'Eudoxus Sans', var(--font-body);
    font-size: clamp(1.45rem, 2.35vw, 1.7rem);
    font-weight: 700;
    line-height: 1.2;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-section {
    isolation: isolate;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .featured-speakers-section {
    padding-top: calc(var(--section-space) * 1.05) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .all-speakers-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .committee-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .sessions-section {
    padding-top: clamp(2rem, 4vw, 3.5rem) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta-section {
    padding-top: clamp(2rem, 4vw, 3.5rem) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-section-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(102, 213, 241, 0.28);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-display-heading {
    margin: 0;
    color: var(--color-cyan);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-search {
    display: flex;
    align-items: center;
    width: min(17rem, 25vw);
    height: 2.45rem;
    gap: 0.65rem;
    padding: 0 0.9rem;
    border: 1px solid rgba(102, 213, 241, 0.14);
    border-radius: var(--radius-pill);
    background: #102a42;
    color: var(--color-cyan);
    transition: border-color var(--transition), box-shadow var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-search:focus-within {
    border-color: rgba(102, 213, 241, 0.62);
    box-shadow: 0 0 0 3px rgba(102, 213, 241, 0.08);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-search i {
    flex: 0 0 auto;
    font-size: 0.8rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: 0.7rem;
    outline: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-search input::placeholder {
    color: rgba(189, 200, 205, 0.56);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filters {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter {
    min-width: 4.2rem;
    height: 2.45rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(102, 213, 241, 0.28);
    border-radius: var(--radius-pill);
    background: transparent;
    color: #bdc8cd;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter:focus-visible,
:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter.is-active {
    border-color: var(--color-cyan);
    background: rgba(102, 213, 241, 0.14);
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter:active {
    transform: scale(0.96);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-filter-item[hidden] {
    display: none !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile,
:where(body.about-page, body.speakers-page, body.gallery-page) .session-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta {
    /* border: 1px solid rgba(255, 255, 255, 0.055); */
    background: #0D203629;
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.18);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 213, 241, 0.2);
    box-shadow: 0 1.7rem 3.2rem rgba(0, 0, 0, 0.28);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-visual {
    position: relative;
    height: clamp(17rem, 29vw, 23rem);
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .featured-grid> :first-child .keynote-visual img {
    object-position: center 39%;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-card:hover .keynote-visual img,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-card:hover .roster-image img {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.02);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-image-shade {
    position: absolute;
    inset: 32% 0 0;
    background: linear-gradient(180deg, transparent, rgba(2, 13, 24, 0.92));
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-name-block {
    position: absolute;
    inset: auto 1.5rem 1.25rem;
    z-index: 1;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.45rem;
    padding: 0.22rem 0.55rem;
    border: 1px solid rgba(102, 213, 241, 0.52);
    border-radius: var(--radius-pill);
    background: rgba(3, 20, 34, 0.84);
    color: #c7dce3;
    font-family: var(--font-nav);
    font-size: 0.58rem;
    line-height: 1;
    backdrop-filter: blur(8px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-name-line,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-name-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-name-line h3 {
    margin: 0.65rem 0 0;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 0.95;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .country-code {
    flex: 0 0 auto;
    margin-bottom: 0.25rem;
    color: var(--color-gold-light);
    font-family: var(--font-nav);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-content {
    padding: 1.5rem 1.5rem 1.15rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-content h4 {
    margin: 0 0 0.8rem;
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: clamp(0.9rem, 1.25vw, 1.08rem);
    font-weight: 750;
    line-height: 1.35;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .keynote-content>p {
    min-height: 3.2rem;
    margin: 0 0 1.2rem;
    color: #8f9daa;
    font-size: clamp(0.74rem, 0.95vw, 0.84rem);
    line-height: 1.6;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-schedule-link,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 213, 241, 0.11);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.62rem;
    font-weight: 600;
    transition: color var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-schedule-link i,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-meta i {
    font-size: 0.9rem;
    transition: transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-schedule-link:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-meta:hover {
    color: var(--color-gold-light);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-schedule-link:hover i,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-meta:hover i {
    transform: translateX(4px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-empty-state {
    margin: 2.5rem 0 0;
    padding: 2rem;
    border: 1px dashed rgba(102, 213, 241, 0.25);
    border-radius: var(--radius-md);
    color: #9baab5;
    text-align: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speaker-subheading-row {
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(102, 213, 241, 0.28);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .speakers-subheading {
    margin: 0;
    color: #d8e4ec;
    font-family: var(--font-nav);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 750;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-card {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 213, 241, 0.18);
    box-shadow: 0 1.5rem 2.8rem rgba(0, 0, 0, 0.26);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-image {
    position: relative;
    height: clamp(13rem, 21vw, 17rem);
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-image::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(3, 17, 29, 0.55));
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-image .speaker-label {
    position: absolute;
    z-index: 1;
    bottom: 0.8rem;
    left: 0.8rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-content {
    padding: 1.25rem 1.25rem 1rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-name-line {
    align-items: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-name-line h3 {
    margin: 0;
    color: var(--color-gold);
    font-family: var(--font-nav);
    font-size: clamp(0.95rem, 1.35vw, 1.12rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-content>p {
    min-height: 2.6rem;
    margin: 0.7rem 0 1.1rem;
    color: #8f9daa;
    font-size: 0.76rem;
    line-height: 1.5;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-meta {
    font-size: 0.62rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-roster-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile {
    display: flex;
    min-height: 8.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: #1B1C1E;
    text-align: left;
    transition: transform 220ms ease, border-color var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 193, 118, 0.25);
    background: #1c2226;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile img {
    flex: 0 0 auto;
    width: 4.7rem;
    height: 4.7rem;
    border: 2px solid rgba(102, 213, 241, 0.5);
    border-radius: 50%;
    object-fit: cover;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile h3 {
    margin: 0 0 0.45rem;
    color: #D4AF37;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile p {
    margin: 0;
    color: #8f9daa;
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Keep every committee card in a clear photo, name, role sequence. */
:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile img {
    order: 0;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .committee-profile>div {
    display: flex;
    order: 1;
    flex-direction: column;
    align-items: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-card {
    display: flex;
    min-height: 18rem;
    flex-direction: column;
    padding: 1.6rem;
    border-radius: var(--radius-md);
    transition: transform 220ms ease, border-color var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 213, 241, 0.18);
    background: #061a2a;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-type {
    margin-bottom: 0.8rem;
    color: #D4AF37;
    font-family: var(--font-nav);
    font-size: 0.7rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-card h3 {
    margin: 0 0 1rem;
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(1.1rem, 1.7vw, 1.2rem);
    font-weight: 750;
    line-height: 1.3;
    white-space: nowrap;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-card>p {
    margin: 0 0 1.4rem;
    color: #8f9daa;
    font-size: 0.83rem;
    line-height: 1.55;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-speaker {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 213, 241, 0.13);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-speaker span {
    display: grid;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(102, 213, 241, 0.16);
    color: var(--color-cyan);
    font-size: 0.65rem;
    font-weight: 800;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .session-speaker strong {
    color: #c4d0d8;
    font-family: var(--font-nav);
    font-size: 0.68rem;
    letter-spacing: 0.03em;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta {
    padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta h2 {
    margin: 0;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta p {
    max-width: 44rem;
    margin: 1.2rem auto 1.8rem;
    color: #8f9daa;
    font-family: var(--font-nav);
    font-size: clamp(0.74rem, 1vw, 0.88rem);
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta-button {
    display: inline-flex;
    min-width: 13rem;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--color-cyan);
    border-radius: 0.75rem;
    background: var(--color-cyan);
    box-shadow: 0 0 1.2rem rgba(102, 213, 241, 0.34);
    color: var(--color-navy-950);
    font-family: var(--font-nav);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: capitalize;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .roster-cta-button:focus-visible {
    transform: translateY(-3px);
    background: #82e0f4;
    box-shadow: 0 0.8rem 1.8rem rgba(102, 213, 241, 0.24);
    color: var(--color-navy-950);
}

@media (prefers-reduced-motion: reduce) {

    :where(body.about-page, body.speakers-page, body.gallery-page) *,
    :where(body.about-page, body.speakers-page, body.gallery-page) *::before,
    :where(body.about-page, body.speakers-page, body.gallery-page) *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .js :where(body.about-page, body.speakers-page, body.gallery-page) .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Gallery page */
.gallery-page,
.gallery-page main,
.gallery-page .gallery-section {
    background: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) main section:not(.gallery-hero) {
    position: relative;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-container {
    width: min(100% - 2rem, 72rem);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    background-color: var(--color-navy-950);
    background-image:
        linear-gradient(115deg, rgba(1, 9, 18, 0.78), rgba(1, 9, 18, 0.26) 50%, rgba(1, 9, 18, 0.72)),
        url("../img/hero-section-about2.png?v=4");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 38%, transparent 22%, rgba(1, 9, 18, 0.48) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(7rem, 15vw, 12rem);
    background: linear-gradient(180deg, transparent, var(--color-navy-950) 94%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, 48rem);
    padding-top: 5rem;
    text-align: center;
    animation: pageReveal 850ms ease both;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin: 0 0 1rem;
    min-height: 1.65rem;
    padding: 0.28rem 0.82rem;
    border: 1px solid rgba(102, 213, 241, 0.68);
    border-radius: var(--radius-pill);
    background: rgba(1, 14, 25, 0.5);
    box-shadow: inset 0 0 0.8rem rgba(102, 213, 241, 0.05), 0 0.25rem 0.8rem rgba(0, 0, 0, 0.18);
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(0.58rem, 0.85vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-kicker::before {
    content: "";
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0.38rem rgba(233, 193, 118, 0.8);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-global,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-innovation {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 0.96;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-global {
    color: #dfe7ef;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-innovation {
    color: var(--color-gold);
    text-shadow: 0 0.5rem 2rem rgba(233, 193, 118, 0.16);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-innovation em {
    color: #dfe7ef;
    font: inherit;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-description {
    max-width: 35rem;
    margin: 1.2rem auto 0;
    color: #bdc8cd;
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 1.02vw, 0.92rem);
    line-height: 1.65;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.95rem;
    padding: 0.82rem 1.35rem;
    border-radius: 0.7rem;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button:hover {
    transform: translateY(-2px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn img {
    width: 0.8rem;
    height: 0.8rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--filled {
    border: 1px solid var(--color-cyan);
    background: var(--color-cyan);
    box-shadow: 0 0 1.2rem rgba(102, 213, 241, 0.3);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--filled:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--filled:focus-visible {
    background: #7adff3;
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--outlined {
    border: 1px solid rgba(233, 193, 118, 0.72);
    background: rgba(233, 193, 118, 0.06);
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--outlined:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-btn--outlined:focus-visible {
    background: rgba(233, 193, 118, 0.12);
    color: var(--color-gold-light);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-section {
    isolation: isolate;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-innovations-section {
    padding-top: calc(var(--section-space) * 1.02) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-directory-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-offers-section,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-floor-section {
    padding-top: clamp(2rem, 4vw, 3.5rem) !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-section-heading,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-toolbar {
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #E9C3494D;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-display-heading {
    margin: 0;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-directory-section .gallery-display-heading {
    color: #D2E4FF;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-directory-section .gallery-toolbar {
    border-bottom-color: #66D5F14D;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section .gallery-display-heading {
    color: #D2E4FF;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section .gallery-section-heading {
    border-bottom-color: #66D5F14D;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-section-heading p,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-toolbar p {
    margin: 0.35rem 0 0;
    color: #8493a0;
    font-family: var(--font-nav);
    font-size: 0.72rem;
    line-height: 1.55;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-innovation-grid>div,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-grid>div,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-grid>div,
:where(body.about-page, body.speakers-page, body.gallery-page) .offers-grid>div {
    height: 100%;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-grid {
    --bs-gutter-x: 1.15rem;
    --bs-gutter-y: 1.15rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-grid {
    --bs-gutter-x: 1.15rem;
    --bs-gutter-y: 1.15rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offers-grid {
    --bs-gutter-x: 1.15rem;
    --bs-gutter-y: 1.15rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offers-grid>div {
    display: flex;
    height: auto;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card,
:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-card {
    height: 100%;
    border: 1px solid rgba(102, 213, 241, 0.14);
    border-radius: var(--radius-md);
    background: #030D18;
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.18);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card {
    display: grid;
    grid-template-columns: minmax(0, 13.25rem) minmax(0, 1fr);
    overflow: hidden;
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 213, 241, 0.24);
    box-shadow: 0 1.8rem 3rem rgba(0, 0, 0, 0.26);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card--gold,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured {
    border-color: rgba(233, 193, 118, 0.22);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-image::after,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 38, 0) 34%, rgba(6, 22, 38, 0.18) 100%);
    pointer-events: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-image img,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card:hover .innovation-card-image img,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card:hover .product-card-image img {
    transform: scale(1.04);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem 1.2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-header,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-header h3,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card h3,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card h3,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card h3,
:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-overlay-card h3 {
    margin: 0;
    color: #dbe7ef;
    font-family: var(--font-nav);
    font-weight: 600;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-header h3 {
    font-size: 1.45rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-header span,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-booth,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.5rem;
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(102, 213, 241, 0.28);
    border-radius: 0.3rem;
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-card-body p,
:where(body.about-page, body.speakers-page, body.gallery-page) .product-card p,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card p {
    margin: 0.95rem 0 1.2rem;
    color: #8f9daa;
    font-size: 0.9rem;
    line-height: 1.6;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 213, 241, 0.12);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-metrics strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-gold);
    font-family: var(--font-nav);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .innovation-metrics span {
    color: #c7d6df;
    font-size: 0.68rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button {
    width: 100%;
    margin-top: 1rem;
    border: 1px solid var(--color-cyan);
    background: var(--color-cyan);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button--ghost,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button {
    border: 1px solid rgba(233, 193, 118, 0.72);
    background: transparent;
    color: var(--color-gold);
    box-shadow: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button--ghost:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-card-button--ghost:focus-visible,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button:focus-visible {
    background: rgba(233, 193, 118, 0.08);
    color: var(--color-gold-light);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button {
    min-height: 2.25rem;
    padding: 0.55rem 1.45rem;
    border-color: #66D5F14D;
    border-radius: 0.4rem;
    background: #030D18;
    color: var(--color-cyan);
    font-size: 0.6rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-button:focus-visible {
    border-color: var(--color-cyan);
    background: rgba(102, 213, 241, 0.08);
    color: var(--color-cyan);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.75rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-slider-controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-slider-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid rgba(102, 213, 241, 0.35);
    border-radius: 50%;
    background: rgba(5, 24, 39, 0.85);
    color: var(--color-cyan);
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 220ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-slider-controls button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-slider-controls button:focus-visible {
    border-color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.25);
    color: #ffffff;
    box-shadow: 0 0 14px rgba(102, 213, 241, 0.4);
    transform: translateY(-1px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-slider-controls button:active {
    transform: scale(0.92);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-search {
    display: flex;
    align-items: center;
    width: min(22rem, 36vw);
    height: 2.75rem;
    gap: 0.75rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(102, 213, 241, 0.22);
    border-radius: var(--radius-pill);
    background: rgba(8, 28, 46, 0.85);
    color: var(--color-cyan);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-search:focus-within {
    border-color: var(--color-cyan);
    background: rgba(10, 36, 58, 0.95);
    box-shadow: 0 0 16px rgba(102, 213, 241, 0.25), 0 0 0 1px rgba(102, 213, 241, 0.3);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 500;
    outline: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-search input::placeholder {
    color: rgba(189, 200, 205, 0.6);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0.25rem 0.65rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip-row::-webkit-scrollbar {
    display: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.25rem;
    padding: 0.45rem 1.15rem;
    border: 1px solid rgba(102, 213, 241, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(8, 28, 46, 0.65);
    color: #a0b2c2;
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: var(--radius-pill);
    background: rgba(102, 213, 241, 0.14);
    color: var(--color-cyan);
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 1;
    transition: background var(--transition), color var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip:focus-visible {
    border-color: rgba(102, 213, 241, 0.5);
    background: rgba(12, 38, 62, 0.85);
    color: #ffffff;
    transform: translateY(-1px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip.is-active {
    border-color: var(--color-cyan);
    background: rgba(0, 151, 178, 0.22);
    color: #ffffff;
    font-weight: 700;
    box-shadow: none;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip.is-active .gallery-chip-count {
    background: var(--color-cyan);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-chip:active {
    transform: scale(0.96);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card {
    position: relative;
    display: flex;
    min-height: 15rem;
    flex-direction: column;
    padding: 1.6rem;
    border-color: #66D5F14D;
    background: #030D18;
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease, background var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card--featured {
    overflow: hidden;
    border-color: rgba(233, 193, 118, 0.68);
    background: #030D18;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    min-height: 1.2rem;
    padding: 0.18rem 0.55rem;
    border-radius: 0 0.55rem 0 0.45rem;
    background: var(--color-gold);
    color: var(--color-navy-950);
    font-family: var(--font-nav);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-mark {
    display: grid;
    width: 3.1rem;
    height: 3.1rem;
    place-items: center;
    border: 1px solid rgba(102, 213, 241, 0.18);
    border-radius: 0.35rem;
    background: rgba(102, 213, 241, 0.05);
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card h3 {
    margin-top: 0.95rem;
    color: #D2E4FF;
    font-size: 1.18rem;
    line-height: 1.1;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.45rem 0 0;
    color: #97a6b2;
    font-size: 0.72rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-tags {
    display: flex;
    gap: 0.45rem;
    margin: 0.85rem 0 1.75rem;
    flex-wrap: wrap;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 1.45rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(102, 213, 241, 0.18);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.02);
    color: #c7d6df;
    font-family: var(--font-nav);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card .gallery-card-button {
    position: relative;
    min-height: 1.95rem;
    margin-top: auto;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--color-gold);
    border-radius: 0.4rem;
    background: transparent;
    box-shadow: none;
    color: var(--color-gold);
    font-size: 0.7rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card .gallery-card-button::before {
    content: "";
    position: absolute;
    top: -0.95rem;
    right: 0;
    left: 0;
    border-top: 1px dashed #66D5F14D;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card .gallery-card-button img {
    width: 0.6rem;
    height: 0.6rem;
    margin-left: 0.04rem;
    object-fit: contain;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card .gallery-card-button:focus-visible {
    background: rgba(233, 193, 118, 0.08);
    color: var(--color-gold-light);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card--featured .gallery-card-button {
    background: var(--color-gold);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card--featured .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card--featured .gallery-card-button:focus-visible {
    background: var(--color-gold-light);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-card--featured .exhibitor-booth {
    border-color: rgba(233, 193, 118, 0.72);
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-empty-state {
    margin: 1.5rem 0 0;
    padding: 1.8rem;
    border: 1px dashed rgba(102, 213, 241, 0.25);
    border-radius: var(--radius-md);
    color: #9baab5;
    text-align: center;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .exhibitor-item[hidden] {
    display: none !important;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card {
    overflow: hidden;
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-image {
    position: relative;
    aspect-ratio: 1.4 / 1;
    overflow: hidden;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-body {
    padding: 0.95rem 0.85rem 0.85rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card-label {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.46rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card h3 {
    margin-top: 0.45rem;
    font-size: 1.02rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .product-card p {
    min-height: 2.75rem;
    margin: 0.55rem 0 0.95rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section .gallery-card-button {
    min-height: 1.95rem;
    margin-top: 0;
    padding: 0.6rem 0.75rem;
    border-color: var(--color-cyan);
    border-radius: 0.3rem;
    background: #16334B;
    color: var(--color-cyan);
    font-size: 0.6rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .gallery-products-section .gallery-card-button:focus-visible {
    border-color: #8ae3f6;
    background: #1b405d;
    color: #8ae3f6;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card {
    display: flex;
    width: 100%;
    min-height: 13rem;
    height: auto;
    flex-direction: column;
    padding: 1.15rem;
    border-color: #66D5F14D;
    background: #030D18;
    transition: transform 240ms ease, border-color var(--transition), box-shadow 240ms ease;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured {
    border: 2px solid #E9C34980;
    background: linear-gradient(to top right, #10447E, #030D18 68%);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-value {
    margin-bottom: 0.85rem;
    color: var(--color-cyan);
    font-family: "Anton", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured .offer-value,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured h3,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured small {
    color: var(--color-gold);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card h3 {
    font-size: 1.2rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card p {
    margin: 0.7rem 0 1rem;
    font-size: 0.9rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card small {
    margin-bottom: 1rem;
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card .gallery-card-button {
    min-height: 1.9rem;
    margin-top: auto;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-cyan);
    border-radius: 0.25rem;
    background: transparent;
    color: var(--color-cyan);
    font-size: 0.7rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card .gallery-card-button:focus-visible {
    border-color: #8ae3f6;
    background: rgba(102, 213, 241, 0.08);
    color: #8ae3f6;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured .gallery-card-button {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured .gallery-card-button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .offer-card--featured .gallery-card-button:focus-visible {
    border-color: var(--color-gold-light);
    background: var(--color-gold-light);
    color: var(--color-navy-950);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-card {
    position: relative;
    display: grid;
    min-height: 28rem;
    place-items: center;
    padding: 2rem;
    overflow: hidden;
    border-color: rgba(102, 213, 241, 0.12);
    background:
        linear-gradient(180deg, rgba(49, 67, 90, 0.92), rgba(43, 59, 82, 0.92)),
        url("../img/gallery/omnisurg-robotics.jpg?v=4");
    background-position: center;
    background-size: cover;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 3.6rem 3.6rem;
    opacity: 0.35;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-overlay-card {
    position: relative;
    z-index: 1;
    width: min(100%, 24rem);
    padding: 2rem 1.6rem;
    border: 1px solid rgba(102, 213, 241, 0.18);
    border-radius: 0.85rem;
    background: rgba(8, 27, 45, 0.86);
    text-align: center;
    backdrop-filter: blur(14px);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-overlay-card i {
    color: var(--color-cyan);
    font-size: 1.1rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-overlay-card h3 {
    margin-top: 1rem;
    font-size: 1rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-overlay-card p {
    margin: 0.8rem 0 1.3rem;
    color: #9eb0bd;
    font-size: 0.72rem;
    line-height: 1.6;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-controls {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-controls button {
    display: grid;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border: 1px solid rgba(102, 213, 241, 0.2);
    border-radius: 0.2rem;
    background: rgba(2, 16, 27, 0.92);
    color: var(--color-cyan);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-controls button:hover,
:where(body.about-page, body.speakers-page, body.gallery-page) .floor-plan-controls button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(102, 213, 241, 0.44);
    background: rgba(10, 36, 55, 0.98);
}


/* ===== Registration and account pages ===== */
/* ===== Registration Page Styles ===== */

/* Hero Section */
:where(body.register-page, body.login-page) .register-hero {
    position: relative;
    min-height: clamp(16rem, 30vh, 22rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("../img/backgrounds/schedule-bg.png?v=4");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

:where(body.register-page, body.login-page) .register-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(1, 9, 18, 0.42) 0%,
            rgba(1, 9, 18, 0.72) 50%,
            rgba(1, 9, 18, 0.96) 100%);
    z-index: 1;
}

:where(body.register-page, body.login-page) .register-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(3rem, 6vh, 5rem) 1.5rem clamp(1.5rem, 3vh, 2.5rem);
}

:where(body.register-page, body.login-page) .register-kicker {
    margin: 0 0 0.6rem;
    font-family: var(--font-nav);
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

:where(body.register-page, body.login-page) .register-title {
    margin: 0;
    font-family: var(--font-display) !important;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400 !important;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-white);
}

:where(body.register-page, body.login-page) .register-year {
    display: block;
    margin-top: 0.1em;
    font-family: var(--font-display);
    font-size: 1.05em;
    color: var(--color-gold);
}

:where(body.register-page, body.login-page) .register-subtitle {
    margin: 1rem 0 0;
    font-family: var(--font-nav);
    font-size: clamp(0.68rem, 1.1vw, 0.85rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.65);
}

:where(body.register-page, body.login-page) .register-meta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

:where(body.register-page, body.login-page) .register-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-nav);
    font-size: clamp(0.6rem, 0.9vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.06em;
}

:where(body.register-page, body.login-page) .register-badge--date {
    background: rgba(201, 154, 75, 0.12);
    border: 1px solid rgba(201, 154, 75, 0.35);
    color: var(--color-gold-light);
}

:where(body.register-page, body.login-page) .register-badge--date i {
    font-size: 0.8em;
}

:where(body.register-page, body.login-page) .register-badge--location {
    background: rgba(0, 151, 178, 0.18);
    border: 1px solid rgba(0, 151, 178, 0.4);
    color: var(--color-cyan);
}

:where(body.register-page, body.login-page) .register-badge--location i {
    font-size: 0.8em;
}

/* Form Section */
:where(body.register-page, body.login-page) .register-form-section {
    background: var(--color-navy-950);
    padding: 0 1.5rem clamp(3rem, 5vh, 5rem);
}

:where(body.register-page, body.login-page) .register-form-container {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(2rem, 4vh, 3.5rem) 0;
}

/* Step Wizard */
:where(body.register-page, body.login-page) .step-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

:where(body.register-page, body.login-page) .step-wizard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

:where(body.register-page, body.login-page) .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

:where(body.register-page, body.login-page) .step-label {
    font-family: var(--font-nav);
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.35s ease;
}

:where(body.register-page, body.login-page) .step-wizard-item.active .step-number {
    border-color: #d4a359;
    color: #e5bf7a;
    background: rgba(212, 163, 89, 0.06);
    box-shadow: 0 0 1rem rgba(212, 163, 89, 0.2);
}

:where(body.register-page, body.login-page) .step-wizard-item.active .step-label {
    color: var(--color-white);
}

:where(body.register-page, body.login-page) .step-wizard-item.completed .step-number {
    border-color: #d4a359;
    color: #d4a359;
    background: rgba(212, 163, 89, 0.12);
}

:where(body.register-page, body.login-page) .step-wizard-item.completed .step-label {
    color: rgba(255, 255, 255, 0.65);
}

:where(body.register-page, body.login-page) .step-wizard-line {
    width: clamp(3rem, 8vw, 7rem);
    height: 1px;
    background: #16324A;
    margin: 0 0.75rem;
    margin-bottom: 1.8rem;
    transition: background 0.35s ease;
}

:where(body.register-page, body.login-page) .step-wizard-line.completed {
    background: rgba(212, 163, 89, 0.45);
}

/* Steps */
:where(body.register-page, body.login-page) .register-step {
    display: none;
    animation: registerFadeSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

:where(body.register-page, body.login-page) .register-step.active {
    display: block;
}

@keyframes registerFadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

:where(body.register-page, body.login-page) .step-indicator {
    margin: 0 0 0.4rem;
    font-family: var(--font-nav);
    font-size: clamp(0.6rem, 0.9vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

:where(body.register-page, body.login-page) .step-title {
    margin: 0 0 1.75rem;
    font-family: var(--font-display) !important;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 400 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-white);
}

:where(body.register-page, body.login-page) .step-description {
    margin: -0.75rem 0 1.5rem;
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.85rem);
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.55);
}

/* Form Elements */
:where(body.register-page, body.login-page) .form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-family: var(--font-nav);
    font-size: clamp(0.58rem, 0.85vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.65);
}

:where(body.register-page, body.login-page) .form-group {
    margin-bottom: 1.25rem;
    flex: 1;
}

:where(body.register-page, body.login-page) .form-row {
    display: flex;
    gap: 1rem;
}

:where(body.register-page, body.login-page) .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

:where(body.register-page, body.login-page) .input-icon {
    position: absolute;
    left: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 2;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

:where(body.register-page, body.login-page) .input-icon--svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
}

:where(body.register-page, body.login-page) .input-wrapper:focus-within .input-icon {
    color: var(--color-cyan);
}

:where(body.register-page, body.login-page) .form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    padding-left: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--color-white) !important;
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 400;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    outline: none !important;
}

:where(body.register-page, body.login-page) .form-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

:where(body.register-page, body.login-page) .form-input:focus {
    border-color: rgba(0, 151, 178, 0.5) !important;
    background: rgba(0, 151, 178, 0.04) !important;
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.08) !important;
    outline: none !important;
}

/* Fix browser autofill styling so all inputs match 100% */
:where(body.register-page, body.login-page) .form-input:-webkit-autofill,
:where(body.register-page, body.login-page) .form-input:-webkit-autofill:hover,
:where(body.register-page, body.login-page) .form-input:-webkit-autofill:focus,
:where(body.register-page, body.login-page) .form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #061522 inset !important;
    box-shadow: 0 0 0 1000px #061522 inset !important;
    -webkit-text-fill-color: #f8fafc !important;
    caret-color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
    border-radius: 0.5rem !important;
    transition: background-color 5000s ease-in-out 0s;
}

:where(body.register-page, body.login-page) .form-input:-webkit-autofill:focus {
    border-color: rgba(0, 151, 178, 0.5) !important;
    -webkit-box-shadow: 0 0 0 1000px #061522 inset, 0 0 0 3px rgba(0, 151, 178, 0.08) !important;
    box-shadow: 0 0 0 1000px #061522 inset, 0 0 0 3px rgba(0, 151, 178, 0.08) !important;
}

/* Inputs without icon */
:where(body.register-page, body.login-page) .input-wrapper:not(:has(.input-icon)) .form-input {
    padding-left: 1rem;
}

/* Custom Select Dropdown */
:where(body.register-page, body.login-page) .custom-select {
    position: relative;
    width: 100%;
}

:where(body.register-page, body.login-page) .custom-select::after {
    display: none !important;
}

:where(body.register-page, body.login-page) .custom-select-trigger {
    width: 100%;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    outline: none !important;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

:where(body.register-page, body.login-page) .custom-select-trigger:hover {
    border-color: rgba(0, 151, 178, 0.45) !important;
    background: rgba(0, 151, 178, 0.04) !important;
}

:where(body.register-page, body.login-page) .custom-select-trigger:focus,
:where(body.register-page, body.login-page) .custom-select.open .custom-select-trigger {
    border-color: var(--color-cyan) !important;
    background: rgba(0, 151, 178, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.15) !important;
}

:where(body.register-page, body.login-page) .custom-select-value {
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    background: transparent !important;
    opacity: 1 !important;
    cursor: pointer;
}

:where(body.register-page, body.login-page) .custom-select-value.is-placeholder,
:where(body.register-page, body.login-page) .custom-select-value.placeholder {
    color: rgba(248, 250, 252, 0.45) !important;
    font-weight: 400 !important;
    background: transparent !important;
    opacity: 1 !important;
}

:where(body.register-page, body.login-page) .custom-select-trigger .select-arrow {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

:where(body.register-page, body.login-page) .custom-select.open .select-arrow {
    transform: rotate(180deg);
    color: var(--color-cyan);
}

:where(body.register-page, body.login-page) .custom-select-dropdown {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.45rem;
    border: 1px solid rgba(0, 151, 178, 0.35);
    border-radius: 0.65rem;
    background: #03101c;
    background: rgba(3, 16, 28, 0.98);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.8), 0 0 1.5rem rgba(0, 151, 178, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Custom scrollbar for dropdown */
:where(body.register-page, body.login-page) .custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

:where(body.register-page, body.login-page) .custom-select-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

:where(body.register-page, body.login-page) .custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 151, 178, 0.45);
    border-radius: 4px;
}

:where(body.register-page, body.login-page) .custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

:where(body.register-page, body.login-page) .custom-select.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

:where(body.register-page, body.login-page) .custom-option {
    position: relative;
    padding: 0.7rem 1rem;
    border-radius: 0.45rem;
    font-family: var(--font-nav);
    font-size: clamp(0.78rem, 0.95vw, 0.86rem);
    font-weight: 500;
    color: rgba(248, 250, 252, 0.78);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
    user-select: none;
    border: 1px solid transparent;
}

:where(body.register-page, body.login-page) .custom-option::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 55%;
    background: var(--color-cyan);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

:where(body.register-page, body.login-page) .custom-option:hover,
:where(body.register-page, body.login-page) .custom-option:focus {
    background: rgba(0, 151, 178, 0.14);
    color: var(--color-white);
    padding-left: 1.25rem;
    border-color: rgba(0, 151, 178, 0.25);
}

:where(body.register-page, body.login-page) .custom-option:hover::before,
:where(body.register-page, body.login-page) .custom-option:focus::before {
    transform: translateY(-50%) scaleY(1);
}

:where(body.register-page, body.login-page) .custom-option.selected {
    background: rgba(201, 154, 75, 0.16);
    color: var(--color-gold-light);
    font-weight: 600;
    border-color: rgba(201, 154, 75, 0.35);
}

:where(body.register-page, body.login-page) .custom-option.selected::before {
    background: var(--color-gold);
    transform: translateY(-50%) scaleY(1);
}

:where(body.register-page, body.login-page) .custom-option.selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.82rem;
    color: var(--color-gold);
    margin-left: 0.5rem;
}

/* Toggle Switch */
:where(body.register-page, body.login-page) .toggle-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

:where(body.register-page, body.login-page) .toggle-switch {
    position: relative;
    display: inline-block;
    width: 2.75rem;
    height: 1.5rem;
    flex-shrink: 0;
    cursor: pointer;
}

:where(body.register-page, body.login-page) .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

:where(body.register-page, body.login-page) .toggle-track {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease;
}

:where(body.register-page, body.login-page) .toggle-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(1.5rem - 6px);
    height: calc(1.5rem - 6px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

:where(body.register-page, body.login-page) .toggle-switch input:checked+.toggle-track {
    background: var(--color-gold);
}

:where(body.register-page, body.login-page) .toggle-switch input:checked+.toggle-track::after {
    transform: translateX(calc(2.75rem - 1.5rem));
    background: var(--color-white);
}

:where(body.register-page, body.login-page) .toggle-label {
    font-family: var(--font-nav);
    font-size: clamp(0.7rem, 1vw, 0.82rem);
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.4;
}

/* Interest Tags */
:where(body.register-page, body.login-page) .interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

:where(body.register-page, body.login-page) .interest-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    border: 1px solid rgba(201, 154, 75, 0.35);
    border-radius: var(--radius-pill);
    background: transparent;
    color: rgba(248, 250, 252, 0.7);
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

:where(body.register-page, body.login-page) .interest-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-white);
    background: rgba(201, 154, 75, 0.08);
}

:where(body.register-page, body.login-page) .interest-tag.active {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background: rgba(201, 154, 75, 0.12);
}

:where(body.register-page, body.login-page) .interest-tag .tag-check {
    display: none;
    font-size: 0.65rem;
}

:where(body.register-page, body.login-page) .interest-tag.active .tag-check {
    display: inline-block;
}

/* Footer Actions */
:where(body.register-page, body.login-page) .register-footer {
    margin-top: clamp(2.5rem, 5vh, 4rem);
}

:where(body.register-page, body.login-page) .register-footer-divider {
    width: 100%;
    height: 1px;
    background: #141d25;
    margin-bottom: 1.5rem;
}

:where(body.register-page, body.login-page) .register-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

:where(body.register-page, body.login-page) .sign-in-link {
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.85rem);
    color: rgba(248, 250, 252, 0.55);
    transition: color 0.25s ease;
}

:where(body.register-page, body.login-page) .sign-in-link strong {
    color: rgba(248, 250, 252, 0.8);
    font-weight: 600;
}

:where(body.register-page, body.login-page) .sign-in-link:hover {
    color: var(--color-white);
}

:where(body.register-page, body.login-page) .sign-in-link:hover strong {
    color: var(--color-cyan);
}

:where(body.register-page, body.login-page) .btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 0.4rem;
    background: var(--color-gold);
    color: var(--color-navy-950);
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:where(body.register-page, body.login-page) .btn-continue i {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

:where(body.register-page, body.login-page) .btn-continue:hover {
    background: var(--color-gold-light);
    box-shadow: 0 0.5rem 1.5rem rgba(201, 154, 75, 0.25);
    transform: translateY(-1px);
}

:where(body.register-page, body.login-page) .btn-continue:hover i {
    transform: translateX(3px);
}

:where(body.register-page, body.login-page) .btn-continue:active {
    transform: translateY(0);
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 768px) {
    :where(body.register-page, body.login-page) .register-hero-content {
        padding: clamp(2.5rem, 5vh, 4rem) 1rem clamp(1rem, 2vh, 2rem);
    }

    :where(body.register-page, body.login-page) .register-subtitle br {
        display: none;
    }

    :where(body.register-page, body.login-page) .form-row {
        flex-direction: column;
        gap: 0;
    }

    :where(body.register-page, body.login-page) .step-wizard-line {
        width: clamp(2rem, 5vw, 4rem);
    }

    :where(body.register-page, body.login-page) .step-label {
        font-size: 0.6rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    :where(body.register-page, body.login-page) .register-form-section {
        padding: 0 1rem clamp(2rem, 4vh, 3rem);
    }

    :where(body.register-page, body.login-page) .register-hero {
        min-height: clamp(14rem, 28vh, 18rem);
    }

    :where(body.register-page, body.login-page) .register-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    :where(body.register-page, body.login-page) .register-meta-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    :where(body.register-page, body.login-page) .register-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.75rem;
    }

    :where(body.register-page, body.login-page) .step-wizard {
        gap: 0;
    }

    :where(body.register-page, body.login-page) .step-wizard-line {
        width: clamp(1.5rem, 4vw, 3rem);
        margin: 0 0.35rem;
        margin-bottom: 1.8rem;
    }

    :where(body.register-page, body.login-page) .step-number {
        width: 1.85rem;
        height: 1.85rem;
        font-size: 0.7rem;
    }

    :where(body.register-page, body.login-page) .step-label {
        font-size: 0.55rem;
    }

    :where(body.register-page, body.login-page) .step-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    :where(body.register-page, body.login-page) .interest-tags {
        gap: 0.45rem;
    }

    :where(body.register-page, body.login-page) .interest-tag {
        padding: 0.45rem 0.85rem;
        font-size: 0.7rem;
    }

    :where(body.register-page, body.login-page) .register-footer-actions {
        flex-direction: column-reverse;
        gap: 1.25rem;
        align-items: stretch;
    }

    :where(body.register-page, body.login-page) .btn-continue {
        justify-content: center;
        padding: 0.95rem 1.5rem;
    }

    :where(body.register-page, body.login-page) .sign-in-link {
        text-align: center;
    }

    :where(body.register-page, body.login-page) .toggle-label {
        font-size: 0.68rem;
    }

    :where(body.register-page, body.login-page) .form-input {
        padding: 0.75rem 0.85rem;
        padding-left: 2.5rem;
    }

    :where(body.register-page, body.login-page) .input-wrapper:not(:has(.input-icon)) .form-input {
        padding-left: 0.85rem;
    }
}

/* Extra-small phones */
@media (max-width: 380px) {
    :where(body.register-page, body.login-page) .step-wizard-item {
        gap: 0.4rem;
    }

    :where(body.register-page, body.login-page) .step-number {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.6rem;
    }

    :where(body.register-page, body.login-page) .step-label {
        font-size: 0.5rem;
    }

    :where(body.register-page, body.login-page) .step-wizard-line {
        width: 1.2rem;
        margin: 0 0.2rem;
        margin-bottom: 1.4rem;
    }
}


/* ===== Login page ===== */
/* ===== Login Page Styles ===== */

body.login-page .login-form-container {
    max-width: 32rem;
}

body.login-page .login-card {
    animation: registerFadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.login-page .login-header {
    margin-bottom: 1.75rem;
}

body.login-page .login-description {
    margin: -0.75rem 0 0;
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.85rem);
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.45);
}

/* Sign-in button full width */
body.login-page .btn-sign-in {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
}

/* Password toggle */
body.login-page .password-toggle {
    position: absolute;
    right: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.25s ease;
    z-index: 1;
}

body.login-page .password-toggle:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Login options row */
body.login-page .login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

body.login-page .remember-me {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-nav);
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    color: rgba(248, 250, 252, 0.55);
    cursor: pointer;
    user-select: none;
}

body.login-page .remember-me input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

body.login-page .custom-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

body.login-page .custom-checkbox::after {
    content: "";
    display: block;
    width: 0.35rem;
    height: 0.6rem;
    border: solid var(--color-navy-950);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -0.1rem;
}

body.login-page .remember-me input:checked+.custom-checkbox {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
}

body.login-page .remember-me input:checked+.custom-checkbox::after {
    transform: rotate(45deg) scale(1);
}

body.login-page .forgot-link {
    font-family: var(--font-nav);
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    color: var(--color-gold-light);
    transition: color 0.25s ease;
}

body.login-page .forgot-link:hover {
    color: var(--color-gold);
}

/* Divider */
body.login-page .login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
}

body.login-page .login-divider::before,
body.login-page .login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

body.login-page .login-divider span {
    font-family: var(--font-nav);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}

/* Social Login */
body.login-page .social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.login-page .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

body.login-page .social-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

body.login-page .social-btn--google svg {
    flex-shrink: 0;
}

body.login-page .social-btn--apple i {
    font-size: 1.15rem;
}

/* Login footer */
body.login-page .login-footer {
    margin-top: 2rem;
}

body.login-page .login-footer-actions {
    justify-content: center !important;
}

body.login-page .login-footer-actions .sign-in-link {
    text-align: center;
}

body.login-page .login-footer-actions .sign-in-link a {
    color: var(--color-cyan);
    transition: color 0.25s ease;
}

body.login-page .login-footer-actions .sign-in-link a:hover {
    color: var(--color-gold-light);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    body.login-page .login-form-container {
        max-width: 100%;
    }

    body.login-page .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    body.login-page .btn-sign-in {
        padding: 0.95rem 1.5rem;
    }
}

/* ===== Forgot-password page ===== */
/* ===== Forgot Password Page Styles ===== */

body.forgot-password-page .forgot-form-container {
    max-width: 34rem;
}

body.forgot-password-page .forgot-card {
    animation: registerFadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.forgot-password-page .forgot-header {
    margin-bottom: 1.75rem;
}

body.forgot-password-page .forgot-description {
    margin: -0.75rem 0 0;
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 1vw, 0.85rem);
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.55);
}

body.forgot-password-page .forgot-description strong {
    color: var(--color-cyan);
    font-weight: 600;
}

/* Step Wizard Container */
body.forgot-password-page .reset-step {
    display: none;
    animation: registerFadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.forgot-password-page .reset-step.active {
    display: block;
}

/* OTP Digit Inputs */
body.forgot-password-page .otp-container {
    margin: 1.25rem 0 1.5rem;
}

body.forgot-password-page .otp-label {
    display: block;
    margin-bottom: 0.65rem;
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gold-light);
    text-transform: uppercase;
}

body.forgot-password-page .otp-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

body.forgot-password-page .otp-digit {
    width: clamp(2.4rem, 6vw, 3.2rem);
    height: clamp(2.8rem, 7vw, 3.6rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

body.forgot-password-page .otp-digit:focus {
    border-color: var(--color-gold);
    background: rgba(201, 154, 75, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.2);
    transform: translateY(-2px);
}

body.forgot-password-page .otp-digit.filled {
    border-color: rgba(69, 178, 209, 0.4);
    background: rgba(69, 178, 209, 0.05);
}

/* Resend Code Section */
body.forgot-password-page .otp-resend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.85rem;
    font-family: var(--font-nav);
    font-size: clamp(0.7rem, 0.9vw, 0.78rem);
    color: rgba(248, 250, 252, 0.5);
}

body.forgot-password-page .resend-btn {
    border: none;
    background: transparent;
    color: var(--color-cyan);
    font-family: var(--font-nav);
    font-size: clamp(0.7rem, 0.9vw, 0.78rem);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.forgot-password-page .resend-btn:hover:not(:disabled) {
    color: var(--color-gold-light);
}

body.forgot-password-page .resend-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: none;
}

body.forgot-password-page .countdown-timer {
    font-weight: 600;
    color: var(--color-gold-light);
}

/* Change Email Link */
body.forgot-password-page .change-email-btn {
    background: none;
    border: none;
    color: var(--color-cyan);
    font-size: inherit;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-left: 0.35rem;
    transition: color 0.2s ease;
}

body.forgot-password-page .change-email-btn:hover {
    color: var(--color-gold-light);
}

/* Password Strength Meter */
body.forgot-password-page .password-strength-wrap {
    margin-top: 0.5rem;
}

body.forgot-password-page .strength-bar-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

body.forgot-password-page .strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

body.forgot-password-page .strength-bar.weak {
    width: 33%;
    background-color: #ef4444;
}

body.forgot-password-page .strength-bar.medium {
    width: 66%;
    background-color: #f59e0b;
}

body.forgot-password-page .strength-bar.strong {
    width: 100%;
    background-color: #10b981;
}

body.forgot-password-page .strength-text {
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.45);
    display: flex;
    justify-content: space-between;
}

body.forgot-password-page .strength-label {
    font-weight: 600;
}

body.forgot-password-page .strength-label.weak { color: #ef4444; }
body.forgot-password-page .strength-label.medium { color: #f59e0b; }
body.forgot-password-page .strength-label.strong { color: #10b981; }

/* Success State */
body.forgot-password-page .reset-success-card {
    text-align: center;
    padding: 1rem 0;
}

body.forgot-password-page .success-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(69, 178, 209, 0.2) 0%, rgba(201, 154, 75, 0.2) 100%);
    border: 2px solid var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 25px rgba(69, 178, 209, 0.3);
    animation: forgotPulseGlow 2s infinite ease-in-out;
}

body.forgot-password-page .success-icon-wrap i {
    font-size: 1.85rem;
    color: var(--color-cyan);
}

@keyframes forgotPulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(69, 178, 209, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(69, 178, 209, 0.5);
        transform: scale(1.05);
    }
}

body.forgot-password-page .success-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

body.forgot-password-page .success-desc {
    font-family: var(--font-nav);
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: 2rem;
}

/* Toast alert notification */
body.forgot-password-page .toast-notice {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0b1a2d;
    border: 1px solid var(--color-cyan);
    border-radius: 0.5rem;
    padding: 0.85rem 1.25rem;
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: 0.82rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

body.forgot-password-page .toast-notice.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.forgot-password-page .toast-notice.error {
    border-color: #ef4444;
}

body.forgot-password-page .toast-notice.error i {
    color: #ef4444;
}

body.forgot-password-page .toast-notice.success i {
    color: var(--color-cyan);
}

/* Back button in footer */
body.forgot-password-page .btn-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 250, 252, 0.55);
    font-family: var(--font-nav);
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.forgot-password-page .btn-back-link:hover {
    color: var(--color-gold-light);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    body.forgot-password-page .forgot-form-container {
        max-width: 100%;
    }

    body.forgot-password-page .otp-inputs {
        gap: 0.35rem;
    }

    body.forgot-password-page .otp-digit {
        height: 2.8rem;
        font-size: 1.1rem;
    }

    body.forgot-password-page .toast-notice {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* Gentle shared motion and animated form feedback */
html {
    scroll-behavior: smooth;
}

html.js body:not(.point3-page) main,
html.js .point3-page #p3-root > main:not(.p3-loading) {
    animation: idlPageEnter 440ms cubic-bezier(.22, 1, .36, 1) both;
}

.idl-motion-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms cubic-bezier(.22, 1, .36, 1), transform 520ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--idl-motion-delay, 0ms);
    will-change: opacity, transform;
}

.idl-motion-reveal.is-motion-visible {
    opacity: 1;
    transform: translateY(0);
}

:where(.idl-button, .btn, button, .idl-card-link, .p3-social-link, .p3-contact-list a) {
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

:where(input, select, textarea).idl-field-valid,
:where(input, select, textarea).idl-field-invalid {
    transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

:where(input, select, textarea).idl-field-valid:not(:focus) {
    border-color: rgba(0, 151, 178, .48) !important;
}

:where(input, select, textarea).idl-field-invalid {
    border-color: rgba(239, 100, 100, .76) !important;
    box-shadow: 0 0 0 .16rem rgba(209, 67, 67, .1) !important;
}

.idl-field-feedback {
    display: flex;
    width: 100%;
    align-items: center;
    gap: .4rem;
    margin-top: .45rem;
    color: #f3a7a7 !important;
    font-size: .68rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.idl-field-feedback::before {
    content: "!";
    display: inline-grid;
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: .58rem;
}

.idl-field-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

dialog#gallery-lightbox[open] {
    animation: idlModalEnter 300ms cubic-bezier(.22, 1, .36, 1) both;
}

dialog#gallery-lightbox[open]::backdrop {
    animation: idlBackdropEnter 260ms ease both;
}

dialog#gallery-lightbox.is-closing {
    animation: idlModalLeave 220ms ease both;
}

@keyframes idlPageEnter {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes idlModalEnter {
    from { opacity: 0; transform: translateY(12px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes idlModalLeave {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(8px) scale(.99); }
}

@keyframes idlBackdropEnter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.js body:not(.point3-page) main,
    html.js .point3-page #p3-root > main:not(.p3-loading),
    dialog#gallery-lightbox[open],
    dialog#gallery-lightbox[open]::backdrop,
    dialog#gallery-lightbox.is-closing {
        animation: none !important;
    }
    .idl-motion-reveal,
    .idl-motion-reveal.is-motion-visible,
    .idl-field-feedback {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
}
