/* ============================================
   ICASD2026 — Sovereign Blueprint Design System
   Brutalist Academic Aesthetic
   ============================================ */

/* ---- Material Symbols ---- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

:root {
    /* ---- Sovereign Blueprint Palette ---- */
    --primary: #002948;
    --primary-container: #00406b;
    --primary-light: #134975;
    --on-primary: #ffffff;
    --on-primary-container: #7facdd;

    --secondary: #c8a44e;
    --secondary-container: #fdd57a;
    --secondary-dim: #e8c268;
    --on-secondary: #ffffff;
    --on-secondary-container: #785b06;

    --surface: #f9f9f9;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f3f3f3;
    --surface-container: #eeeeee;
    --surface-container-high: #e8e8e8;
    --surface-container-highest: #e2e2e2;
    --surface-dim: #dadada;

    --on-surface: #1a1c1c;
    --on-surface-variant: #42474f;
    --outline: #727780;
    --outline-variant: #c2c7d0;

    --error: #ba1a1a;
    --success: #10b981;

    /* ---- Typography ---- */
    --font-headline: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* ---- Spacing & Sizing ---- */
    --container-max: 1400px;
    --container-gutter: 32px;
    --section-space: 96px;
    --grid-gap: 32px;

    /* ---- Transitions ---- */
    --transition: all 0.15s ease-in-out;
    --transition-slow: all 0.3s ease;

    /* ---- Shadows (Ambient Bloom) ---- */
    --shadow-ambient: 0 4px 40px rgba(26, 28, 28, 0.04);
    --shadow-ambient-lg: 0 8px 60px rgba(26, 28, 28, 0.06);
    --shadow-ambient-sm: 0 2px 20px rgba(26, 28, 28, 0.03);

    /* ---- Gradients ---- */
    --gradient-academic: linear-gradient(135deg, #002948 0%, #00406b 100%);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--on-surface);
    background: var(--surface);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headline);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ---- 0px Border Radius (Sovereign Rule) ---- */
*,
*::before,
*::after {
    border-radius: 0 !important;
}

/* ---- Container ---- */
.container {
    width: min(calc(100% - (var(--container-gutter) * 2)), var(--container-max));
    margin: 0 auto;
}

/* ---- Responsive Scaling ---- */
@media (min-width: 768px) {
    :root {
        --container-gutter: 32px;
        --section-space: 96px;
        --grid-gap: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --container-gutter: 16px;
        --section-space: 72px;
        --grid-gap: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-gutter: 12px;
    }
}

@media (min-width: 1280px) {
    :root {
        --container-max: 1400px;
        --container-gutter: 48px;
        --section-space: 104px;
        --grid-gap: 32px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container-max: 1520px;
        --container-gutter: 56px;
        --section-space: 120px;
        --grid-gap: 36px;
    }
}

@media (min-width: 2200px) {
    html {
        font-size: 17px;
    }

    :root {
        --container-max: 1760px;
        --container-gutter: 72px;
        --section-space: 136px;
        --grid-gap: 40px;
    }
}

@media (min-width: 3000px) {
    html {
        font-size: 18px;
    }

    :root {
        --container-max: 2080px;
        --container-gutter: 96px;
        --section-space: 152px;
        --grid-gap: 48px;
    }
}

/* ============================================
   NAVBAR — Frosted Glass, Fixed Top
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 249, 249, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(249, 249, 249, 0.95);
    box-shadow: var(--shadow-ambient);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-logo-img--header {
    width: clamp(150px, 10vw, 196px);
    height: clamp(54px, 4.8vw, 68px);
}

.brand-wordmark {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
}

.brand-wordmark::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--secondary);
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--on-surface-variant);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu>li>a:hover {
    color: var(--primary-container);
}

.nav-menu>li>a.active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 6px;
}

.nav-menu>li>a svg {
    opacity: 0.5;
    transition: var(--transition);
}

.nav-menu>li>a:hover svg {
    opacity: 1;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: var(--surface-container-lowest);
    box-shadow: var(--shadow-ambient-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--on-surface);
    font-size: 14px;
    font-weight: 500;
}

.dropdown li a:hover {
    background: var(--surface-container-low);
    color: var(--primary);
}

/* Submit Paper CTA */
.nav-cta {
    background: var(--primary-container);
    color: var(--on-primary);
    padding: 12px 28px;
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary);
}

/* Mobile Menu Toggle — Brutalist */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    transition: var(--transition-slow);
}

.menu-toggle span:nth-child(2) {
    width: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 20, 40, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        background: var(--primary-container);
    }

    .menu-toggle.active {
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(0, 0, 0, 0.2);
        padding: 8px 10px;
        border-radius: 0 !important;
        margin-top: -2px;
    }

    .menu-toggle.active span {
        background: var(--secondary);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        max-width: 0;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--primary);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        padding: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.35s;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000;
    }

    .nav-menu.active {
        max-width: min(320px, 85vw);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu::before {
        content: attr(data-mobile-title);
        display: flex;
        align-items: center;
        height: 72px;
        /* Set exact height to match navbar and center toggle */
        padding: 0 24px;
        font-family: var(--font-headline);
        font-size: 20px;
        font-weight: 900;
        letter-spacing: 0.05em;
        color: var(--secondary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.15);
    }

    .nav-menu>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu>li>a {
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        border-left: 4px solid transparent;
    }

    .nav-menu>li>a:hover {
        background: rgba(200, 164, 78, 0.1);
        color: var(--secondary);
    }

    .nav-menu>li>a.active {
        background: rgba(255, 255, 255, 0.05);
        color: var(--secondary);
        border-left-color: var(--secondary);
        border-bottom: none;
    }

    .nav-menu>li>a svg {
        margin-left: auto;
        opacity: 0.6;
        transition: transform 0.3s ease;
    }

    .has-dropdown.open>a svg {
        transform: rotate(180deg);
        opacity: 1;
        color: var(--secondary);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        margin: 0;
        padding: 0;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .dropdown li:last-child {
        border-bottom: none;
    }

    .dropdown li a {
        color: rgba(255, 255, 255, 0.85);
        padding: 16px 24px 16px 48px;
        font-size: 15px;
        font-weight: 600;
        border-left: 4px solid transparent;
        position: relative;
    }

    .dropdown li a::before {
        content: '›';
        position: absolute;
        left: 32px;
        top: 16px;
        color: var(--secondary);
        font-weight: 700;
        font-size: 18px;
        opacity: 0.8;
    }

    .dropdown li a:hover {
        background: rgba(200, 164, 78, 0.08);
        color: var(--secondary);
    }
}

/* ============================================
   HERO SECTION — Sovereign Blueprint
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 140px var(--container-gutter) 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
        linear-gradient(var(--surface-container-highest) 1px, transparent 1px),
        linear-gradient(90deg, var(--surface-container-highest) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

/* Remove old particles */
.hero-particles,
.hero-particle {
    display: none;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.hero-visual {
    flex-shrink: 0;
    width: min(100%, 360px);
    margin-top: -40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    order: -1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left top;
    filter: drop-shadow(0 15px 30px rgba(0, 41, 72, 0.15));
}

@media (min-width: 1024px) {
    .hero-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 64px;
    }
    .hero-visual {
        width: clamp(350px, 40vw, 600px);
        justify-content: flex-end;
        order: 1;
    }
}

.hero-content {
    flex: 1;
    max-width: 900px;
    text-align: left;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-kicker-line {
    width: 48px;
    height: 2px;
    background: var(--secondary);
}

.hero-kicker-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(200, 164, 78, 0.1);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title--compact {
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    line-height: 0.95;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 8px;
}

.hero-logo-inline {
    width: clamp(80px, 10vw, 140px);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
    margin-top: 8px;
}

.hero-logo {
    width: min(100%, 180px);
    max-height: 140px;
    object-fit: contain;
    margin: 0 0 20px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
}

.hero-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin: 0 0 20px;
    background: rgba(0, 41, 72, 0.06);
    color: var(--primary);
    font-family: var(--font-headline);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--on-surface-variant);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--on-surface-variant);
}

.hero-meta-item svg,
.hero-meta-item .material-symbols-outlined {
    color: var(--secondary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 64px;
    border-top: 1px solid rgba(194, 199, 208, 0.3);
    position: relative;
    z-index: 2;
}

.stats-bar-item {
    padding: 40px 0;
    border-right: 1px solid rgba(194, 199, 208, 0.3);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-item:not(:first-child) {
    padding-left: 32px;
}

.stats-bar-number {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
}

.stats-bar-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--outline);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-bg-pattern {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stats-bar-item {
        padding: 24px 0;
    }

    .stats-bar-item:not(:first-child) {
        padding-left: 20px;
    }

    .stats-bar-item:nth-child(2) {
        border-right: none;
    }

    .stats-bar-item:nth-child(3) {
        border-top: 1px solid rgba(194, 199, 208, 0.3);
    }

    .stats-bar-item:nth-child(4) {
        border-top: 1px solid rgba(194, 199, 208, 0.3);
        border-right: none;
    }
}

/* ============================================
   BUTTONS — Sharp, Bold, Sovereign
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-container);
    color: var(--on-primary);
}

.btn-primary:hover {
    background: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-container);
    color: var(--primary-container);
}

.btn-outline:hover {
    background: var(--primary-container);
    color: var(--on-primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--on-primary);
}

.btn-dark:hover {
    background: var(--primary-container);
}

.btn-gold {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
}

.btn-gold:hover {
    background: var(--secondary-dim);
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-ghost:hover {
    background: var(--primary);
    color: var(--on-primary);
}

.section-dark .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--on-primary);
}

.section-dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.hero-proposal .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--on-primary);
}

.hero-proposal .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ============================================
   COUNTDOWN — Sovereign Tonal Block
   ============================================ */
.countdown-section-v2 {
    background: var(--primary);
    padding: var(--section-space) 0;
}

.countdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.countdown-header {
    margin-bottom: 0;
}

.countdown-title {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--on-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.countdown-title .highlight {
    color: var(--secondary);
}

.countdown-subtitle {
    font-size: 15px;
    color: rgba(157, 202, 253, 0.7);
}

.countdown-icon {
    display: none;
}

.countdown-v2 {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.countdown-tile {
    text-align: center;
}

.countdown-tile-inner {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-container);
    border-bottom: 4px solid var(--secondary);
}

.countdown-number {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 900;
    color: var(--on-primary);
    line-height: 1;
}

.countdown-label-v2 {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 12px;
}

.countdown-separator {
    font-family: var(--font-headline);
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 100px;
    user-select: none;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.countdown-cta {
    display: none;
}

.countdown-wrapper {
    max-width: none;
    margin: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-align: left;
}

.countdown-wrapper::before {
    display: none;
}

@media (max-width: 768px) {
    .countdown-section-v2 {
        padding: 60px 0;
    }

    .countdown-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .countdown-v2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 14px 12px;
    }

    .countdown-tile-inner {
        width: 100%;
        height: 72px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .countdown-v2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
        justify-content: stretch;
    }

    .countdown-tile-inner {
        width: 100%;
        height: 60px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-label-v2 {
        font-size: 8px;
    }
}

/* ============================================
   HOME PAGE SECTIONS
   ============================================ */
.home-topics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.home-topics-header__copy {
    max-width: 600px;
}

.home-topics-header__year {
    font-family: var(--font-headline);
    font-size: 6rem;
    font-weight: 900;
    color: var(--secondary);
    opacity: 0.1;
    line-height: 1;
}

.home-topics-cta {
    margin-top: 48px;
}

.home-leadership-grid,
.home-submission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.home-leadership-media {
    position: relative;
}

.home-leadership-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-academic);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-leadership-placeholder span {
    font-family: var(--font-headline);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.home-leadership-callout {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 280px;
    padding: 32px;
    transform: translateY(40px);
    background: var(--primary);
    color: var(--on-primary);
}

.home-leadership-callout h4 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.home-leadership-callout p {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
}

.home-leadership-title {
    line-height: 1.05;
}

.home-leadership-body {
    margin-top: 32px;
}

.home-leadership-quote {
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--on-surface);
}

.home-leadership-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--outline-variant);
}

.home-leadership-columns__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.home-leadership-columns__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.home-leadership-columns__list li {
    font-size: 14px;
    color: var(--on-surface-variant);
}

.home-submission-actions,
.home-videos-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-videos-stack {
    margin-top: 32px;
    gap: 12px;
}

.home-submission-actions__btn {
    justify-content: center;
}

.home-submission-actions__btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--on-primary);
}

.home-video-title {
    color: var(--on-primary);
}

.home-video-desc {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
    .home-leadership-grid,
    .home-submission-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-leadership-callout {
        position: static;
        transform: none;
        margin-top: 18px;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home-topics-header__year {
        display: none;
    }

    .home-topics-cta {
        margin-top: 32px;
    }

    .home-leadership-placeholder {
        height: 320px;
    }

    .home-leadership-placeholder span {
        font-size: 5rem;
    }

    .home-leadership-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   SECTIONS — Tonal Blocking
   ============================================ */
.section {
    padding: var(--section-space) 0;
}

.section-dark {
    background: var(--gradient-academic);
    color: var(--on-primary);
}

.section-alt {
    background: var(--surface-container-low);
}

.section-surface {
    background: var(--surface);
}

.section-header {
    margin-bottom: clamp(2.5rem, 4vw, 5rem);
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-container);
    color: var(--on-secondary-container);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(200, 164, 78, 0.15);
    color: var(--secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--on-primary);
}

.section-title .highlight {
    color: var(--secondary);
}

.section-title-underline {
    width: 96px;
    height: 4px;
    background: var(--secondary);
    margin-top: 8px;
}

.section-desc {
    font-size: 17px;
    color: var(--on-surface-variant);
    max-width: 640px;
    line-height: 1.7;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PAGE HERO (Inner pages) — Academic Gradient
   ============================================ */
.page-hero {
    padding: 180px var(--container-gutter) 80px;
    background: var(--gradient-academic);
    color: var(--on-primary);
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Grid overlay background */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent);
    background-size: calc(100% / 12) 100%;
}

.page-hero-kicker {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-dim);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-hero-title .highlight {
    color: var(--secondary-dim);
}

.page-hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(157, 202, 253, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

.page-hero-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

.page-hero-breadcrumb a {
    color: var(--secondary-dim);
}

.page-hero-breadcrumb a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 20px 60px;
    }
}

/* ============================================
   CARDS — Sharp Tonal Blocks
   ============================================ */
.card {
    background: var(--surface-container-lowest);
    padding: 32px;
    box-shadow: var(--shadow-ambient-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-ambient);
}

.card-accent-left {
    border-left: 4px solid var(--secondary);
}

.card-accent-top {
    border-top: 4px solid var(--primary);
}

.card-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-container);
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-text {
    font-size: 15px;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {

    .grid-4,
    .grid-3,
    .grid-2,
    .grid-12 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BENTO GRID — Asymmetric Editorial Layout
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.bento-grid>.span-8 {
    grid-column: span 8;
}

.bento-grid>.span-4 {
    grid-column: span 4;
}

.bento-grid>.span-6 {
    grid-column: span 6;
}

.bento-grid>.span-12 {
    grid-column: span 12;
}

.bento-grid>.row-span-2 {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid>.span-8,
    .bento-grid>.span-4,
    .bento-grid>.span-6,
    .bento-grid>.span-12 {
        grid-column: span 1;
    }

    .bento-grid>.row-span-2 {
        grid-row: span 1;
    }
}

/* Bento Card */
.bento-card {
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-card.bg-primary {
    background: var(--primary);
    color: var(--on-primary);
}

.bento-card.bg-primary-container {
    background: var(--primary-container);
    color: var(--on-primary);
}

.bento-card.bg-surface {
    background: var(--surface-container-low);
}

.bento-card.bg-surface-high {
    background: var(--surface-container-high);
}

.bento-card.bg-gold {
    background: var(--secondary);
    color: var(--primary);
}

.bento-card.border-left-gold {
    border-left: 8px solid var(--secondary);
}

.bento-card.border-left-primary {
    border-left: 8px solid var(--primary);
}

.bento-card.border-top-primary {
    border-top: 4px solid var(--primary);
}

.bento-card.border-top-gold {
    border-top: 4px solid var(--secondary);
}

.bento-number {
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.15;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.bento-card.bg-primary .bento-number,
.bento-card.bg-primary-container .bento-number {
    color: var(--secondary-dim);
}

.bento-kicker {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.bento-title {
    font-family: var(--font-headline);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.bento-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    max-width: 520px;
}

.bento-card.bg-primary .bento-desc,
.bento-card.bg-primary-container .bento-desc {
    color: rgba(157, 202, 253, 0.7);
}

.bento-card.bg-gold .bento-desc {
    color: rgba(0, 41, 72, 0.7);
}

.bento-card.bg-gold .bento-kicker {
    color: var(--primary);
}

/* Subtopic chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.chip {
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

.chip-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.chip-gold {
    background: var(--secondary);
    color: var(--on-primary);
}

@media (max-width: 768px) {
    .bento-card {
        padding: 28px;
    }
}

/* ============================================
   COUNTERS
   ============================================ */
.counters-section {
    padding: var(--section-space) 0;
    background: var(--surface-container-lowest);
    border-top: 1px solid var(--outline-variant);
    border-bottom: 1px solid var(--outline-variant);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.counter-item {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid var(--outline-variant);
}

.counter-item:last-child {
    border-right: none;
}

.counter-icon {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.counter-number {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}

.counter-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--outline);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        padding: 28px 16px;
    }

    .counter-item:nth-child(2) {
        border-right: none;
    }

    .counter-item:nth-child(3),
    .counter-item:nth-child(4) {
        border-top: 1px solid var(--outline-variant);
    }

    .counter-item:nth-child(4) {
        border-right: none;
    }

    .counter-number {
        font-size: 32px;
    }
}

/* ============================================
   PARTNERS / LOGOS
   ============================================ */
.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--grid-gap);
    margin-top: 40px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary);
    min-width: min(100%, 280px);
}

.partner-card:hover {
    box-shadow: var(--shadow-ambient);
    border-color: var(--secondary);
}

.partner-card .abbr {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-academic);
    color: var(--on-primary);
    font-size: 14px;
    font-weight: 800;
}

.partner-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--surface-container-lowest);
    padding: 4px;
}

.partner-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-container);
    font-size: 12px;
    font-weight: 700;
    color: var(--on-secondary-container);
    letter-spacing: 0.05em;
}

.footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-partner-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-partner-logo:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   TIMELINE (Important Dates) — Numbered Blocks
   ============================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary);
}

.timeline-item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--surface-container-lowest);
    border: 3px solid var(--secondary);
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary);
}

.timeline-item.passed .timeline-dot {
    background: var(--secondary);
}

.timeline-date {
    font-family: var(--font-headline);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--on-surface-variant);
}

/* ============================================
   PRICING TABLE — Tonal Sharp Cards
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--surface-container-lowest);
    padding: 40px 32px;
    border: 1px solid var(--outline-variant);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
}

.pricing-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-ambient);
}

.pricing-card.featured {
    border-color: var(--secondary);
    border-left: 6px solid var(--secondary);
    box-shadow: var(--shadow-ambient);
}

.pricing-period {
    font-family: var(--font-headline);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.pricing-category {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.pricing-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--surface-container);
}

.pricing-type {
    font-size: 14px;
    color: var(--on-surface-variant);
    font-weight: 500;
}

.pricing-amount {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-note {
    font-size: 13px;
    color: var(--on-surface-variant);
    font-style: italic;
    padding: 12px;
    background: var(--surface-container-low);
}

/* ============================================
   TOPICS / TRACKS
   ============================================ */
.track-card {
    background: var(--surface-container-lowest);
    overflow: hidden;
    border: 1px solid var(--outline-variant);
    transition: var(--transition);
}

.track-card:hover {
    box-shadow: var(--shadow-ambient);
    border-color: var(--secondary);
}

.track-header {
    padding: 32px;
    background: var(--gradient-academic);
    color: var(--on-primary);
    position: relative;
    overflow: hidden;
}

.track-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(200, 164, 78, 0.2);
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--secondary);
}

.track-name {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.track-body {
    padding: 32px;
}

.track-desc {
    font-size: 15px;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 20px;
}

.track-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.track-topic {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--surface-container);
    color: var(--primary);
    transition: var(--transition);
}

.track-topic:hover {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

/* ============================================
   COMMITTEES
   ============================================ */
.committee-section {
    margin-bottom: 48px;
}

.committee-title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.committee-number {
    color: var(--secondary);
    font-size: 1.2em;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--surface-container-lowest);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-ambient-sm);
    transition: var(--transition);
}

.member-card:hover {
    box-shadow: var(--shadow-ambient);
}

.member-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-container);
    color: var(--outline);
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 700;
}

.member-photo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.member-info {
    min-width: 0;
}

.member-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.member-title-text {
    font-size: 12px;
    color: var(--outline);
    font-style: italic;
    line-height: 1.45;
}

.member-affiliation {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.45;
}

/* ============================================
   SPEAKERS
   ============================================ */
.speaker-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.speaker-card:hover {
    box-shadow: var(--shadow-ambient);
    border-color: var(--secondary);
}

.speaker-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.speaker-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-academic);
    color: var(--on-primary);
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 800;
}

.speaker-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.speaker-title-text {
    font-size: 13px;
    color: var(--outline);
    margin-bottom: 4px;
}

.speaker-affiliation {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
}

.speaker-bio {
    margin-top: 10px;
    font-size: 12px;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

.speaker-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.speaker-badge.international {
    background: var(--primary);
    color: var(--on-primary);
}

.speaker-badge.national {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

/* ============================================
   CHAIRMAN CARDS
   ============================================ */
.chairman-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}

.chairman-card {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: var(--transition);
    max-width: 340px;
    width: 100%;
}

.chairman-card::before {
    display: none;
}

.chairman-card:hover {
    box-shadow: none;
}

.chairman-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    margin: 0 0 24px;
    border: 4px solid var(--primary);
    border-bottom: 8px solid var(--secondary);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.chairman-card:hover .chairman-photo {
    transform: translateY(-8px);
    box-shadow: 16px 16px 0px var(--surface-container-highest);
}

.chairman-avatar {
    width: 100%;
    height: 380px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-academic);
    color: var(--on-primary);
    font-family: var(--font-headline);
    font-size: 64px;
    font-weight: 800;
    border: 4px solid var(--primary);
    border-bottom: 8px solid var(--secondary);
    transition: transform 0.4s ease;
}

.chairman-card:hover .chairman-avatar {
    transform: translateY(-8px);
    box-shadow: 16px 16px 0px var(--surface-container-highest);
}

.chairman-info {
    min-width: 0;
}

.chairman-name {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
    line-height: 1.2;
}

.chairman-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--secondary);
    display: inline-block;
    padding: 6px 16px;
}

.chairman-affiliation {
    display: block;
    font-size: 14px;
    color: var(--outline);
    margin-top: 8px;
}

.honorary-showcase .chairman-card {
    background: var(--surface-container-lowest);
}

.chairman-grid-home {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 768px) {
    .chairman-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .chairman-photo,
    .chairman-avatar {
        width: 80px;
        height: 80px;
    }

    .chairman-card {
        padding: 20px 12px 16px;
    }

    .chairman-name {
        font-size: 13px;
    }

    .chairman-role {
        font-size: 11px;
    }

    .chairman-affiliation {
        font-size: 10px;
        padding: 2px 8px;
    }
}

@media (max-width: 520px) {
    .chairman-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--on-surface);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid var(--primary);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--on-surface);
    background: transparent;
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    border: 2px solid var(--primary);
    padding: 14px;
}

.form-textarea:focus {
    border-color: var(--secondary);
}

.contact-info-card {
    padding: 40px;
    background: var(--gradient-academic);
    color: var(--on-primary);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 78, 0.15);
    font-size: 18px;
    color: var(--secondary);
}

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-value a {
    color: var(--secondary-dim);
}

.contact-info-value a:hover {
    text-decoration: underline;
}

/* Alert */
.alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.06);
    color: #065f46;
    border-left-color: var(--success);
}

/* ============================================
   VENUE / MAP
   ============================================ */
.map-container {
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
    border: 2px solid var(--outline-variant);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ============================================
   GOOGLE FORM EMBED
   ============================================ */
.form-embed-container {
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
    border: 2px solid var(--outline-variant);
    background: var(--surface-container-lowest);
    max-width: 700px;
    margin: 0 auto;
}

.form-embed-container iframe {
    width: 100%;
    min-height: 800px;
    border: 0;
}

/* ============================================
   MANUSCRIPT / PUBLICATION
   ============================================ */
.manuscript-content,
.publication-content {
    max-width: 800px;
    margin: 0 auto;
}

.manuscript-content,
.dynamic-content {
    background: var(--surface-container-lowest);
    padding: 48px;
    box-shadow: var(--shadow-ambient);
    border-left: 4px solid var(--secondary);
}

.manuscript-content h2,
.dynamic-content h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
    text-transform: uppercase;
}

.manuscript-content h3,
.dynamic-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--primary);
}

.manuscript-content p,
.dynamic-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
    color: var(--on-surface);
}

.manuscript-content ul,
.manuscript-content ol,
.dynamic-content ul,
.dynamic-content ol {
    margin: 0 0 18px 22px;
    padding-left: 0;
}

.manuscript-content li,
.dynamic-content li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--on-surface);
}

.dynamic-content ul li {
    list-style: disc;
}

.dynamic-content ol li {
    list-style: decimal;
}

.dynamic-content strong {
    color: var(--primary);
}

.dynamic-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.publication-card {
    background: var(--surface-container-lowest);
    padding: 48px;
    box-shadow: var(--shadow-ambient);
    border-left: 4px solid var(--secondary);
}

.publication-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.publication-note {
    padding: 20px;
    background: var(--surface-container-low);
    border-left: 4px solid var(--primary);
    margin-top: 24px;
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* ============================================
   VIDEOS
   ============================================ */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

/* ============================================
   STRUCTURED CMS PAGES — Academic Editorial
   ============================================ */
.page-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-hero-title,
.page-hero-desc,
.section-title {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.section-marker {
    font-family: var(--font-headline);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(200, 164, 78, 0.16);
}

.structured-rich-text {
    color: var(--on-surface);
}

.structured-rich-text p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(26, 28, 28, 0.82);
}

.structured-rich-text p:last-child {
    margin-bottom: 0;
}

.structured-rich-text strong {
    color: var(--primary);
    font-weight: 800;
}

.structured-rich-text ul,
.structured-rich-text ol {
    margin: 0;
    padding: 0;
}

.structured-rich-text li {
    line-height: 1.75;
    color: rgba(26, 28, 28, 0.82);
}

.about-overview-section {
    background:
        linear-gradient(90deg, rgba(0, 41, 72, 0.035) 0 1px, transparent 1px),
        linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
    background-size: 44px 44px, auto;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
}

.about-brief-panel,
.about-narrative-panel,
.publication-main-panel,
.publication-pathway-rail,
.publication-note-panel,
.publication-cta,
.about-extra-card {
    border: 1px solid rgba(0, 41, 72, 0.08);
    box-shadow: 0 18px 52px rgba(0, 41, 72, 0.06);
}

.about-brief-panel {
    padding: clamp(24px, 3vw, 40px);
    background: var(--primary);
    color: var(--on-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 42px;
    min-height: 520px;
}

.about-brief-panel .section-badge,
.about-vision-band .section-badge,
.publication-pathway-rail .section-badge {
    width: fit-content;
    background: rgba(200, 164, 78, 0.16);
    color: var(--secondary-dim);
}

.about-brief-panel h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 0.96;
    color: var(--on-primary);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.about-brief-panel p {
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.about-fact-stack {
    display: grid;
    gap: 12px;
}

.about-fact-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-fact-item .material-symbols-outlined {
    color: var(--secondary);
}

.about-fact-item span:not(.material-symbols-outlined) {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.about-fact-item strong {
    display: block;
    color: var(--on-primary);
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: normal;
}

.about-narrative-panel {
    position: relative;
    padding: clamp(26px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.88);
    display: grid;
    align-content: start;
    gap: 18px;
    overflow: hidden;
}

.about-narrative-panel::before,
.publication-main-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), rgba(200, 164, 78, 0.08));
}

.about-narrative-panel h2,
.publication-main-panel h2,
.about-extra-card h2 {
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.about-rich-text {
    max-width: 78ch;
}

.about-vision-band {
    padding: clamp(70px, 8vw, 112px) 0;
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(0, 64, 107, 0.98)),
        radial-gradient(circle at 82% 12%, rgba(200, 164, 78, 0.24), transparent 34%);
    color: var(--on-primary);
}

.about-vision-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.about-vision-grid h2 {
    margin-top: 18px;
    max-width: 12ch;
    font-size: clamp(2.25rem, 5vw, 4.6rem);
    color: var(--on-primary);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.about-vision-statement {
    padding: clamp(24px, 3vw, 42px);
    border-left: 6px solid var(--secondary);
    background: rgba(255, 255, 255, 0.06);
}

.about-vision-statement p {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
}

.about-vision-statement strong {
    color: var(--secondary-dim);
}

.about-section-header {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.about-mission-list ol {
    counter-reset: mission;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-mission-list li {
    counter-increment: mission;
    position: relative;
    min-height: 250px;
    padding: 28px 26px 30px;
    list-style: none;
    background: var(--surface-container-lowest);
    border: 1px solid rgba(0, 41, 72, 0.08);
    border-top: 5px solid var(--secondary);
    box-shadow: 0 16px 42px rgba(0, 41, 72, 0.05);
}

.about-mission-list li::before {
    content: counter(mission, decimal-leading-zero);
    display: block;
    margin-bottom: 24px;
    font-family: var(--font-headline);
    font-size: 2.7rem;
    line-height: 0.9;
    font-weight: 900;
    color: rgba(0, 41, 72, 0.12);
}

.about-mission-list li strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-headline);
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
}

.about-mission-list li p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: rgba(26, 28, 28, 0.74);
}

.about-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.about-extra-card {
    padding: 32px;
    background: var(--surface-container-lowest);
}

.about-info-section {
    padding-top: 72px;
}

.about-cta {
    display: grid;
    justify-items: center;
    gap: 16px;
    max-width: 860px;
    text-align: center;
}

.about-cta .section-title {
    text-align: center;
    margin-bottom: 0;
}

.about-cta .section-desc {
    text-align: center;
}

.about-cta-actions,
.publication-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

/* ============================================
   SCOPE PAGE
   ============================================ */
.scope-overview-section {
    background:
        linear-gradient(90deg, rgba(0, 41, 72, 0.035) 0 1px, transparent 1px),
        linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
    background-size: 44px 44px, auto;
}

.scope-overview-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
}

.scope-brief-panel,
.scope-overview-panel,
.scope-profile-card {
    border: 1px solid rgba(0, 41, 72, 0.08);
    box-shadow: 0 18px 52px rgba(0, 41, 72, 0.06);
}

.scope-brief-panel {
    padding: clamp(24px, 3vw, 40px);
    background: var(--primary);
    color: var(--on-primary);
    display: grid;
    align-content: space-between;
    gap: 32px;
}

.scope-brief-panel .section-badge,
.scope-impact-band .section-badge {
    width: fit-content;
    background: rgba(200, 164, 78, 0.16);
    color: var(--secondary-dim);
}

.scope-brief-panel h2,
.scope-impact-band h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--on-primary);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
}

.scope-brief-panel p {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.scope-highlight-stack {
    display: grid;
    gap: 12px;
}

.scope-highlight-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scope-highlight-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.scope-highlight-item strong {
    display: block;
    color: var(--on-primary);
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.scope-overview-panel {
    position: relative;
    padding: clamp(26px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    gap: 18px;
    overflow: hidden;
}

.scope-overview-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), rgba(200, 164, 78, 0.08));
}

.scope-overview-panel h2 {
    font-size: clamp(1.9rem, 3vw, 3.15rem);
    color: var(--primary);
    text-transform: uppercase;
}

.scope-profile-section .section-header {
    max-width: 760px;
}

.scope-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.scope-profile-card {
    min-height: 180px;
    padding: 24px 22px 26px;
    background: var(--surface-container-lowest);
    border-top: 4px solid var(--secondary);
    display: grid;
    align-content: start;
    gap: 16px;
}

.scope-profile-card span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 41, 72, 0.48);
}

.scope-profile-card strong {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--primary);
    overflow-wrap: anywhere;
}

.scope-impact-band {
    padding: clamp(70px, 8vw, 112px) 0;
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(0, 64, 107, 0.98)),
        radial-gradient(circle at 82% 12%, rgba(200, 164, 78, 0.24), transparent 34%);
    color: var(--on-primary);
}

.scope-impact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.scope-impact-text {
    padding: clamp(24px, 3vw, 42px);
    border-left: 6px solid var(--secondary);
    background: rgba(255, 255, 255, 0.06);
}

.scope-impact-text p {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.84);
}

.scope-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.scope-cta > div:first-child {
    max-width: 720px;
}

.scope-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   PUBLICATION OPPORTUNITIES
   ============================================ */
.publication-pathway-section {
    background:
        linear-gradient(180deg, var(--surface) 0%, #ffffff 100%),
        linear-gradient(90deg, rgba(0, 41, 72, 0.04) 0 1px, transparent 1px);
}

.publication-pathway-grid,
.publication-note-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: stretch;
}

.publication-pathway-rail {
    padding: clamp(24px, 3vw, 42px);
    background: var(--primary);
    color: var(--on-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 44px;
}

.publication-pathway-rail h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.96;
    color: var(--on-primary);
    text-transform: uppercase;
    letter-spacing: -0.045em;
    overflow-wrap: normal;
    word-break: normal;
}

.publication-pathway-rail h2 span {
    display: block;
}

.publication-step-list {
    display: grid;
    gap: 12px;
}

.publication-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.publication-step span {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.publication-step strong {
    color: var(--on-primary);
    line-height: 1.35;
}

.publication-main-panel {
    position: relative;
    padding: clamp(28px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.92);
    display: grid;
    align-content: start;
    gap: 18px;
}

.publication-rich-text p {
    max-width: 76ch;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.publication-note-grid {
    align-items: start;
}

.publication-note-panel {
    padding: clamp(26px, 3vw, 42px);
    background: var(--surface-container-lowest);
    border-left: 6px solid var(--secondary);
}

.publication-note-panel p {
    color: rgba(26, 28, 28, 0.72);
}

.publication-note-panel ul {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.publication-note-panel li {
    position: relative;
    list-style: none;
    padding: 18px 18px 18px 52px;
    background: var(--surface-container-low);
    border: 1px solid rgba(0, 41, 72, 0.06);
}

.publication-note-panel li::before {
    content: 'priority_high';
    position: absolute;
    left: 18px;
    top: 18px;
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    color: var(--secondary);
}

.publication-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: clamp(24px, 3vw, 40px);
    background: var(--surface-container-lowest);
    border-left: 6px solid var(--primary);
}

.publication-cta h2 {
    margin-top: 10px;
    font-size: clamp(1.55rem, 3vw, 2.55rem);
    color: var(--primary);
    text-transform: uppercase;
}

.publication-cta-actions {
    justify-content: flex-end;
    margin-top: 0;
}

/* ============================================
   COMMITTEES — Ranked Academic Hierarchy
   ============================================ */
.leadership-header,
.speaker-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.leadership-header .section-desc,
.speaker-header p {
    max-width: 430px;
    color: var(--outline);
    line-height: 1.7;
}

.leadership-stack {
    display: grid;
    gap: 18px;
}

.leadership-level {
    display: grid;
    grid-template-columns: 118px minmax(160px, 260px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
    padding: clamp(18px, 2.6vw, 34px);
    background: var(--surface-container-lowest);
    border: 1px solid rgba(0, 41, 72, 0.08);
    border-left: 6px solid var(--secondary);
    box-shadow: 0 18px 52px rgba(0, 41, 72, 0.06);
}

.leadership-level--primary {
    grid-template-columns: 140px minmax(220px, 360px) minmax(0, 1fr);
    background:
        linear-gradient(90deg, rgba(0, 41, 72, 0.045), rgba(255, 255, 255, 0.92)),
        var(--surface-container-lowest);
    border-left-color: var(--primary);
}

.leadership-level-index {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 8px;
    border-right: 1px solid var(--outline-variant);
}

.leadership-level-index span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 41, 72, 0.44);
}

.leadership-level-index strong {
    font-family: var(--font-headline);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 0.9;
    color: var(--secondary);
}

.leadership-portrait {
    min-height: 220px;
    background: var(--surface-container-low);
    border: 4px solid var(--primary);
    border-bottom: 8px solid var(--secondary);
    overflow: hidden;
}

.leadership-level--primary .leadership-portrait {
    min-height: 320px;
}

.leadership-portrait img,
.leadership-avatar {
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.leadership-portrait img {
    object-fit: cover;
    object-position: top center;
}

.leadership-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-academic);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 900;
}

.leadership-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    min-width: 0;
}

.leadership-role {
    width: fit-content;
    padding: 7px 14px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leadership-copy h3 {
    max-width: 16ch;
    font-size: clamp(1.85rem, 4vw, 3.55rem);
    color: var(--primary);
    letter-spacing: -0.045em;
}

.leadership-level:not(.leadership-level--primary) .leadership-copy h3 {
    font-size: clamp(1.55rem, 3vw, 2.65rem);
}

.leadership-copy p {
    max-width: 58ch;
    color: rgba(26, 28, 28, 0.72);
    line-height: 1.75;
}

.leadership-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.leadership-meta span {
    padding: 6px 12px;
    background: var(--surface-container-low);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.speaker-tier {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

.speaker-tier:first-of-type {
    margin-top: 0;
}

.speaker-tier-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--outline-variant);
}

.speaker-tier-heading span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.speaker-tier-heading h3 {
    color: var(--primary);
    font-size: clamp(1.35rem, 2.3vw, 2.1rem);
    text-transform: uppercase;
    text-align: right;
}

.speaker-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.speaker-card--tier {
    border-top: 5px solid var(--secondary);
    box-shadow: 0 14px 38px rgba(0, 41, 72, 0.05);
}

.speaker-card--tier .speaker-badge {
    margin-top: auto;
    align-self: center;
}

.committee-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: clamp(30px, 5vw, 68px);
    align-items: start;
}

.committee-sidebar {
    position: sticky;
    top: 120px;
}

.committee-sidebar > span {
    font-size: 12px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.committee-sidebar h2 {
    margin-top: 8px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    color: var(--primary);
    line-height: 1.03;
    text-transform: uppercase;
}

.committee-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}

.committee-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--outline-variant);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.committee-sidebar a .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary);
    opacity: 0;
    transition: var(--transition);
}

.committee-sidebar a:hover .material-symbols-outlined {
    opacity: 1;
}

.committee-content-stack {
    display: grid;
    gap: 52px;
}

.committee-section-block {
    scroll-margin-top: 120px;
}

.committee-section-block .members-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.member-avatar {
    background: var(--gradient-academic);
    color: var(--secondary);
}

@media (max-width: 1100px) {
    .about-intro-grid,
    .about-vision-grid,
    .publication-pathway-grid,
    .publication-note-grid,
    .committee-layout,
    .scope-overview-grid,
    .scope-impact-grid {
        grid-template-columns: 1fr;
    }

    .about-brief-panel,
    .scope-brief-panel {
        min-height: auto;
    }

    .about-brief-panel h2,
    .publication-pathway-rail h2,
    .about-vision-grid h2,
    .scope-brief-panel h2,
    .scope-impact-band h2 {
        max-width: 18ch;
    }

    .about-mission-list ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .committee-sidebar {
        position: static;
    }
}

@media (max-width: 860px) {
    .leadership-level,
    .leadership-level--primary {
        grid-template-columns: 1fr;
    }

    .leadership-level-index {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        border-right: none;
        border-bottom: 1px solid var(--outline-variant);
        padding-bottom: 14px;
    }

    .leadership-copy h3,
    .leadership-level:not(.leadership-level--primary) .leadership-copy h3 {
        max-width: 100%;
    }

    .leadership-portrait,
    .leadership-level--primary .leadership-portrait {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .publication-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .publication-cta-actions {
        justify-content: flex-start;
    }

    .scope-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .page-hero-title {
        font-size: clamp(1.95rem, 9vw, 2.35rem);
        line-height: 1;
    }

    .page-hero-desc {
        width: 100%;
        max-width: 30ch;
        font-size: 1rem;
        line-height: 1.65;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.05;
    }

    .about-brief-panel h2,
    .publication-pathway-rail h2,
    .about-vision-grid h2,
    .scope-brief-panel h2,
    .scope-impact-band h2 {
        max-width: 12ch;
        font-size: clamp(1.05rem, 5.6vw, 1.45rem);
        line-height: 1.02;
        letter-spacing: -0.035em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .about-fact-item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .about-fact-item strong {
        max-width: 23ch;
        font-size: 0.95rem;
    }

    .about-narrative-panel,
    .publication-main-panel,
    .about-brief-panel,
    .publication-pathway-rail,
    .publication-note-panel,
    .publication-cta,
    .about-extra-card,
    .scope-brief-panel,
    .scope-overview-panel {
        padding: 24px 20px;
    }

    .about-mission-list ol,
    .speaker-tier-grid {
        grid-template-columns: 1fr;
    }

    .about-mission-list li {
        min-height: auto;
    }

    .speaker-header,
    .leadership-header,
    .speaker-tier-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .leadership-header .section-desc,
    .speaker-header p {
        width: 100%;
        max-width: 30ch;
        overflow-wrap: anywhere;
    }

    .speaker-tier-heading h3 {
        text-align: left;
    }

    .committee-section-block .members-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        align-items: flex-start;
    }

    .about-cta-actions,
    .publication-cta-actions,
    .scope-cta-actions {
        width: 100%;
    }

    .about-cta-actions .btn,
    .publication-cta-actions .btn,
    .scope-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .scope-cta {
        align-items: stretch;
    }

    .scope-cta-actions {
        display: grid;
    }

    .scope-highlight-item strong {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

.video-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface-container-lowest);
    border: 1px solid var(--outline-variant);
    transition: var(--transition);
    min-width: 260px;
    flex: 0 1 320px;
}

.video-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-ambient);
}

.video-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    font-size: 20px;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.submission-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ============================================
   FOOTER — Sovereign Blueprint
   ============================================ */
.footer {
    position: relative;
    margin-top: clamp(3rem, 5vw, 6rem);
}

.footer-main {
    background: var(--primary-container);
    color: var(--on-primary);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    border-top: 4px solid var(--secondary);
}

.footer-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 0 0 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand-mark {
    width: 160px;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border: none;
}

.footer-brand-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: var(--on-primary);
    font-family: var(--font-headline);
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

.footer-brand-copy h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 900;
    line-height: 1.35;
    max-width: 28ch;
    text-transform: uppercase;
}

.footer-subtitle {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 52ch;
}

.footer-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-meta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 2vw, 2.5rem);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--secondary);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-address {
    margin-top: 14px;
}

.footer-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-detail-stack p {
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-cta:hover {
    background: var(--secondary-dim);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-bottom {
    background: #00406B;
    padding: 18px 0;
    text-align: center;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Footer Mobile */
@media (max-width: 1024px) {
    .footer-topbar {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
    }

    .footer-brand-panel {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-meta-strip {
        justify-content: flex-start;
    }

    .footer-brand-copy h3 {
        max-width: 100%;
    }

    .footer-bottom {
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-partner-logos {
        justify-content: flex-start;
    }

    .footer-main {
        padding: 36px 0 28px;
    }

    .footer-topbar {
        padding-bottom: 24px;
        margin-bottom: 28px;
    }

    .footer-meta-chip {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-brand-mark {
        width: min(100%, 160px);
        height: auto;
        justify-content: flex-start;
    }
    
    .footer-col ul li a, .footer-col p {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ============================================
   ANIMATIONS (Scroll-triggered)
   ============================================ */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.animate-on-scroll.animated {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-accent {
    color: var(--secondary);
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--on-surface-variant);
}

.mt-4 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 32px;
}

.gap-sm {
    gap: 8px;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.font-headline {
    font-family: var(--font-headline);
}

.font-body {
    font-family: var(--font-body);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   HOME PAGE — Inline Grid Responsive Overrides
   ============================================ */

/* Leadership Section: 2-col photo+info → stacked on mobile */
@media (max-width: 1024px) {
    section.section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Hide decorative large year number on tablet */
    [style*="font-size: 6rem"] {
        display: none !important;
    }

    /* Leadership photo container */
    section.section div[style*="height: 500px"] {
        height: 350px !important;
    }

    /* Sticky sidebar → static on tablet */
    [style*="position: sticky"] {
        position: static !important;
    }
}

@media (max-width: 768px) {

    /* Submission / Leadership 2-col grids → single column */
    section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Photo container height */
    section div[style*="height: 500px"] {
        height: 280px !important;
    }

    /* Overlapping caption under photo */
    section div[style*="transform: translateY(40px)"] {
        position: relative !important;
        transform: none !important;
        max-width: 100% !important;
    }

    /* Info 2-column grid inside leadership */
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 32px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Bento section: better flex header */
    .section-header[style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    /* CTA bar flex */
    [style*="justify-content: space-between"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
    }

    /* Footer col ul li a remove ::before on mobile */
    .footer-col ul li a::before {
        content: none;
    }
}

/* ============================================
   HERO — Reduced padding on mobile for body offset
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 72px !important;
    }

    .navbar-inner {
        padding: 14px 0;
    }

    .brand-logo-img--header {
        width: 146px;
        height: 58px;
    }

    .hero-title-row {
        flex-direction: column;
        gap: 16px;
    }

    .hero-logo-inline {
        width: 72px;
        margin-top: 0;
    }

    .hero-title--compact {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* ============================================
   HOME HERO — Editorial Summit Override
   ============================================ */
.hero--summit {
    position: relative;
    max-width: none;
    margin: 0;
    min-height: auto;
    padding: clamp(104px, 10vw, 132px) 0 56px;
    align-items: stretch;
    justify-content: flex-start;
    background:
        radial-gradient(circle at 14% 16%, rgba(200, 164, 78, 0.18), transparent 26%),
        radial-gradient(circle at 86% 84%, rgba(0, 64, 107, 0.14), transparent 28%),
        linear-gradient(135deg, #f6f1e6 0%, #f8fafc 48%, #edf4fb 100%);
}

.hero--summit .hero-bg-pattern {
    top: 0;
    right: 0;
    width: min(48vw, 760px);
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 41, 72, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 41, 72, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.55;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22));
}

.hero-ambient {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(200, 164, 78, 0.45);
    border-radius: 0 !important;
}

.hero-ambient--north {
    top: 104px;
    left: max(24px, calc((100vw - var(--container-max)) / 2));
    width: clamp(180px, 18vw, 320px);
    height: clamp(180px, 18vw, 320px);
    border-right-color: transparent;
    border-bottom-color: transparent;
    opacity: 0.65;
}

.hero-ambient--south {
    right: max(24px, calc((100vw - var(--container-max)) / 2));
    bottom: 48px;
    width: clamp(220px, 22vw, 360px);
    height: clamp(220px, 22vw, 360px);
    border-left-color: transparent;
    border-top-color: transparent;
    opacity: 0.45;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(calc(100% - (var(--container-gutter) * 2)), var(--container-max));
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.hero-commandbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 41, 72, 0.12);
}

.hero-command-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 18px;
    min-width: 0;
    border-right: 1px solid rgba(0, 41, 72, 0.1);
}

.hero-command-pill__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
}

.hero-command-pill .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-command-pill strong {
    display: block;
    max-width: 100%;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(0, 41, 72, 0.82);
    overflow-wrap: anywhere;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
}

.hero-main-grid>*,
.hero-copy-panel {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 18px;
}

.hero-copy-frame {
    position: relative;
    min-width: 0;
    display: grid;
    gap: 22px;
    padding: clamp(28px, 3vw, 40px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.82));
    border: 1px solid rgba(0, 41, 72, 0.08);
    box-shadow: 0 24px 70px rgba(0, 41, 72, 0.08);
    overflow: hidden;
}

.hero-copy-frame::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), rgba(200, 164, 78, 0));
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--secondary);
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.hero-mark-wrap {
    display: grid;
    gap: 12px;
}

.hero-mark-caption {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 41, 72, 0.48);
    overflow-wrap: anywhere;
}

.hero-mark {
    font-size: clamp(3.6rem, 7vw, 6.8rem);
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: var(--primary);
    text-transform: uppercase;
    max-width: 7.5ch;
}

.hero-headline-block {
    display: grid;
    gap: 12px;
}

.hero-intro-line {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(0, 41, 72, 0.7);
}

.hero-fullname {
    max-width: 11ch;
    font-size: clamp(2.25rem, 4.25vw, 4.45rem);
    line-height: 0.93;
    letter-spacing: -0.04em;
    color: var(--primary);
    text-transform: none;
    text-wrap: balance;
}

.hero-subtitle--summit {
    max-width: 54ch;
    margin-bottom: 0;
    font-size: clamp(1.04rem, 1.35vw, 1.2rem);
    line-height: 1.7;
    color: rgba(0, 41, 72, 0.74);
}

.hero-summary-panel {
    min-width: 0;
    padding: 18px 20px 18px 22px;
    background: rgba(0, 41, 72, 0.03);
    border: 1px solid rgba(0, 41, 72, 0.08);
    border-left: 4px solid var(--secondary);
}

.hero-summary-panel p {
    max-width: 58ch;
    color: rgba(0, 41, 72, 0.78);
    line-height: 1.72;
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-actions--summit {
    gap: 14px;
    margin-top: 2px;
}

.hero-actions--summit .btn {
    min-height: 54px;
    padding-inline: 22px;
}

.hero-stage {
    position: relative;
    min-width: 0;
}

.hero-stage-frame {
    position: relative;
    width: 100%;
    display: grid;
    gap: 22px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(0, 25, 46, 0.98), rgba(0, 41, 72, 0.96)),
        radial-gradient(circle at top, rgba(200, 164, 78, 0.12), transparent 54%);
    color: var(--on-primary);
    box-shadow: 0 30px 90px rgba(0, 41, 72, 0.24);
    overflow: hidden;
}

.hero-stage-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.38;
    pointer-events: none;
}

.hero-stage-header,
.hero-stage-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-stage-header {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stage-header span:first-child {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    min-width: 0;
    overflow-wrap: anywhere;
}

.hero-stage-header span:last-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    min-width: 0;
    overflow-wrap: anywhere;
}

.hero-stage-core {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.hero-stage-logo,
.hero-stage-fallback {
    position: relative;
    z-index: 2;
}

.hero-stage-logo {
    width: min(100%, 320px);
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.34));
}

.hero-stage-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    min-height: 240px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--secondary);
    text-transform: uppercase;
    text-align: center;
}

.hero-stage-ring {
    position: absolute;
    border: 1px solid rgba(200, 164, 78, 0.4);
    border-radius: 0 !important;
}

.hero-stage-ring--one {
    width: clamp(220px, 22vw, 340px);
    height: clamp(220px, 22vw, 340px);
    animation: heroSpin 20s linear infinite;
}

.hero-stage-ring--two {
    width: clamp(190px, 19vw, 290px);
    height: clamp(190px, 19vw, 290px);
    transform: rotate(58deg);
    border-color: rgba(255, 255, 255, 0.3);
    animation: heroSpinReverse 16s linear infinite;
}

.hero-stage-ring--three {
    width: clamp(150px, 16vw, 240px);
    height: clamp(150px, 16vw, 240px);
    transform: rotate(-32deg);
    border-color: rgba(200, 164, 78, 0.24);
}

.hero-stage-dossier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-stage-dossier-item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-dossier-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary);
}

.hero-stage-dossier-item__label {
    display: block;
    margin-bottom: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.hero-stage-dossier-item strong {
    display: block;
    color: var(--on-primary);
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero-highlight-card {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 20px 18px 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 41, 72, 0.08);
    border-top: 4px solid rgba(200, 164, 78, 0.9);
    box-shadow: 0 14px 34px rgba(0, 41, 72, 0.05);
}

.hero-highlight-value {
    font-family: var(--font-headline);
    font-size: clamp(2.15rem, 3.8vw, 3.35rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--primary);
}

.hero-highlight-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 41, 72, 0.56);
}

@keyframes heroSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes heroSpinReverse {
    from {
        transform: rotate(58deg);
    }

    to {
        transform: rotate(-302deg);
    }
}

@media (max-width: 1199px) {
    .hero-main-grid {
        grid-template-columns: 1fr;
    }

    .hero-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero--summit {
        padding: 96px 0 48px;
    }

    .hero--summit .hero-bg-pattern,
    .hero-ambient {
        display: none;
    }

    .hero-shell {
        gap: 22px;
        overflow: hidden;
    }

    .hero-commandbar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 14px;
    }

    .hero-command-pill {
        width: 100%;
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 12px;
        align-items: flex-start;
        padding-right: 0;
        border-right: none;
    }

    .hero-command-pill strong {
        width: 100%;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero-copy-frame {
        gap: 22px;
        padding: 24px 20px;
    }

    .hero-eyebrow,
    .hero-mark-caption {
        max-width: 22ch;
        font-size: 11px;
        letter-spacing: 0.14em;
        line-height: 1.6;
    }

    .hero-mark {
        max-width: 100%;
        font-size: clamp(2.45rem, 13vw, 3.95rem);
        line-height: 0.9;
    }

    .hero-fullname {
        max-width: 100%;
        font-size: clamp(1.85rem, 8vw, 2.85rem);
        line-height: 0.98;
    }

    .hero-highlights-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle--summit {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-stage-frame {
        gap: 18px;
        padding: 20px;
    }

    .hero-stage-header {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 8px;
    }

    .hero-stage-core {
        min-height: 260px;
        padding: 24px 16px;
    }

    .hero-stage-logo {
        width: min(100%, 220px);
    }

    .hero-stage-dossier-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-copy-frame {
        padding: 22px 18px;
    }

    .hero-mark {
        font-size: clamp(2.15rem, 12vw, 3.25rem);
        line-height: 0.94;
    }

    .hero-fullname {
        font-size: clamp(1.65rem, 7.6vw, 2.3rem);
    }

    .hero-stage-frame {
        padding: 18px;
    }

    .hero-stage-dossier-item {
        padding: 14px;
    }
}

/* ============================================
   PDF-Aligned Redesign Override Layer
   ============================================ */

:root {
    --primary: #002f4f;
    --primary-container: #0c5a7d;
    --primary-light: #d9edf4;
    --secondary: #c6a24a;
    --secondary-container: #f3dfaa;
    --ink: #14202b;
    --muted: #566473;
    --surface: #f6f7f4;
    --surface-container: #ffffff;
    --surface-container-low: #eef3f1;
    --surface-container-high: #e6ece8;
    --outline: #cfd8d6;
    --outline-variant: #e3e8e6;
    --success: #22795f;
    --radius-sm: 4px;
    --radius-md: 8px;
    --container-max: 1320px;
    --container-gutter: 20px;
    --section-space: 72px;
    --grid-gap: 24px;
}

*,
*::before,
*::after {
    letter-spacing: 0 !important;
}

body {
    padding-top: 96px !important;
    background:
        linear-gradient(180deg, rgba(230, 236, 232, 0.72), rgba(246, 247, 244, 0) 520px),
        var(--surface);
    color: var(--ink);
}

.container {
    width: min(calc(100% - (var(--container-gutter) * 2)), var(--container-max));
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 47, 79, 0.1);
}

.navbar-brand,
.brand-wordmark {
    color: var(--primary);
    font-weight: 900;
}

.nav-menu > li > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 700;
}

.nav-menu > li > a.active,
.nav-menu > li > a:hover {
    color: var(--primary-container);
}

.dropdown {
    border: 1px solid var(--outline-variant);
    border-radius: 0 !important;
    box-shadow: 0 20px 44px rgba(20, 32, 43, 0.12);
    overflow: hidden;
}

.section {
    padding: var(--section-space) 0;
}

.section-surface {
    background: transparent;
}

.section-alt {
    background: var(--surface-container-low);
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-header {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-header--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    text-align: left;
}

.section-badge,
.page-hero-kicker {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(198, 162, 74, 0.52);
    border-radius: 0 !important;
    background: rgba(198, 162, 74, 0.14);
    color: #7a5d16;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.12);
    color: var(--secondary-container);
    border-color: rgba(243, 223, 170, 0.42);
}

.section-title,
.page-hero-title {
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.04;
    font-weight: 900;
    max-width: 900px;
}

.section-dark .section-title {
    color: #fff;
}

.section-desc,
.page-hero-desc,
.card-text,
.bento-desc,
.dynamic-content,
.structured-rich-text,
.pricing-note {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.78);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 0 !important;
    font-weight: 900;
    line-height: 1.2;
    border: 1px solid transparent;
}

.btn-primary,
.btn-dark {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover,
.btn-dark:hover {
    background: var(--primary-container);
}

.btn-outline,
.btn-ghost {
    background: transparent;
    border-color: rgba(0, 47, 79, 0.25);
    color: var(--primary);
}

.btn-gold {
    background: var(--secondary);
    color: #17202a;
}

.hero-proposal {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: min(840px, calc(100vh - 160px));
    display: flex;
    align-items: center;
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(0, 47, 79, 0.95), rgba(12, 90, 125, 0.88)),
        url("/images/conference-mark.png") center right / min(54vw, 760px) no-repeat;
    color: #fff;
}

.hero-proposal__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.hero-proposal__copy h1 {
    max-width: 940px;
    margin-top: 20px;
    font-size: 4rem;
    line-height: 0.98;
    color: #fff;
}

.hero-proposal__mark {
    margin-top: 28px;
    color: var(--secondary-container);
    font-size: 1.25rem;
    font-weight: 900;
}

.hero-proposal__subtitle {
    max-width: 740px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.2rem;
    line-height: 1.55;
}

.hero-proposal__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.hero-proposal__meta-item,
.proposal-outcome-item,
.about-fact-item,
.contact-info-item,
.scope-highlight-item {
    border-radius: 0 !important;
}

.hero-proposal__meta-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proposal__meta-item span:last-child,
.hero-proposal__meta-item div > span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-proposal__meta-item strong {
    display: block;
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.35;
}

.hero-proposal__actions,
.final-cta__actions,
.scope-cta-actions,
.about-cta-actions,
.publication-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-proposal__panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-proposal__seal {
    display: grid;
    min-height: 280px;
    place-items: center;
    padding: 28px;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.96);
}

.hero-proposal__seal img {
    max-height: 260px;
    object-fit: contain;
}

.proposal-dossier {
    margin-top: 20px;
}

.proposal-dossier > span {
    color: var(--secondary-container);
    font-weight: 900;
    text-transform: uppercase;
}

.proposal-dossier dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.proposal-dossier div {
    padding: 14px;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.1);
}

.proposal-dossier dt {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.proposal-dossier dd {
    margin-top: 6px;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.4;
}

.countdown-band {
    padding: 32px 0;
    background: var(--secondary);
}

.countdown-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
    padding: 0;
    background: transparent;
}

.countdown-wrapper h2 {
    margin-top: 10px;
    color: var(--primary);
    font-size: 1.75rem;
}

.countdown-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: start;
}

.countdown-tile-inner {
    width: 100%;
    min-height: 88px;
    display: grid;
    place-items: center;
    border-radius: 0 !important;
    background: #fff;
}

.countdown-number {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 900;
}

.countdown-label-v2 {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.countdown-separator {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
}

.proposal-overview-grid,
.leadership-home-grid,
.fees-home-grid,
.publication-venue-grid,
.contact-grid,
.scope-overview-grid,
.about-intro-grid,
.publication-pathway-grid,
.publication-note-grid,
.scope-impact-grid,
.scope-cta,
.publication-cta,
.final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--grid-gap);
    align-items: start;
}

.proposal-overview-grid {
    grid-template-columns: minmax(260px, 0.78fr) 2px minmax(0, 1.22fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.proposal-summary-section {
    padding: 48px 0;
}

.proposal-overview-main,
.leadership-home-feature,
.publication-venue-grid > article,
.final-cta__inner,
.contact-info-card,
.card,
.pricing-card,
.bento-card,
.topic-track-card,
.speaker-preview-card,
.scope-profile-card,
.about-extra-card,
.publication-main-panel,
.publication-note-panel,
.scope-overview-panel,
.scope-brief-panel,
.about-narrative-panel,
.about-brief-panel,
.about-vision-band,
.scope-impact-band {
    border: 1px solid var(--outline-variant);
    border-radius: 0 !important;
    background: var(--surface-container);
    box-shadow: 0 18px 50px rgba(20, 32, 43, 0.06);
}

.about-brief-panel,
.scope-brief-panel,
.about-vision-band,
.scope-impact-band {
    color: var(--on-surface);
}

.about-brief-panel h2,
.scope-brief-panel h2,
.about-vision-band h2,
.scope-impact-band h2 {
    color: var(--primary);
}

.about-brief-panel p,
.scope-brief-panel p,
.about-vision-band p,
.scope-impact-band p {
    color: var(--on-surface-variant);
}

.about-brief-panel .about-fact-item span:not(.material-symbols-outlined),
.scope-brief-panel .scope-highlight-item span {
    color: var(--outline);
}

.about-brief-panel .about-fact-item strong,
.scope-brief-panel .scope-highlight-item strong {
    color: var(--on-surface);
}

.scope-brief-panel .scope-highlight-item {
    border-top-color: rgba(0, 47, 79, 0.12);
}

.proposal-overview-main,
.leadership-home-feature,
.publication-venue-grid > article,
.final-cta__inner {
    padding: 32px;
}

.proposal-overview-main {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.proposal-overview-main .section-title {
    max-width: 560px;
    margin-top: 18px;
    font-size: 1.9rem;
    line-height: 1.14;
}

.proposal-overview-divider {
    width: 2px;
    min-height: 190px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(0, 47, 79, 0.22), rgba(198, 162, 74, 0.48), rgba(0, 47, 79, 0.22), transparent);
}

.proposal-overview-main p,
.publication-venue-grid p,
.final-cta p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.proposal-outcome-list {
    display: grid;
    gap: 10px;
}

.proposal-outcome-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 13px 18px;
    background:
        linear-gradient(90deg, rgba(12, 90, 125, 0.045), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 47, 79, 0.1);
    box-shadow: 0 16px 34px rgba(20, 32, 43, 0.055);
}

.proposal-outcome-item .material-symbols-outlined {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--success);
    font-size: 1.28rem;
    line-height: 1;
}

.proposal-outcome-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.25;
}

.proposal-outcome-item p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.topic-track-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--grid-gap);
}

.topic-track-card {
    grid-column: span 2;
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.topic-track-card:first-child,
.topic-track-card:last-child {
    grid-column: span 3;
}

.topic-track-card__number,
.bento-number {
    color: var(--secondary);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.topic-track-card h3,
.speaker-preview-card h3,
.pricing-category,
.card-title {
    margin-top: 18px;
    color: var(--primary);
    font-size: 1.28rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 0 !important;
    background: var(--surface-container-low);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.leadership-home-feature h2,
.fees-home-grid h2,
.publication-venue-grid h2,
.final-cta h2 {
    margin-top: 16px;
}

.leadership-home-person {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 28px 0;
}

.leadership-home-person img,
.leadership-portrait img,
.speaker-photo,
.member-photo,
.chairman-photo {
    width: 96px;
    height: 112px;
    border-radius: 0 !important;
    object-fit: cover;
}

.leadership-home-person strong,
.speaker-preview-card strong,
.member-name,
.speaker-name {
    color: var(--primary);
    font-weight: 900;
}

.leadership-home-person span,
.speaker-preview-card em {
    display: block;
    color: var(--muted);
    font-style: normal;
}

.speaker-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
}

.speaker-preview-card {
    padding: 28px;
}

.speaker-preview-card > span {
    color: #7a5d16;
    font-weight: 900;
    text-transform: uppercase;
}

.speaker-preview-card ul {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.pricing-grid,
.speaker-tier-grid,
.members-grid,
.scope-profile-grid,
.grid-3,
.grid-4,
.grid-2 {
    display: grid;
    gap: var(--grid-gap);
}

.pricing-grid,
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    padding: 24px;
}

.pricing-card.featured {
    border-color: rgba(198, 162, 74, 0.7);
    background: #fffaf0;
}

.pricing-period {
    color: var(--muted);
    font-weight: 800;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--outline-variant);
}

.pricing-amount,
.pricing-row strong {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 900;
}

.section-dark .pricing-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.page-hero {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: #fff;
}

.page-hero .container {
    display: grid;
    gap: 24px;
}

.page-hero-title {
    margin-top: 18px;
    color: #fff;
}

.page-hero-desc,
.page-hero-breadcrumb {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero-breadcrumb a {
    color: #fff;
    font-weight: 900;
}

.dynamic-content,
.structured-rich-text {
    background: transparent;
}

.dynamic-content h2,
.dynamic-content h3,
.structured-rich-text h2,
.structured-rich-text h3 {
    margin: 28px 0 12px;
    color: var(--primary);
}

.dynamic-content p,
.dynamic-content li,
.structured-rich-text p,
.structured-rich-text li {
    margin-top: 10px;
}

.dynamic-content ul,
.dynamic-content ol,
.structured-rich-text ul,
.structured-rich-text ol {
    display: grid;
    gap: 10px;
    margin: 18px 0 0 20px;
    list-style: disc;
}

.structured-rich-text ol,
.dynamic-content ol {
    list-style: decimal;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
}

.timeline-item {
    position: relative;
    padding: 28px;
    border: 1px solid var(--outline-variant);
    border-radius: 0 !important;
    background: #fff;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 0 !important;
    background: var(--secondary);
}

.timeline-date {
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
}

.timeline-title {
    margin-top: 8px;
    color: var(--ink);
    font-size: 1.25rem;
}

.contact-grid {
    align-items: stretch;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    min-height: 48px;
    border: 1px solid var(--outline);
    border-radius: 0 !important;
    background: #fff;
}

.form-textarea {
    min-height: 160px;
}

.contact-info-card,
.card,
.scope-profile-card,
.about-extra-card {
    padding: 24px;
}

.partners-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--grid-gap);
}

.partner-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 128px;
    padding: 20px;
    border: 1px solid var(--outline-variant);
    border-radius: 0 !important;
    background: #fff;
}

.partner-logo-img {
    width: 96px;
    height: 76px;
    object-fit: contain;
}

.final-cta {
    background: var(--secondary-container);
}

.final-cta__inner {
    align-items: center;
}

.footer {
    background: #102336;
}

.footer-grid,
.footer-topbar {
    gap: 24px;
}

@media (min-width: 768px) {
    :root {
        --container-gutter: 32px;
        --section-space: 88px;
        --grid-gap: 28px;
    }
}

@media (min-width: 1280px) {
    :root {
        --container-max: 1480px;
        --container-gutter: 48px;
        --section-space: 104px;
        --grid-gap: 32px;
    }

    .section-title,
    .page-hero-title {
        font-size: 3.1rem;
    }

    .hero-proposal__copy h1 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1800px) {
    :root {
        --container-max: 1680px;
        --container-gutter: 64px;
        --section-space: 120px;
        --grid-gap: 36px;
    }

    .section-title,
    .page-hero-title {
        font-size: 3.5rem;
    }

    .hero-proposal__copy h1 {
        font-size: 5.25rem;
    }
}

@media (min-width: 2600px) {
    :root {
        --container-max: 2040px;
        --container-gutter: 96px;
        --section-space: 144px;
        --grid-gap: 44px;
    }

    body {
        font-size: 1.08rem;
    }

    .section-title,
    .page-hero-title {
        font-size: 4rem;
    }

    .hero-proposal__copy h1 {
        font-size: 6rem;
    }
}

@media (max-width: 1199px) {
    .hero-proposal__grid,
    .proposal-overview-grid,
    .leadership-home-grid,
    .fees-home-grid,
    .publication-venue-grid,
    .contact-grid,
    .scope-overview-grid,
    .about-intro-grid,
    .publication-pathway-grid,
    .publication-note-grid,
    .scope-impact-grid,
    .scope-cta,
    .publication-cta,
    .final-cta__inner,
    .countdown-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-proposal {
        min-height: auto;
    }

    .proposal-overview-divider {
        width: 100%;
        min-height: 1px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 47, 79, 0.22), rgba(198, 162, 74, 0.48), rgba(0, 47, 79, 0.22), transparent);
    }

    .proposal-summary-section {
        padding: 40px 0;
    }

    .topic-track-card,
    .topic-track-card:first-child,
    .topic-track-card:last-child {
        grid-column: span 3;
    }

    .pricing-grid,
    .pricing-grid--compact,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 86px !important;
    }

    .section {
        padding: 64px 0;
    }

    .section-title,
    .page-hero-title {
        font-size: 2rem;
    }

    .hero-proposal {
        padding: 48px 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-container));
    }

    .hero-proposal__copy h1 {
        font-size: 2.5rem;
    }

    .hero-proposal__subtitle {
        font-size: 1.02rem;
    }

    .hero-proposal__meta,
    .proposal-dossier dl,
    .speaker-preview-grid,
    .pricing-grid,
    .pricing-grid--compact,
    .timeline,
    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-proposal__panel,
    .proposal-overview-main,
    .leadership-home-feature,
    .publication-venue-grid > article,
    .final-cta__inner,
    .speaker-preview-card,
    .topic-track-card,
    .pricing-card {
        padding: 22px;
    }

    .proposal-overview-main {
        padding: 0;
    }

    .proposal-overview-main .section-title {
        font-size: 1.55rem;
        line-height: 1.16;
    }

    .proposal-outcome-item {
        grid-template-columns: 32px minmax(0, 1fr);
        padding: 14px 16px;
    }

    .hero-proposal__seal {
        min-height: 220px;
    }

    .countdown-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .countdown-separator {
        display: none;
    }

    .topic-track-grid {
        grid-template-columns: 1fr;
    }

    .topic-track-card,
    .topic-track-card:first-child,
    .topic-track-card:last-child {
        grid-column: span 1;
        min-height: auto;
    }

    .section-header--split {
        grid-template-columns: 1fr;
    }

    .partner-card,
    .leadership-home-person {
        grid-template-columns: 1fr;
    }

    .nav-menu.active {
        border-radius: 0 !important;
    }

    .nav-menu.active > li > a,
    .nav-menu.active .dropdown a {
        color: rgba(255, 255, 255, 0.88);
    }

    .nav-menu.active > li > a.active,
    .nav-menu.active > li > a:hover,
    .nav-menu.active .dropdown a:hover {
        color: var(--secondary-container);
    }

    .nav-menu.active .dropdown {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }
}

/* ============================================
   COMMITTEES VISUAL QA REFINEMENT
   ============================================ */
.page-hero .container {
    justify-items: start;
}

.page-hero-kicker {
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    padding: 7px 14px;
    border-color: rgba(243, 223, 170, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-container);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.leadership-header {
    justify-content: center;
    text-align: center;
}

.leadership-stack {
    max-width: min(100%, 1260px);
    margin-inline: auto;
    gap: 22px;
}

.leadership-level,
.leadership-level--primary {
    grid-template-columns: clamp(190px, 16vw, 240px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
    padding: clamp(20px, 2vw, 28px);
    border: 1px solid rgba(0, 41, 72, 0.1);
    border-left: 5px solid var(--secondary);
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(0, 61, 96, 0.035), rgba(255, 255, 255, 0) 44%),
        var(--surface-container-lowest);
    box-shadow: 0 20px 54px rgba(0, 41, 72, 0.08);
}

.leadership-level--primary {
    border-left-color: var(--primary);
}

.leadership-level-index {
    display: none;
}

.leadership-portrait,
.leadership-level--primary .leadership-portrait {
    position: relative;
    width: 100%;
    min-height: 0;
    height: clamp(238px, 19vw, 292px);
    padding: 8px;
    border: 0;
    border-radius: 0 !important;
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(0, 85, 119, 0.9)),
        var(--primary);
    box-shadow:
        0 16px 34px rgba(0, 41, 72, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.leadership-portrait::after,
.leadership-level--primary .leadership-portrait::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 5px;
    border-radius: 0 !important;
    background: var(--secondary);
    pointer-events: none;
}

.leadership-portrait img,
.leadership-level--primary .leadership-portrait img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    border: 0;
    border-radius: 0 !important;
    background: #eef3f1;
    box-shadow: none;
    object-fit: cover;
    object-position: center 16%;
}

.leadership-avatar {
    min-height: 0;
    border-radius: 0 !important;
}

.leadership-copy {
    display: grid;
    align-content: center;
    gap: 12px;
    padding-block: 4px;
}

.leadership-role {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 6px 11px;
    border-radius: 0 !important;
    background: rgba(198, 162, 74, 0.18);
    color: #684d08;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.08em;
}

.leadership-copy h3,
.leadership-level:not(.leadership-level--primary) .leadership-copy h3 {
    max-width: 18ch;
    color: var(--primary);
    font-size: clamp(2rem, 2.9vw, 3rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.leadership-copy p {
    max-width: 760px;
    color: var(--on-surface-variant);
    font-size: clamp(1rem, 1vw, 1.08rem);
    line-height: 1.68;
}

@media (min-width: 1800px) {
    .leadership-stack {
        max-width: min(100%, 1480px);
        gap: 28px;
    }

    .leadership-level,
    .leadership-level--primary {
        grid-template-columns: 280px minmax(0, 1fr);
        padding: 34px;
    }

    .leadership-portrait,
    .leadership-level--primary .leadership-portrait {
        height: 340px;
    }
}

@media (max-width: 900px) {
    .leadership-level,
    .leadership-level--primary {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 22px;
    }

    .leadership-portrait,
    .leadership-level--primary .leadership-portrait {
        height: 220px;
    }

    .leadership-copy h3,
    .leadership-level:not(.leadership-level--primary) .leadership-copy h3 {
        font-size: clamp(1.55rem, 4vw, 2.1rem);
    }
}

@media (max-width: 640px) {
    .page-hero-kicker {
        min-height: 30px;
        padding: 6px 10px;
        white-space: normal;
    }

    .leadership-level,
    .leadership-level--primary {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .leadership-portrait,
    .leadership-level--primary .leadership-portrait {
        width: min(100%, 250px);
        height: 292px;
        justify-self: start;
    }

    .leadership-copy h3,
    .leadership-level:not(.leadership-level--primary) .leadership-copy h3 {
        max-width: 100%;
        font-size: 1.75rem;
    }
}

/* Committee leadership cleanup: borderless cards and portraits */
.leadership-level,
.leadership-level--primary {
    border: 0;
    border-left: 0;
    background: var(--surface-container-lowest);
    box-shadow: 0 18px 46px rgba(0, 41, 72, 0.07);
}

.leadership-portrait,
.leadership-level--primary .leadership-portrait {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: 0 14px 30px rgba(0, 41, 72, 0.14);
}

.leadership-portrait::after,
.leadership-level--primary .leadership-portrait::after {
    display: none;
}

.leadership-portrait img,
.leadership-level--primary .leadership-portrait img {
    border-radius: 0 !important;
}

/* Shared badge and countdown polish */
.section-badge,
.page-hero-kicker {
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(198, 162, 74, 0.34);
    border-radius: 0 !important;
    background: rgba(198, 162, 74, 0.12);
    color: #7f6216;
    letter-spacing: 0.08em;
    line-height: 1;
}

.hero-proposal .section-badge,
.page-hero-kicker,
.section-dark .section-badge,
.countdown-band .section-badge {
    border-color: rgba(243, 223, 170, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-container);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.countdown-band .section-badge {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(198, 162, 74, 0.42);
    color: var(--primary);
    box-shadow: none;
}

.countdown-v2 {
    align-items: start;
}

.countdown-separator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 20px;
    height: 105px; /* Pushes the dots down to exactly match the visual center of the white tiles */
    align-self: start;
    justify-self: center;
    color: transparent;
    font-size: 0;
}

.countdown-separator::before,
.countdown-separator::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 0 !important;
}

@media (max-width: 767px) {
    .section-badge,
    .page-hero-kicker {
        min-height: 32px;
        padding: 6px 12px;
    }
}

/* ============================================
   HOME HERO CONFERENCE POSTER
   ============================================ */
.hero-conference {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    width: 100%;
    min-height: 660px;
    overflow: hidden;
    padding: 72px 0 56px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 29, 61, 0.84) 0%, rgba(0, 51, 92, 0.72) 46%, rgba(2, 64, 110, 0.8) 100%),
        url("/images/icasd-hero-one-presenter.jpg") center center / cover no-repeat;
}

.hero-conference::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 18%, rgba(74, 166, 230, 0.16), transparent 36%),
        radial-gradient(circle at 22% 8%, rgba(198, 162, 74, 0.1), transparent 26%),
        linear-gradient(90deg, rgba(0, 18, 44, 0.24), transparent 28%, transparent 72%, rgba(0, 18, 44, 0.28));
}

.hero-conference::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(0, 76, 132, 0.38));
}

.hero-conference__inner {
    display: grid;
    justify-items: center;
    gap: 22px;
    max-width: 1180px;
    text-align: center;
}

.hero-conference__date {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 32, 68, 0.74);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 18px 42px rgba(0, 18, 48, 0.22);
}

.hero-conference__date .material-symbols-outlined {
    color: #5cc8ff;
    font-size: 1.15rem;
    line-height: 1;
}

.hero-conference__mark {
    margin: 0;
    color: rgba(202, 226, 244, 0.78);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
}

.hero-conference h1 {
    max-width: 1080px;
    margin: 0;
    color: #fff;
    font-size: 3.05rem;
    font-weight: 900;
    line-height: 1.16;
    text-wrap: balance;
    text-shadow: 0 22px 54px rgba(0, 14, 36, 0.5);
}

.hero-conference__subtitle {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.6;
    text-wrap: balance;
}

.hero-conference__cta {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    padding: 14px 22px;
    border: 1px solid rgba(130, 205, 255, 0.32);
    border-radius: 6px;
    background: linear-gradient(135deg, #0d67b7, #1184d6);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(0, 28, 72, 0.32);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-conference__cta:hover,
.hero-conference__cta:focus-visible {
    background: linear-gradient(135deg, #0a579c, #0f73bd);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(0, 28, 72, 0.42);
}

.hero-conference__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.72);
    outline-offset: 3px;
}

.hero-conference__cta .material-symbols-outlined {
    font-size: 1.15rem;
}

.hero-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    gap: 16px;
    width: min(100%, 600px);
    margin-top: 14px;
}

.hero-countdown__tile {
    display: grid;
    min-height: 106px;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 1px solid rgba(122, 194, 244, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(54, 132, 185, 0.38), rgba(10, 78, 132, 0.38));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 38px rgba(0, 20, 48, 0.22);
    backdrop-filter: blur(8px);
}

.hero-countdown .countdown-number {
    color: #fff;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero-countdown__label {
    color: rgba(221, 239, 252, 0.9);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-conference {
        min-height: calc(100svh - 120px);
        padding: 88px 0 64px;
    }

    .hero-conference__inner {
        gap: 24px;
    }

    .hero-conference h1 {
        font-size: 3.6rem;
    }
}

@media (min-width: 1280px) {
    .hero-conference {
        min-height: calc(100svh - 124px);
        padding: 104px 0 72px;
    }

    .hero-conference__inner {
        max-width: 1260px;
    }

    .hero-conference h1 {
        font-size: 4.05rem;
    }

    .hero-conference__subtitle {
        font-size: 1.3rem;
    }

    .hero-countdown {
        width: min(100%, 640px);
    }
}

@media (min-width: 1800px) {
    .hero-conference {
        min-height: calc(100svh - 132px);
        padding: 120px 0 88px;
    }

    .hero-conference__inner {
        max-width: 1460px;
    }

    .hero-conference h1 {
        font-size: 4.9rem;
    }

    .hero-conference__mark,
    .hero-conference__subtitle {
        font-size: 1.45rem;
    }

    .hero-countdown {
        width: min(100%, 720px);
        gap: 18px;
    }

    .hero-countdown__tile {
        min-height: 122px;
    }

    .hero-countdown .countdown-number {
        font-size: 2.65rem;
    }
}

@media (min-width: 2600px) {
    .hero-conference {
        min-height: calc(100svh - 148px);
        padding: 144px 0 104px;
    }

    .hero-conference__inner {
        max-width: 1720px;
    }

    .hero-conference h1 {
        font-size: 6rem;
    }

    .hero-conference__subtitle {
        max-width: 960px;
        font-size: 1.72rem;
    }

    .hero-conference__date,
    .hero-conference__cta {
        font-size: 1.12rem;
    }

    .hero-countdown {
        width: min(100%, 820px);
        gap: 22px;
    }

    .hero-countdown__tile {
        min-height: 144px;
    }

    .hero-countdown .countdown-number {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .hero-conference {
        min-height: auto;
        padding: 56px 0 48px;
        background-position: center top;
    }

    .hero-conference__inner {
        gap: 18px;
    }

    .hero-conference__date {
        width: min(100%, 340px);
        padding: 8px 12px;
        font-size: 0.86rem;
    }

    .hero-conference__mark {
        font-size: 0.98rem;
    }

    .hero-conference h1 {
        font-size: 2.2rem;
        line-height: 1.14;
    }

    .hero-conference__subtitle {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-conference__cta {
        width: min(100%, 280px);
    }

    .hero-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: min(100%, 360px);
    }

    .hero-countdown__tile {
        min-height: 92px;
        padding: 14px 10px;
    }

    .hero-countdown .countdown-number {
        font-size: 1.85rem;
    }
}

/* ============================================
   HOME TOPICS COMPACT GRID
   ============================================ */
.home-topics-section {
    padding: 40px 0;
}

.home-topics-section .section-header {
    margin-bottom: 22px;
}

.home-topics-section .section-title {
    max-width: 760px;
    font-size: 1.95rem;
    line-height: 1.1;
}

.home-topics-section .topic-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.home-topics-section .topic-track-card,
.home-topics-section .topic-track-card:first-child,
.home-topics-section .topic-track-card:last-child {
    grid-column: auto;
    width: 100%;
    height: 168px;
    min-height: 168px;
    padding: 18px;
    overflow: hidden;
}

.home-topics-section .topic-track-card__number {
    font-size: 1.7rem;
}

.home-topics-section .topic-track-card h3 {
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.25;
}

.home-topics-section .chip-row {
    gap: 5px;
    max-height: 52px;
    margin-top: 10px;
    overflow: hidden;
}

.home-topics-section .chip {
    min-height: 22px;
    padding: 4px 7px;
    font-size: 0.6rem;
    line-height: 1.15;
}

@media (min-width: 1800px) {
    .home-topics-section {
        padding: 56px 0;
    }

    .home-topics-section .topic-track-card,
    .home-topics-section .topic-track-card:first-child,
    .home-topics-section .topic-track-card:last-child {
        height: 188px;
        min-height: 188px;
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .home-topics-section {
        padding: 36px 0;
    }

    .home-topics-section .section-title {
        font-size: 1.45rem;
    }

    .home-topics-section .section-header {
        margin-bottom: 20px;
    }

    .home-topics-section .topic-track-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-topics-section .topic-track-card,
    .home-topics-section .topic-track-card:first-child,
    .home-topics-section .topic-track-card:last-child {
        height: auto;
        min-height: 150px;
        padding: 16px;
    }
}

/* ============================================
   HOME PUBLICATION COMPACT STRIP
   ============================================ */
.publication-home-section {
    padding: 42px 0;
}

.publication-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
    gap: 18px;
    align-items: stretch;
}

.publication-home-panel,
.venue-home-panel {
    border: 1px solid var(--outline-variant);
    border-radius: 0 !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.95));
    box-shadow: 0 20px 48px rgba(20, 32, 43, 0.07);
}

.publication-home-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    min-height: 240px;
    align-items: center;
    padding: 24px;
}

.venue-home-panel {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
}

.publication-home-panel .section-title,
.venue-home-panel .section-title {
    max-width: 560px;
    margin-top: 12px;
    font-size: 1.72rem;
    line-height: 1.12;
}

.publication-home-copy p,
.venue-home-panel p {
    max-width: 560px;
    margin: 12px 0 0;
    color: var(--on-surface-variant);
    font-size: 0.98rem;
    line-height: 1.55;
}

.publication-home-copy .btn,
.venue-home-panel .btn {
    margin-top: 18px;
}

.journal-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.journal-logo-card {
    display: grid;
    height: 124px;
    min-width: 0;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(9, 56, 89, 0.12);
    border-radius: 6px;
    background: #fff;
    color: var(--primary);
    text-align: center;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 34px rgba(20, 32, 43, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.journal-logo-card--dark {
    border-color: rgba(9, 56, 89, 0.2);
    background:
        linear-gradient(145deg, rgba(9, 56, 89, 0.96), rgba(6, 33, 58, 0.98));
}

.journal-logo-card:hover,
.journal-logo-card:focus-visible {
    border-color: rgba(15, 118, 189, 0.34);
    box-shadow: 0 18px 42px rgba(9, 56, 89, 0.11);
    transform: translateY(-2px);
}

.journal-logo-card:focus-visible {
    outline: 3px solid rgba(15, 118, 189, 0.24);
    outline-offset: 3px;
}

.journal-logo-card img {
    display: block;
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
}

.journal-logo-card span {
    display: block;
    width: 100%;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.journal-logo-card--dark span {
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1800px) {
    .publication-home-section {
        padding: 56px 0;
    }

    .publication-home-grid {
        gap: 24px;
    }

    .publication-home-panel,
    .venue-home-panel {
        min-height: 282px;
        padding: 32px;
    }

    .publication-home-panel .section-title,
    .venue-home-panel .section-title {
        font-size: 2.16rem;
    }

    .publication-home-copy p,
    .venue-home-panel p {
        font-size: 1.08rem;
    }

    .journal-logo-card {
        height: 148px;
    }

    .journal-logo-card img {
        max-height: 92px;
    }
}

@media (max-width: 1199px) {
    .publication-home-grid {
        grid-template-columns: 1fr;
    }

    .publication-home-panel {
        grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    }
}

@media (max-width: 767px) {
    .publication-home-section {
        padding: 34px 0;
    }

    .publication-home-panel,
    .venue-home-panel {
        min-height: 0;
        padding: 18px;
    }

    .publication-home-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .publication-home-panel .section-title,
    .venue-home-panel .section-title {
        font-size: 1.26rem;
    }

    .journal-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .journal-logo-card {
        height: 86px;
        align-content: center;
        justify-items: center;
        padding: 8px;
        text-align: center;
    }

    .journal-logo-card img {
        max-height: 42px;
    }

    .journal-logo-card span {
        font-size: 0.66rem;
    }
}

/* ============================================
   HOME LEADERSHIP SHOWCASE + SECTION SPACING
   ============================================ */
.leadership-home-section {
    padding: 42px 0 34px;
}

.leadership-showcase {
    display: grid;
    justify-items: center;
    gap: 28px;
}

.leadership-showcase__header {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.leadership-showcase__header h2,
.leadership-keynote-stack > h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.12;
}

.leadership-chair-card {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    width: min(100%, 940px);
    overflow: hidden;
    border: 1px solid rgba(0, 47, 79, 0.11);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(241, 248, 252, 0.96));
    box-shadow: 0 20px 52px rgba(20, 32, 43, 0.08);
}

.leadership-chair-card__media {
    min-height: 258px;
    background: linear-gradient(135deg, rgba(0, 47, 79, 0.12), rgba(15, 118, 189, 0.06));
}

.leadership-chair-card__media img {
    width: 100%;
    height: 100%;
    min-height: 258px;
    object-fit: cover;
    object-position: center top;
}

.leadership-chair-card__content {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    padding: 28px 34px;
}

.leadership-chair-card__content > span,
.leadership-speaker-card__body > span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(19, 126, 87, 0.12);
    color: #137e57;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.leadership-chair-card__content h3 {
    margin: 0;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.12;
}

.leadership-chair-card__content p {
    max-width: 580px;
    margin: 0;
    color: var(--on-surface-variant);
    font-size: 1rem;
    line-height: 1.55;
}

.leadership-keynote-stack {
    display: grid;
    width: min(100%, 1180px);
    gap: 20px;
    justify-items: center;
}

.leadership-speaker-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 860px);
    gap: 14px;
}

.leadership-speaker-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    width: 100%;
    min-height: 138px;
    padding: 18px 22px;
    border: 1px solid rgba(0, 47, 79, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 32, 43, 0.055);
}

.leadership-speaker-card__photo {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 47, 79, 0.08), rgba(15, 118, 189, 0.14));
}

.leadership-speaker-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leadership-speaker-card__photo span {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 900;
}

.leadership-speaker-card__body {
    min-width: 0;
}

.leadership-speaker-card__body > span {
    min-height: 24px;
    padding: 4px 9px;
    font-size: 0.62rem;
}

.leadership-speaker-card__body h4 {
    margin: 11px 0 0;
    color: var(--primary);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.25;
}

.leadership-speaker-card__body p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.35;
}

.publication-home-section {
    padding-top: 34px;
    padding-bottom: 34px;
}

.partners-home-section {
    padding: 34px 0 42px;
}

.partners-home-section .section-header {
    display: grid;
    max-width: 760px;
    justify-items: center;
    gap: 12px;
    margin-bottom: 22px;
    text-align: center;
}

.partners-home-section .section-title {
    margin: 0;
    font-size: 2.15rem;
    line-height: 1.08;
}

.partners-home-section .partners-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
}

.partners-home-section .partner-card {
    grid-template-columns: 76px minmax(0, auto);
    width: min(100%, 620px);
    min-height: 92px;
    justify-content: center;
    padding: 16px 22px;
    border-color: rgba(0, 47, 79, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.94));
    box-shadow: 0 18px 42px rgba(20, 32, 43, 0.055);
    text-align: center;
}

.partners-home-section .partner-logo-img {
    width: 72px;
    height: 72px;
    border: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.partners-home-section .partner-card .abbr {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.partners-home-section .partner-card strong {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.25;
}

@media (min-width: 1800px) {
    .leadership-home-section {
        padding: 56px 0 44px;
    }

    .leadership-showcase {
        gap: 34px;
    }

    .leadership-chair-card {
        width: min(100%, 1120px);
        grid-template-columns: 360px minmax(0, 1fr);
    }

    .leadership-chair-card__media,
    .leadership-chair-card__media img {
        min-height: 318px;
    }

    .leadership-chair-card__content h3 {
        font-size: 2.35rem;
    }

    .leadership-keynote-stack {
        width: min(100%, 1040px);
    }

    .leadership-speaker-card {
        min-height: 156px;
        padding: 22px 28px;
    }

    .publication-home-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .partners-home-section {
        padding: 44px 0 54px;
    }

    .partners-home-section .section-title {
        font-size: 2.7rem;
    }

    .partners-home-section .partner-card {
        width: min(100%, 740px);
        min-height: 108px;
        grid-template-columns: 88px minmax(0, auto);
    }

    .partners-home-section .partner-logo-img,
    .partners-home-section .partner-card .abbr {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 900px) {
    .leadership-chair-card {
        grid-template-columns: 1fr;
        width: min(100%, 620px);
    }

    .leadership-chair-card__media,
    .leadership-chair-card__media img {
        min-height: 320px;
    }

    .leadership-speaker-grid {
        width: min(100%, 620px);
    }
}

@media (max-width: 767px) {
    .leadership-home-section {
        padding: 34px 0 28px;
    }

    .leadership-showcase {
        gap: 22px;
    }

    .leadership-showcase__header h2,
    .leadership-keynote-stack > h3 {
        font-size: 1.42rem;
    }

    .leadership-chair-card__media,
    .leadership-chair-card__media img {
        min-height: 260px;
    }

    .leadership-chair-card__content {
        padding: 22px;
    }

    .leadership-chair-card__content h3 {
        font-size: 1.55rem;
    }

    .leadership-speaker-card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 14px;
        min-height: 126px;
        padding: 16px;
    }

    .leadership-speaker-card__photo {
        width: 82px;
        height: 82px;
    }

    .leadership-speaker-card__body h4 {
        font-size: 1rem;
    }

    .leadership-speaker-card__body p {
        font-size: 0.88rem;
    }

    .partners-home-section {
        padding: 30px 0 36px;
    }

    .partners-home-section .section-title {
        font-size: 1.55rem;
    }

    .partners-home-section .partners-row {
        display: grid;
        justify-items: center;
    }

    .partners-home-section .partner-card {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        padding: 18px;
    }
}

/* ============================================
   SIMPLE ABOUT PAGE
   ============================================ */
.about-simple-page {
    padding: 72px 0 88px;
    background: #fff;
}

.about-simple-container {
    display: grid;
    gap: 36px;
}

.about-simple-header,
.about-simple-section__heading {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.about-simple-header h1,
.about-simple-section__heading h2 {
    max-width: 980px;
    margin: 0;
    color: var(--primary);
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1.08;
    text-wrap: balance;
}

.about-simple-header p {
    max-width: 840px;
    margin: 0;
    color: var(--on-surface-variant);
    font-size: 1.1rem;
    line-height: 1.55;
    text-wrap: balance;
}

.about-simple-rule {
    width: 92px;
    height: 3px;
    margin-top: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--success));
}

.about-simple-copy {
    width: min(100%, 1080px);
    margin: 0 auto;
    color: var(--on-surface-variant);
    font-size: 1.02rem;
    line-height: 1.72;
}

.about-simple-copy p + p {
    margin-top: 16px;
}

.about-simple-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1080px);
    margin: 0 auto;
}

.about-simple-fact {
    min-height: 104px;
    padding: 18px;
    border: 1px solid rgba(0, 47, 79, 0.09);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(241, 248, 252, 0.96));
    text-align: center;
    box-shadow: 0 16px 36px rgba(20, 32, 43, 0.045);
}

.about-simple-fact span {
    display: block;
    color: #7a5d16;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-simple-fact strong {
    display: block;
    margin-top: 9px;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.35;
}

.about-simple-vision {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 28px;
    border-left: 5px solid var(--success);
    background: linear-gradient(135deg, rgba(15, 118, 189, 0.06), rgba(19, 126, 87, 0.05));
}

.about-simple-vision > div:first-child {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.about-simple-vision .material-symbols-outlined {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 999px;
    background: var(--success);
    color: #fff;
    font-size: 1.8rem;
}

.about-simple-vision h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.55rem;
    font-weight: 900;
}

.about-simple-vision p {
    margin: 0;
    color: var(--on-surface-variant);
    font-size: 1.03rem;
    line-height: 1.65;
}

.about-simple-section {
    display: grid;
    gap: 22px;
}

.about-simple-section__heading h2 {
    font-size: 2rem;
}

.about-simple-mission ol,
.about-theme-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0;
}

.about-simple-mission li,
.about-theme-card {
    min-height: 188px;
    padding: 20px;
    border: 1px solid rgba(0, 47, 79, 0.09);
    background: #fff;
    list-style: none;
    box-shadow: 0 16px 38px rgba(20, 32, 43, 0.045);
}

.about-simple-mission li strong,
.about-theme-card h3 {
    display: block;
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 1.03rem;
    font-weight: 900;
    line-height: 1.25;
}

.about-simple-mission li p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.about-theme-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
}

.about-theme-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
}

.about-theme-card li {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.42;
}

.about-keynote-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1080px);
    margin: 0 auto;
}

.about-keynote-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 124px;
    padding: 16px;
    border: 1px solid rgba(0, 47, 79, 0.09);
    background: linear-gradient(135deg, #fff, rgba(241, 248, 252, 0.92));
    box-shadow: 0 16px 38px rgba(20, 32, 43, 0.045);
}

.about-keynote-card img,
.about-keynote-avatar {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
}

.about-keynote-avatar {
    display: grid;
    place-items: center;
    background: rgba(15, 118, 189, 0.1);
    color: var(--primary);
    font-weight: 900;
}

.about-keynote-card span {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 4px 9px;
    background: rgba(19, 126, 87, 0.11);
    color: #137e57;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-keynote-card h3 {
    margin: 9px 0 0;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.24;
}

.about-keynote-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (min-width: 1800px) {
    .about-simple-page {
        padding: 92px 0 112px;
    }

    .about-simple-container {
        gap: 44px;
    }

    .about-simple-header h1 {
        font-size: 3.2rem;
    }

    .about-simple-copy,
    .about-simple-facts,
    .about-simple-vision,
    .about-keynote-list {
        width: min(100%, 1320px);
    }

    .about-simple-mission ol,
    .about-theme-list {
        width: min(100%, 1440px);
    }
}

@media (max-width: 1024px) {
    .about-simple-facts,
    .about-simple-mission ol,
    .about-theme-list,
    .about-keynote-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-simple-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-simple-page {
        padding: 44px 0 56px;
    }

    .about-simple-container {
        gap: 28px;
    }

    .about-simple-header h1 {
        font-size: 1.9rem;
    }

    .about-simple-section__heading h2 {
        font-size: 1.45rem;
    }

    .about-simple-facts,
    .about-simple-mission ol,
    .about-theme-list,
    .about-keynote-list {
        grid-template-columns: 1fr;
    }

    .about-simple-vision {
        padding: 22px;
    }

    .about-keynote-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
    }

    .about-keynote-card img,
    .about-keynote-avatar {
        width: 72px;
        height: 72px;
    }
}

/* ============================================
   ICASD STRICT THEMES/SCOPE CLEANUP
   ============================================ */

.scope-compact-section,
.themes-official-section {
    padding: clamp(56px, 6vw, 96px) 0;
    background:
        linear-gradient(90deg, rgba(12, 90, 125, 0.035) 0 1px, transparent 1px),
        linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
    background-size: 48px 48px, auto;
}

.scope-compact {
    display: grid;
    gap: clamp(18px, 2.6vw, 34px);
}

.scope-compact__intro {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(100%, 1120px);
    margin: 0 auto;
    text-align: center;
}

.scope-compact__intro h2,
.themes-official__header h2 {
    max-width: 920px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    text-wrap: balance;
}

.scope-compact__intro .structured-rich-text {
    max-width: 980px;
    color: var(--on-surface-variant);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.75;
}

.scope-compact__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1220px);
    margin: 0 auto;
}

.scope-compact__fact,
.scope-purpose-card,
.theme-official-card {
    border: 1px solid rgba(0, 47, 79, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(20, 32, 43, 0.06);
}

.scope-compact__fact {
    display: grid;
    min-height: 118px;
    align-content: start;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.scope-compact__fact span {
    color: #7a5d16;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.scope-compact__fact strong {
    color: var(--primary);
    font-size: clamp(0.96rem, 1vw, 1.08rem);
    line-height: 1.45;
}

.scope-compact__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1360px);
    margin: 4px auto 0;
}

.scope-purpose-card {
    display: grid;
    min-height: 212px;
    align-content: start;
    gap: 12px;
    padding: 22px;
}

.scope-purpose-card .material-symbols-outlined {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: rgba(15, 118, 189, 0.12);
    color: var(--primary-container);
    font-size: 1.55rem;
}

.scope-purpose-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.25;
}

.scope-purpose-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
}

.scope-impact-band {
    padding: clamp(44px, 5vw, 76px) 0;
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(12, 90, 125, 0.96)),
        radial-gradient(circle at 88% 16%, rgba(198, 162, 74, 0.22), transparent 34%);
}

.scope-impact-container {
    width: min(calc(100% - (var(--container-gutter) * 2)), 1320px);
}

.scope-impact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(22px, 4vw, 56px);
    align-items: center;
}

.scope-impact-heading h2 {
    max-width: 520px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    text-wrap: balance;
}

.scope-impact-text {
    padding: clamp(20px, 2.5vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 5px solid var(--secondary);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.scope-impact-text p {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.72;
}

.themes-official {
    display: grid;
    gap: clamp(22px, 3vw, 38px);
}

.themes-official__header {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.themes-official__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.theme-official-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-column: span 2;
    min-height: 276px;
    overflow: hidden;
}

.theme-official-card:nth-child(1),
.theme-official-card:nth-child(5) {
    grid-column: span 3;
}

.theme-official-card__number {
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(12, 90, 125, 0.98), rgba(0, 41, 72, 0.98));
    color: var(--secondary-container);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
}

.theme-official-card__content {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(20px, 2vw, 28px);
}

.theme-official-card__content h3 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    font-weight: 900;
    line-height: 1.28;
}

.theme-official-card__content ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.theme-official-card__content li {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
    line-height: 1.45;
}

.theme-official-card__content li::before {
    content: '';
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--secondary);
}

@media (min-width: 1800px) {
    .scope-compact__cards {
        gap: 18px;
    }

    .scope-purpose-card {
        min-height: 246px;
        padding: 28px;
    }

    .theme-official-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 318px;
    }
}

@media (min-width: 2600px) {
    .scope-compact__facts,
    .scope-compact__intro {
        width: min(100%, 1520px);
    }

    .scope-compact__cards,
    .themes-official__grid {
        width: min(100%, 1760px);
        margin-inline: auto;
    }

    .theme-official-card {
        min-height: 360px;
    }
}

@media (max-width: 1199px) {
    .scope-compact__cards,
    .themes-official__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scope-impact-grid {
        grid-template-columns: 1fr;
    }

    .theme-official-card,
    .theme-official-card:nth-child(1),
    .theme-official-card:nth-child(5) {
        grid-column: auto;
    }

    .theme-official-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-conference {
        padding-top: 34px;
    }

    .scope-compact-section,
    .themes-official-section {
        padding: 44px 0 56px;
    }

    .scope-compact__facts,
    .scope-compact__cards,
    .scope-impact-grid,
    .themes-official__grid {
        grid-template-columns: 1fr;
    }

    .scope-compact__intro,
    .themes-official__header {
        text-align: left;
        justify-items: start;
    }

    .scope-compact__intro h2,
    .themes-official__header h2 {
        font-size: 1.85rem;
    }

    .scope-compact__fact {
        min-height: auto;
        text-align: left;
    }

    .scope-purpose-card {
        min-height: auto;
        padding: 18px;
    }

    .scope-impact-heading h2 {
        font-size: 1.85rem;
    }

    .theme-official-card {
        grid-template-columns: 68px minmax(0, 1fr);
        min-height: auto;
    }

    .theme-official-card__content {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .theme-official-card {
        grid-template-columns: 1fr;
    }

    .theme-official-card__number {
        min-height: 58px;
        justify-content: start;
        padding: 0 18px;
    }
}

/* ============================================
   TOPICS, SUBMISSION, FOOTER REFINEMENT
   ============================================ */
.themes-redesign-section {
    padding: clamp(48px, 5vw, 84px) 0;
    background:
        linear-gradient(180deg, #ffffff 0%, rgba(241, 248, 252, 0.92) 100%);
}

.themes-redesign {
    display: grid;
    gap: clamp(20px, 2.6vw, 34px);
}

.themes-redesign__intro {
    display: grid;
    justify-items: center;
    text-align: center;
}

.themes-redesign__intro h2 {
    width: min(100%, 1040px);
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.65rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    text-wrap: balance;
}

.themes-redesign__list {
    display: grid;
    gap: 12px;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.theme-row {
    display: grid;
    grid-template-columns: 88px minmax(260px, 0.72fr) minmax(0, 1.28fr);
    min-height: 132px;
    overflow: hidden;
    border: 1px solid rgba(0, 47, 79, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(15, 118, 189, 0.045), rgba(255, 255, 255, 0) 46%),
        #fff;
    box-shadow: 0 16px 42px rgba(20, 32, 43, 0.055);
}

.theme-row__number {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--primary), var(--primary-container));
    color: var(--secondary-container);
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    font-weight: 900;
    line-height: 1;
}

.theme-row__main,
.theme-row__subtopics {
    display: grid;
    align-content: center;
    padding: clamp(18px, 2vw, 26px);
}

.theme-row__main {
    border-right: 1px solid rgba(0, 47, 79, 0.08);
}

.theme-row__main h3 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.05rem, 1.35vw, 1.3rem);
    font-weight: 900;
    line-height: 1.25;
    text-wrap: balance;
}

.theme-row__subtopics ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.theme-row__subtopics li {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid rgba(0, 47, 79, 0.08);
    border-radius: 8px;
    background: rgba(241, 248, 252, 0.92);
    color: var(--primary);
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    font-weight: 800;
    line-height: 1.25;
}

.submission-edas-section {
    padding: clamp(44px, 5vw, 82px) 0;
    background:
        linear-gradient(90deg, rgba(12, 90, 125, 0.035) 0 1px, transparent 1px),
        linear-gradient(180deg, #fff, rgba(241, 248, 252, 0.9));
    background-size: 48px 48px, auto;
}

.submission-edas {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(18px, 2.4vw, 30px);
    align-items: start;
}

.submission-edas__panel,
.submission-checklist__item,
.submission-guidelines__main,
.submission-guidelines__notes,
.submission-deadlines {
    border: 1px solid rgba(0, 47, 79, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(20, 32, 43, 0.06);
}

.submission-edas__panel {
    display: grid;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(0, 64, 107, 0.98)),
        var(--primary);
    color: #fff;
}

.submission-edas__copy {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 16px;
    min-height: clamp(300px, 27vw, 420px);
    padding: clamp(26px, 3.2vw, 46px);
}

.submission-edas__copy h2 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.1vw, 3.45rem);
    font-weight: 900;
    line-height: 1.06;
    text-transform: uppercase;
    text-wrap: balance;
}

.submission-edas__copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.62;
}

.submission-edas__button {
    gap: 8px;
    margin-top: 2px;
}

.submission-edas__button .material-symbols-outlined {
    font-size: 1.05rem;
}

.submission-edas__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.06);
}

.submission-edas__meta div {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 100px;
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.submission-edas__meta div:last-child {
    border-right: 0;
}

.submission-edas__meta span {
    color: var(--secondary-container);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.submission-edas__meta strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.32;
}

.submission-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
}

.submission-checklist__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 176px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.94));
}

.submission-checklist__item .material-symbols-outlined {
    color: var(--success);
    font-size: 1.35rem;
}

.submission-checklist__item p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.48;
}

.submission-checklist__item strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.submission-guidelines-section {
    padding: clamp(44px, 5vw, 76px) 0;
}

.submission-guidelines {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.submission-guidelines__main,
.submission-guidelines__notes {
    display: grid;
    gap: 20px;
    padding: clamp(22px, 3vw, 34px);
    background: #fff;
}

.submission-guidelines__main .dynamic-content,
.submission-guidelines__notes .dynamic-content {
    margin-top: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.submission-guidelines__notes h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.28rem;
    font-weight: 900;
    text-transform: uppercase;
}

.submission-deadlines {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-left: 5px solid var(--secondary);
    background: rgba(241, 248, 252, 0.9);
}

.submission-deadlines h4 {
    margin: 0;
    color: #7a5d16;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.submission-deadlines p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.submission-deadlines a {
    width: fit-content;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

img[alt*="Kawa"] {
    object-position: center top !important;
}

.footer {
    margin-top: 0;
    background: #001f36;
}

.footer-main {
    padding: clamp(34px, 4vw, 58px) 0 clamp(28px, 3.4vw, 46px);
    border-top: 0;
    background:
        linear-gradient(135deg, #002948 0%, #00395d 58%, #00243f 100%);
}

.footer-topbar {
    gap: clamp(18px, 3vw, 36px);
    padding-bottom: 24px;
    margin-bottom: 18px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.footer-action-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 24px;
    padding: 18px 20px;
    border: 1px solid rgba(243, 223, 170, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(243, 223, 170, 0.16), rgba(15, 118, 189, 0.12)),
        rgba(255, 255, 255, 0.06);
}

.footer-action-band span {
    display: block;
    color: var(--secondary-container);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-action-band strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.28;
}

.footer-action-band a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr) minmax(240px, 1fr);
    gap: 16px;
}

.footer-col {
    min-height: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.footer-col h4 {
    margin-bottom: 18px;
    color: var(--secondary-container);
}

.footer-col h4::after {
    width: 34px;
    background: var(--secondary-container);
}

.footer-cta {
    border-radius: 8px;
}

.footer-bottom {
    background: #00192d;
}

@media (min-width: 1800px) {
    .themes-redesign__list,
    .submission-edas,
    .submission-guidelines {
        width: min(100%, 1520px);
        margin-inline: auto;
    }

    .theme-row {
        min-height: 152px;
        grid-template-columns: 108px minmax(320px, 0.72fr) minmax(0, 1.28fr);
    }

    .submission-checklist__item {
        min-height: 88px;
    }
}

@media (max-width: 1199px) {
    .theme-row {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .theme-row__subtopics {
        grid-column: 2;
        padding-top: 0;
    }

    .theme-row__main {
        border-right: 0;
        padding-bottom: 8px;
    }

    .submission-edas,
    .submission-guidelines {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .themes-redesign-section,
    .submission-edas-section,
    .submission-guidelines-section {
        padding: 34px 0 46px;
    }

    .themes-redesign__intro {
        justify-items: start;
        text-align: left;
    }

    .themes-redesign__intro h2 {
        font-size: 1.5rem;
    }

    .theme-row {
        grid-template-columns: 58px minmax(0, 1fr);
        min-height: 0;
    }

    .theme-row__number {
        font-size: 1.25rem;
    }

    .theme-row__main,
    .theme-row__subtopics {
        padding: 16px;
    }

    .theme-row__main h3 {
        font-size: 1rem;
    }

    .theme-row__subtopics li {
        width: 100%;
        min-height: 34px;
        font-size: 0.82rem;
    }

    .submission-edas__panel {
        grid-template-columns: 1fr;
    }

    .submission-edas__copy {
        padding: 24px;
    }

    .submission-edas__copy h2 {
        font-size: 2rem;
    }

    .submission-edas__copy .btn {
        width: 100%;
    }

    .submission-edas__meta {
        grid-template-columns: 1fr;
    }

    .submission-edas__meta div {
        min-height: 84px;
        border-left: 0;
        border-right: 0;
    }

    .submission-checklist {
        grid-template-columns: 1fr;
    }

    .submission-checklist__item {
        min-height: auto;
        padding: 18px;
    }

    .submission-guidelines__main,
    .submission-guidelines__notes {
        padding: 20px;
    }

    .footer-main {
        padding: 28px 0 24px;
    }

    .footer-topbar {
        justify-items: center;
        text-align: center;
    }

    .footer-brand-panel {
        align-items: center;
        text-align: center;
    }

    .footer-meta-strip {
        width: 100%;
        justify-content: center;
    }

    .footer-meta-chip {
        justify-content: center;
        text-align: center;
    }

    .footer-action-band {
        display: grid;
        justify-items: center;
        text-align: center;
        padding: 18px;
    }

    .footer-action-band a {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-col {
        padding: 16px;
    }

    .footer-col h4 {
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-detail-stack p {
        justify-content: center;
        text-align: center;
    }

    .footer-col ul li {
        text-align: center;
    }

    .footer-cta,
    .social-links a {
        width: 100%;
    }

    .social-links,
    .footer-partner-logos {
        justify-content: center;
    }

    .footer-bottom {
        padding: 16px 0;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.72rem;
        line-height: 1.45;
    }
}

/* ============================================
   CONTACT + IMPORTANT DATES REFINEMENT
   ============================================ */
.contact-redesign-section {
    padding: clamp(42px, 5vw, 78px) 0;
    background:
        linear-gradient(90deg, rgba(12, 90, 125, 0.035) 0 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, rgba(241, 248, 252, 0.92) 100%);
    background-size: 48px 48px, auto;
}

.contact-redesign {
    display: grid;
    gap: 18px;
}

.contact-redesign__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
}

.contact-redesign__info,
.contact-redesign__form-panel,
.contact-detail-card,
.date-card {
    border: 1px solid rgba(0, 47, 79, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(20, 32, 43, 0.06);
}

.contact-redesign__info {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: clamp(24px, 3vw, 40px);
    background:
        linear-gradient(135deg, rgba(0, 41, 72, 0.98), rgba(0, 64, 107, 0.96)),
        var(--primary);
    color: #fff;
}

.contact-redesign__info h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    font-weight: 900;
    line-height: 1.06;
    text-transform: uppercase;
    text-wrap: balance;
}

.contact-redesign__info > p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.68;
}

.contact-redesign__cards {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.contact-detail-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.contact-detail-card .material-symbols-outlined {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: rgba(243, 223, 170, 0.16);
    color: var(--secondary-container);
    font-size: 1.25rem;
}

.contact-detail-card strong {
    display: block;
    color: var(--secondary-container);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-detail-card p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.contact-redesign__form-panel {
    padding: clamp(22px, 3vw, 36px);
    background: rgba(255, 255, 255, 0.96);
}

.contact-redesign__form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-redesign__form .form-group {
    margin: 0;
}

.contact-redesign__form .form-label {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-redesign__form .form-input,
.contact-redesign__form .form-textarea {
    border-radius: 8px;
    background: rgba(241, 248, 252, 0.82);
}

.contact-redesign__form .form-textarea {
    min-height: 170px;
}

.contact-redesign__form .btn {
    justify-self: start;
    min-width: 180px;
}

.form-error {
    margin-top: 8px;
    color: var(--error);
    font-size: 0.82rem;
}

.dates-redesign {
    display: grid;
    gap: clamp(20px, 3vw, 34px);
}

.dates-redesign__header {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.dates-redesign__header h2 {
    width: min(100%, 920px);
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.8rem, 3.4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
    text-wrap: balance;
}

.dates-redesign__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.date-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 150px;
    overflow: hidden;
    background: #fff;
}

.date-card__date {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    background: linear-gradient(180deg, var(--primary), var(--primary-container));
    color: #fff;
    text-align: center;
}

.date-card__date span,
.date-card__date em {
    color: var(--secondary-container);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.date-card__date strong {
    color: #fff;
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1;
}

.date-card__content {
    display: grid;
    align-content: center;
    gap: 9px;
    padding: 22px;
}

.date-card__status {
    width: fit-content;
    min-height: 24px;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(19, 126, 87, 0.1);
    color: #137e57;
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.date-card--passed .date-card__status {
    background: rgba(0, 47, 79, 0.08);
    color: var(--muted);
}

.date-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.24;
}

.date-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.52;
}

/* Home spacing tightening */
.proposal-summary-section {
    padding-top: 34px;
    padding-bottom: 30px;
}

.leadership-home-section {
    padding-top: 30px;
    padding-bottom: 26px;
}

.publication-home-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

.partners-home-section {
    padding-top: 28px;
    padding-bottom: 34px;
}

.proposal-overview-grid,
.leadership-showcase,
.publication-home-grid,
.partners-home-section .section-header {
    gap: clamp(16px, 2vw, 24px);
}

@media (min-width: 1800px) {
    .contact-redesign__grid,
    .dates-redesign__grid {
        width: min(100%, 1520px);
        margin-inline: auto;
    }

    .date-card {
        min-height: 172px;
        grid-template-columns: 132px minmax(0, 1fr);
    }
}

@media (max-width: 1024px) {
    .contact-redesign__grid,
    .dates-redesign__grid {
        grid-template-columns: 1fr;
    }

    .contact-redesign__info {
        align-content: start;
    }
}

@media (max-width: 767px) {
    .contact-redesign-section {
        padding: 34px 0 44px;
    }

    .contact-redesign__info,
    .contact-redesign__form-panel {
        padding: 20px;
    }

    .contact-redesign__info h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-redesign__form .btn {
        width: 100%;
    }

    .date-card {
        grid-template-columns: 82px minmax(0, 1fr);
        min-height: 132px;
    }

    .date-card__date strong {
        font-size: 1.8rem;
    }

    .date-card__content {
        padding: 18px;
    }

    .dates-redesign__header {
        justify-items: start;
        text-align: left;
    }

    .dates-redesign__header h2 {
        font-size: 1.7rem;
    }

    .proposal-summary-section,
    .leadership-home-section,
    .publication-home-section,
    .partners-home-section {
        padding-top: 26px;
        padding-bottom: 28px;
    }
}
