:root {
    --navy: #071b3d;
    --ink: #102033;
    --muted: #62748a;
    --blue: #0787f5;
    --blue-dark: #005eb8;
    --yellow: #ffd400;
    --red: #e30613;
    --green: #0aa66a;
    --line: #e6edf5;
    --surface: #ffffff;
    --soft: #f5f8fc;
    --shadow: 0 22px 60px rgba(7, 27, 61, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: Inter, Arial, sans-serif; }
body {
    margin: 0;
    font-family: inherit;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    letter-spacing: 0;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
    width: 58px;
    height: 58px;
    border: 6px solid var(--line);
    border-top-color: var(--blue);
    border-bottom-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.topbar { background: #f7fbff; border-bottom: 1px solid var(--line); font-size: 13px; }
.topbar-inner { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; color: var(--muted); font-weight: 600; }
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-socials a {
    --social-color: var(--blue);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--social-color);
    border: 1px solid var(--line);
    transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.topbar-socials .social-facebook { --social-color: #1877f2; }
.topbar-socials .social-x { --social-color: #111111; }
.topbar-socials .social-linkedin { --social-color: #0a66c2; }
.topbar-socials .social-youtube { --social-color: #ff0000; }
.topbar-socials a:hover {
    transform: translateY(-2px);
    background: var(--social-color);
    border-color: var(--social-color);
    color: #fff;
    box-shadow: 0 8px 18px rgba(7, 27, 61, .12);
}
.topbar-socials .social-icon {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
    color: currentColor;
}
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; }
.topbar svg { width: 16px; height: 16px; color: var(--blue); }
.topbar-socials .social-icon { color: currentColor; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; transition: box-shadow .25s ease, transform .25s ease; }
.site-header.is-sticky { box-shadow: 0 14px 38px rgba(7, 27, 61, .12); }
.navbar { background: #fff; }
.nav-inner { min-height: 94px; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 218px; max-height: 72px; object-fit: contain; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.main-nav > a,
.nav-group > button {
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 48px;
    white-space: nowrap;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-group:hover > button { color: var(--blue); }
.nav-group { position: relative; }
.nav-group svg { width: 15px; height: 15px; }
.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 245px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .22s ease;
}
.dropdown-right { left: auto; right: 0; }
.nav-group:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; color: var(--muted); font-weight: 700; }
.dropdown a:hover { color: var(--blue); background: #eef7ff; }
.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 6px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(7, 135, 245, .25); }
.nav-cta-contact {
    min-height: 36px;
    padding: 0 12px;
    gap: 6px;
    font-size: 13px;
}
.nav-cta-contact svg {
    width: 14px;
    height: 14px;
}
.nav-cta:hover,
.btn:hover { transform: translateY(-2px); }
.btn svg,
.nav-cta svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 18px 32px rgba(7, 135, 245, .28); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-play { background: #fff; color: var(--navy); }
.menu-toggle { display: none; border: 0; background: var(--soft); width: 46px; height: 46px; border-radius: 6px; color: var(--navy); }

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.institutional-hero {
    background-image: linear-gradient(90deg, rgba(7, 27, 61, .62), rgba(7, 27, 61, .34), rgba(7, 27, 61, .12)), url('../../../capture/Banner-site_1680x335px-POST.jpg');
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 76% 32%, rgba(7, 135, 245, .22), transparent 30%); }
.hero-content { position: relative; max-width: 760px; color: #fff; padding: 90px 0 170px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.eyebrow::before { content: ''; width: 30px; height: 4px; background: var(--yellow); border-radius: 20px; }
.hero h1 { margin: 16px 0 18px; color: #fff; font-size: 64px; line-height: 1.05; font-weight: 900; max-width: 820px; }
.hero p { margin: 0 0 34px; color: rgba(255,255,255,.84); font-size: 18px; max-width: 650px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.sparkle { position: absolute; width: 96px; height: 96px; opacity: .85; }
.sparkle::before,
.sparkle::after { content: ''; position: absolute; background: rgba(255,255,255,.88); border-radius: 4px; transform: rotate(45deg); }
.sparkle::before { width: 18px; height: 92px; left: 39px; top: 2px; }
.sparkle::after { width: 92px; height: 18px; left: 2px; top: 39px; }
.sparkle-one { right: 12%; top: 28%; animation: floatY 4s ease-in-out infinite; }
.sparkle-two { right: 20%; top: 42%; transform: scale(.55); animation: floatY 5s ease-in-out infinite reverse; }

.feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    margin-top: -92px;
    position: relative;
    z-index: 3;
}
.feature-card {
    min-height: 178px;
    padding: 34px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: border-color .22s ease, filter .22s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: var(--blue); }
.feature-card span { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: #eef7ff; color: var(--blue); margin-bottom: 18px; }
.feature-card h2 { margin: 0 0 8px; font-size: 22px; color: var(--navy); }
.feature-card p { margin: 0; color: var(--muted); }
.mission-widget {
    position: relative;
    width: min(100%, 190px);
    justify-self: center;
    min-height: 128px;
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    align-content: center;
    justify-items: center;
    padding: 22px 14px;
    border: 0;
    border-radius: 8px;
    overflow: visible;
    isolation: isolate;
    background: var(--widget-color);
    color: var(--widget-text, #fff);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--widget-color) 30%, transparent);
}
.mission-widget::before,
.mission-widget::after {
    content: '';
    position: absolute;
    inset: -6px;
    z-index: -1;
    border-radius: inherit;
    border: 2px solid var(--widget-color);
    opacity: 0;
    transform: scale(.92);
    transition: none;
}
.mission-widget::after {
    inset: -13px;
    border-width: 1px;
}
.mission-widget:hover,
.mission-widget.is-hovered {
    transform: translateY(-8px) scale(1.04);
    border-color: transparent;
    filter: drop-shadow(0 0 18px color-mix(in srgb, var(--widget-color) 55%, transparent));
}
.mission-widget:hover::before,
.mission-widget:hover::after,
.mission-widget.is-hovered::before,
.mission-widget.is-hovered::after {
    opacity: .58;
    transform: scale(1.03);
}
.mission-widget:hover::after,
.mission-widget.is-hovered::after {
    opacity: .32;
    transform: scale(1.08);
}
.mission-widget span {
    width: 44px;
    height: 44px;
    margin: 0 0 9px;
    background: transparent;
    color: currentColor;
}
.mission-widget span svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.2;
}
.mission-widget h2 {
    margin: 0;
    color: currentColor;
    font-size: 18px;
    line-height: 1.15;
    text-align: center;
}

.president-quote-section {
    position: relative;
    z-index: 2;
    padding: 86px 0 12px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.president-quote {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 34px 42px 34px 34px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #071b3d 0%, #0a3d78 68%, #0787f5 100%);
    box-shadow: 0 28px 70px rgba(7, 27, 61, .18);
}
.president-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,212,0,.28), transparent 20%), radial-gradient(circle at 88% 18%, rgba(255,255,255,.16), transparent 28%);
    pointer-events: none;
}
.president-quote::after {
    content: '“';
    position: absolute;
    right: 36px;
    top: 6px;
    color: rgba(255,255,255,.12);
    font-size: 150px;
    line-height: 1;
    font-weight: 900;
}
.president-portrait {
    position: relative;
    z-index: 1;
    width: 250px;
    aspect-ratio: 1;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--yellow), var(--blue), var(--red));
    box-shadow: 0 20px 42px rgba(0,0,0,.18);
}
.president-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    background: #071b3d;
}
.president-quote-content {
    position: relative;
    z-index: 1;
}
.vision-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}
.president-quote blockquote {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: 32px;
    line-height: 1.24;
    font-weight: 900;
}
.president-quote cite {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,.78);
    font-style: normal;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.image-stack { position: relative; min-height: 520px; }
.main-photo {
    position: absolute;
    inset: 0 70px 0 0;
    border-radius: 8px;
    background-image: linear-gradient(rgba(7,27,61,.08), rgba(7,27,61,.08)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1100&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.main-photo::after { content: ''; position: absolute; right: -32px; bottom: 38px; width: 140px; height: 220px; background: linear-gradient(var(--blue), var(--yellow), var(--red)); border-radius: 6px; z-index: -1; }
.experience-badge { position: absolute; right: 0; top: 52px; width: 162px; height: 162px; display: grid; place-items: center; text-align: center; background: var(--blue); color: #fff; border-radius: 50%; box-shadow: var(--shadow); }
.experience-badge strong { display: block; font-size: 44px; line-height: 1; }
.experience-badge span { display: block; font-weight: 800; font-size: 14px; }
.section-copy h2,
.section-heading h2,
.cta-band h2,
.resource-panel h2 { margin: 14px 0 18px; color: var(--navy); font-size: 42px; line-height: 1.16; }
.section-copy p,
.section-heading p { color: var(--muted); margin: 0 0 26px; }
.check-list { display: grid; gap: 12px; margin: 26px 0 34px; }
.check-list span { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; }
.check-list svg { color: var(--green); }

.pnn-section { background: var(--soft); }
.agency-missions-section { background: #eef2f6; }
.section-heading { max-width: 780px; text-align: center; margin-bottom: 44px; }
.section-heading .eyebrow { justify-content: center; }
.agency-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
}
.agency-mission-card {
    position: relative;
    min-height: 286px;
    padding: 28px 24px 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7,27,61,.08);
    transition: box-shadow .22s ease, background .22s ease;
}
.agency-mission-card::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--mission-accent);
    transform: translateX(-50%);
    transition: width .22s ease;
}
.agency-mission-card::after {
    content: '';
    position: absolute;
    inset: auto -62px -62px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--mission-accent) 9%, transparent);
    opacity: 0;
    transition: opacity .22s ease;
}
.mission-number {
    display: none;
}
.mission-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 0 20px;
    border-radius: 50%;
    color: #005eb8;
    background: #eef8ff;
}
.mission-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed #003fd1;
    border-radius: inherit;
}
.mission-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2.2;
}
.agency-mission-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: #082a83;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}
.agency-mission-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 24px;
    height: 3px;
    border-radius: 20px;
    background: #0787f5;
    transform: translateX(-50%);
}
.agency-mission-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #344365;
    font-size: 14px;
    line-height: 1.65;
}
.agency-mission-card:hover,
.agency-mission-card.is-hovered {
    transform: translateY(-10px);
    box-shadow: 0 26px 58px rgba(7,27,61,.14);
}
.agency-mission-card:hover::before,
.agency-mission-card.is-hovered::before {
    width: 100%;
}
.agency-mission-card:hover::after,
.agency-mission-card.is-hovered::after {
    opacity: 1;
}
.agency-mission-card:hover .mission-icon,
.agency-mission-card.is-hovered .mission-icon {
    color: var(--mission-accent);
    background: color-mix(in srgb, var(--mission-accent) 13%, #fff);
}
.agency-mission-card:hover .mission-icon::before,
.agency-mission-card.is-hovered .mission-icon::before {
    transform: rotate(18deg) scale(1.06);
    border-color: var(--mission-accent);
}
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card { position: relative; min-height: 300px; padding: 30px; background: #fff; border-radius: 8px; box-shadow: 0 14px 42px rgba(7,27,61,.08); overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; inset: auto 0 0 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--yellow), var(--red)); }
.pillar-card span { color: rgba(7,135,245,.16); font-size: 56px; line-height: 1; font-weight: 900; }
.pillar-card h3 { margin: 16px 0 10px; color: var(--navy); font-size: 22px; }
.pillar-card p { color: var(--muted); margin: 0; }
.pillar-card > svg { position: absolute; right: 22px; bottom: 22px; color: var(--blue); }
.pillar-card:hover { transform: translateY(-6px); transition: transform .2s ease; }

.cta-band { padding: 76px 0; background: linear-gradient(90deg, rgba(7,27,61,.96), rgba(0,94,184,.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover; color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: #fff; max-width: 680px; }

.news-section { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-grid.listing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    justify-content: center;
}
.listing-pagination {
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto 0;
}
.listing-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 42px;
    border: 1px dashed rgba(7,27,61,.18);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}
.listing-empty svg { width: 42px; height: 42px; color: var(--blue); }
.listing-empty h3 { margin: 4px 0 0; color: var(--navy); }
.listing-empty p { margin: 0; color: var(--muted); }
.news-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 48px rgba(7,27,61,.1); transition: transform .22s ease; }
.news-card:hover { transform: translateY(-6px); }
.news-card img { width: 100%; height: 214px; object-fit: cover; }
.news-card div { padding: 26px; }
.news-card span { color: var(--blue); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.news-card h3 { margin: 9px 0 10px; color: var(--navy); font-size: 22px; line-height: 1.25; }
.news-card p { margin: 0; color: var(--muted); }
.home-publications { background: #eef2f6; }
.publication-grid { gap: 32px; }
.publication-card {
    overflow: visible;
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(7,27,61,.1);
    transition: box-shadow .22s ease;
}
.publication-card div { padding: 0; }
.publication-card:hover,
.publication-card.is-hovered {
    transform: translateY(-10px);
    box-shadow: 0 30px 62px rgba(7,27,61,.17);
}
.publication-image {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    background: var(--line);
}
.publication-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: none;
}
.publication-card:hover .publication-image img,
.publication-card.is-hovered .publication-image img {
    transform: scale(1.06);
}
.publication-card .publication-content {
    padding: 28px 28px 30px;
    background: #fff;
}
.publication-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 12px;
}
.publication-meta span,
.publication-meta time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #667195;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
}
.publication-meta svg,
.publication-meta time svg {
    width: 15px;
    height: 15px;
    color: #003fd1;
}
.publication-card h3 {
    position: relative;
    display: -webkit-box;
    min-height: calc(1.22em * 3 + 14px);
    margin: 0 0 28px;
    padding-bottom: 14px;
    overflow: hidden;
    color: #082a83;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 900;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.publication-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e4e9f0;
}
.publication-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 38px;
    height: 3px;
    background: #0787f5;
    transition: none;
}
.publication-card:hover h3::after,
.publication-card.is-hovered h3::after {
    width: 72px;
}
.publication-card p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: #4d5c7c;
    font-size: 16px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.publication-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #082a83;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 2px solid #0787f5;
}
.publication-link svg {
    width: 15px;
    height: 15px;
    stroke-width: 3;
}
.publication-link:hover { color: #0787f5; }
.publication-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}
.publication-more-link {
    min-width: 190px;
}

.home-agenda-section {
    padding: 86px 0;
    background: linear-gradient(90deg, rgba(7,27,61,.96), rgba(0,94,184,.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
}
.home-agenda-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
}
.home-agenda-head h2 {
    max-width: 690px;
    margin: 12px 0 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.18;
}
.home-agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.home-agenda-grid-single {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}
.home-agenda-grid-single .home-event-card {
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 230px;
}
.home-agenda-grid-single .home-event-card img {
    height: 198px;
}
.home-event-card {
    position: relative;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 190px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.home-event-card::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s ease;
}
.home-event-card img {
    width: 100%;
    height: 158px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform .35s ease, filter .35s ease;
}
.home-event-card:hover,
.home-event-card.is-hovered {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.16);
    box-shadow: 0 24px 58px rgba(0,0,0,.22);
}
.home-event-card:hover::after,
.home-event-card.is-hovered::after {
    transform: scaleX(1);
}
.home-event-card:hover img,
.home-event-card.is-hovered img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}
.home-event-card:hover h3,
.home-event-card.is-hovered h3 {
    color: var(--yellow);
}
.home-event-card time,
.home-event-card p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.home-event-card time svg,
.home-event-card p svg {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}
.home-event-card h3 {
    margin: 10px 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.agenda-hero {
    background-image: url('../../../capture/Banner-site_1680x335px-POST.jpg');
}
.agenda-section {
    background: #f5f8fb;
}
.agenda-layout {
    display: grid;
    gap: 34px;
}
.agenda-layout .section-heading {
    width: 100%;
    max-width: none;
    margin: 0 0 4px;
}
.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.upcoming-events-grid-single {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}
.upcoming-events-grid-single .event-feature-card {
    grid-template-columns: 380px minmax(0, 1fr);
    grid-template-rows: minmax(360px, auto);
}
.upcoming-events-grid-single .event-feature-image {
    min-height: 360px;
}
.event-feature-card {
    position: relative;
    display: grid;
    grid-template-rows: 300px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(7,27,61,.12);
    transition: transform .24s ease, box-shadow .24s ease;
}
.event-feature-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s ease;
}
.event-feature-image {
    position: relative;
    overflow: hidden;
    background: var(--line);
}
.event-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .36s ease, filter .36s ease;
}
.event-feature-card:hover,
.event-feature-card.is-hovered {
    transform: translateY(-10px);
    box-shadow: 0 32px 72px rgba(7,27,61,.18);
}
.event-feature-card:hover::after,
.event-feature-card.is-hovered::after {
    transform: scaleX(1);
}
.event-feature-card:hover .event-feature-image img,
.event-feature-card.is-hovered .event-feature-image img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}
.event-feature-card:hover .event-status,
.event-feature-card.is-hovered .event-status {
    background: var(--blue);
    color: #fff;
}
.event-feature-card:hover h3,
.event-feature-card.is-hovered h3 {
    color: var(--blue-dark);
}
.event-feature-content {
    padding: 30px;
}
.event-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef7ff;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background .24s ease, color .24s ease;
}
.event-status svg {
    width: 15px;
    height: 15px;
}
.event-feature-card h3,
.event-list-card h3,
.agenda-empty h3 {
    margin: 14px 0 12px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.22;
}
.event-feature-card p,
.event-list-card p,
.agenda-empty p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}
.event-meta-list {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: #354666;
    font-size: 14px;
    font-weight: 800;
}
.event-meta-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}
.event-meta-list svg {
    width: 17px;
    height: 17px;
    color: var(--blue);
    flex: 0 0 auto;
    transition: transform .24s ease, color .24s ease;
}
.event-feature-card:hover .event-meta-list svg,
.event-feature-card.is-hovered .event-meta-list svg,
.event-list-card:hover .event-meta-list svg,
.event-list-card.is-hovered .event-meta-list svg {
    transform: scale(1.12);
    color: var(--blue-dark);
}
.agenda-past-head {
    display: grid;
    justify-items: center;
    margin-top: 34px;
    text-align: center;
}
.agenda-past-head h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.18;
}
.past-events-list {
    display: grid;
    gap: 18px;
}
.event-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 210px;
    padding: 18px;
    border: 1px solid rgba(7,27,61,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(7,27,61,.08);
    overflow: hidden;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.event-list-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .24s ease;
}
.event-list-card img {
    width: 100%;
    height: 174px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform .35s ease, filter .35s ease;
}
.event-list-card:hover,
.event-list-card.is-hovered {
    transform: translateY(-6px);
    border-color: rgba(7,135,245,.24);
    box-shadow: 0 26px 62px rgba(7,27,61,.14);
}
.event-list-card:hover::before,
.event-list-card.is-hovered::before {
    transform: scaleY(1);
}
.event-list-card:hover img,
.event-list-card.is-hovered img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03);
}
.event-list-card:hover h3,
.event-list-card.is-hovered h3 {
    color: var(--blue-dark);
}
.event-list-card time {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.event-list-card h3 {
    margin-top: 8px;
    font-size: 24px;
}
.event-meta-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 14px 0 0;
}
.agenda-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px;
    border: 1px dashed rgba(7,27,61,.18);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}
.agenda-empty svg {
    width: 42px;
    height: 42px;
    color: var(--blue);
}
.agenda-empty h3 {
    margin-bottom: 0;
}
.agenda-pagination {
    margin-top: 6px;
}

.resources-section { padding-top: 0; }
.resource-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding: 58px; background: var(--navy); color: #fff; border-radius: 8px; }
.resource-panel h2 { color: #fff; }
.resource-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.resource-links a { display: flex; align-items: center; gap: 12px; padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; font-weight: 800; }
.resource-links a:hover { background: var(--blue); }

.inner-hero { position: relative; height: clamp(230px, 19.94vw, 335px); padding: 0; display: grid; align-items: center; color: #fff; background: url('../../../capture/Banner-site_1680x335px-POST.jpg') center/100% 100% no-repeat; overflow: hidden; }
.inner-hero::after { content: none; }
.inner-hero-centered { text-align: center; }
.inner-hero-centered .eyebrow { justify-content: center; }
.inner-hero h1 { margin: 14px 0 12px; font-size: 50px; line-height: 1.1; }
.inner-hero p { max-width: 760px; color: rgba(255,255,255,.82); margin: 0; font-size: 18px; }
.inner-hero-centered p { margin-left: auto; margin-right: auto; }
.contact-hero {
    background-image: url('../../../capture/Banner-site_1680x335px-POST.jpg');
}
.contact-section { background: #f5f8fb; }
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    gap: 42px;
    align-items: start;
}
.contact-info h2,
.contact-form-head h2 {
    margin: 12px 0 14px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.18;
}
.contact-info > p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}
.contact-card-list {
    display: grid;
    gap: 16px;
}
.contact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(7,27,61,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(7,27,61,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7,135,245,.22);
    box-shadow: 0 24px 58px rgba(7,27,61,.14);
}
.contact-card > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef7ff;
    color: var(--blue);
}
.contact-card svg { width: 25px; height: 25px; }
.contact-card h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 18px;
}
.contact-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.65;
}
.contact-card a { color: var(--blue-dark); }
.contact-form {
    display: grid;
    gap: 12px;
    padding: 30px;
    border: 1px solid rgba(7,27,61,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 58px rgba(7,27,61,.12);
}
.contact-form-head span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-form label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(7,135,245,.48);
    box-shadow: 0 0 0 4px rgba(7,135,245,.08);
}
.contact-form textarea { resize: vertical; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; }
.content-grid-centered { grid-template-columns: minmax(0, 1fr); justify-content: stretch; text-align: center; }
.content-grid-evaluation { grid-template-columns: minmax(0, 1080px); justify-content: center; }
.content-grid-centered .content-article { text-align: center; }
.content-grid-presentation { grid-template-columns: minmax(0, 1fr); justify-content: stretch; text-align: center; }
.content-grid-presentation .content-article { text-align: center; }
.content-article { font-size: 18px; color: var(--muted); }
.content-article h2 { margin-top: 0; color: var(--navy); font-size: 36px; }
.page-section-title,
.evaluation-section-title {
    margin: 0 auto 22px;
    display: grid;
    justify-items: center;
    gap: 18px;
    font-size: clamp(38px, 4.6vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-wrap: balance;
}
.page-section-title.page-section-title-compact {
    font-size: clamp(26px, 2.9vw, 34px);
    letter-spacing: .04em;
}
.page-section-title::after,
.evaluation-section-title::after {
    content: '';
    width: min(340px, 100%);
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #01a8e8 0 33.333%, #ffde14 33.333% 66.666%, #ef3340 66.666% 100%);
    box-shadow: 0 14px 26px rgba(7, 27, 61, .12);
}
.content-grid-centered .content-article p { max-width: none; margin-left: 0; margin-right: 0; }
.content-grid-presentation .content-article p { max-width: none; margin-left: 0; margin-right: 0; }
.evaluation-download-block {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 28px;
    padding: 26px;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    box-shadow: 0 18px 44px rgba(7, 27, 61, .1);
}
.evaluation-cover {
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 8px;
    background: #f4f7fb;
    border: 1px solid #e3edf7;
}
.evaluation-cover img {
    width: min(330px, 100%);
    max-height: 450px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(7, 27, 61, .14);
}
.evaluation-download-content {
    display: grid;
    justify-items: start;
    gap: 14px;
}
.evaluation-download-content .eyebrow {
    justify-content: flex-start;
}
.evaluation-download-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.14;
    font-weight: 900;
}
.evaluation-download-content h3 small {
    display: block;
    margin-top: 6px;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}
.evaluation-download-content p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}
.pillars-section {
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}
.pillars-container {
    max-width: 1080px;
}
.pillars-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}
.pillars-heading .eyebrow {
    justify-content: center;
}
.pillars-heading h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.18;
    font-weight: 900;
}
.pillars-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.pillar-zone {
    display: grid;
    gap: 18px;
    align-items: start;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 27, 61, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.pillar-zone:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 130, 240, .38);
    box-shadow: 0 24px 54px rgba(7, 27, 61, .14);
}
.pillar-zone-media {
    position: relative;
    min-height: 158px;
    display: grid;
    place-items: center;
    padding: 22px;
    border-radius: 8px;
    background: #071b3d;
    overflow: hidden;
}
.pillar-zone-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 130, 240, .48), rgba(244, 196, 48, .2));
    opacity: .54;
    transition: opacity .24s ease;
}
.pillar-zone:hover .pillar-zone-media::before {
    opacity: .72;
}
.pillar-zone-media > span {
    position: absolute;
    left: 14px;
    top: 12px;
    z-index: 1;
    color: rgba(255,255,255,.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
}
.pillar-zone-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.2));
    transition: transform .24s ease;
}
.pillar-zone:hover .pillar-zone-media img {
    transform: scale(1.04);
}
.pillar-zone-content {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.66;
}
.pillar-zone-number {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef7ff;
    color: var(--blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}
.pillar-zone-content h3 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 900;
}
.pillar-zone-content p {
    margin: 0 0 10px;
}
.pillar-axis-block {
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 4px solid var(--blue);
    border-radius: 7px;
    background: #f8fbff;
}
.pillar-axis-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}
.pillar-axis-block ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
}
.pillar-axis-block li {
    padding-left: 3px;
}
.post-detail-hero h1 { max-width: 900px; margin-left: auto; margin-right: auto; }
.post-detail-section { background: #fff; }
.post-detail-wrap {
    max-width: none;
    text-align: center;
}
.post-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 62px rgba(7,27,61,.14);
}
.post-detail-content {
    max-width: none;
    margin: 42px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    text-align: center;
}
.post-detail-excerpt {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.55;
    font-weight: 800;
    text-align: center;
}
.post-detail-body { white-space: normal; text-align: center; }
.post-detail-body > *:first-child { margin-top: 0; }
.post-detail-body > *:last-child { margin-bottom: 0; }
.post-detail-body p { margin: 0 0 18px; }
.post-detail-body h2,
.post-detail-body h3,
.post-detail-body h4 {
    margin: 34px 0 14px;
    color: var(--navy);
    line-height: 1.25;
}
.post-detail-body h2 { font-size: 30px; }
.post-detail-body h3 { font-size: 24px; }
.post-detail-body h4 { font-size: 20px; }
.post-detail-body ul,
.post-detail-body ol { margin: 0 0 22px; padding-left: 24px; }
.post-detail-body li { margin-bottom: 8px; }
.post-detail-body blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    background: #f3f8ff;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.55;
    font-weight: 800;
}
.post-detail-body a { color: var(--blue); font-weight: 800; text-decoration: underline; }
.post-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(7,27,61,.12);
}
.post-detail-body figure { margin: 30px 0; }
.post-detail-body figure img { width: 100%; }
.post-detail-body figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}
.post-detail-body iframe,
.post-detail-body video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    background: #071b3d;
    box-shadow: 0 18px 44px rgba(7,27,61,.14);
}
.post-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    overflow: hidden;
    border-radius: 8px;
}
.post-detail-body th,
.post-detail-body td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
}
.post-detail-body th { background: #f3f8ff; color: var(--navy); }
.post-detail-body .alignleft,
.post-detail-body img.alignleft,
.post-detail-body video.alignleft,
.post-detail-body iframe.alignleft {
    float: left;
    max-width: 50%;
    margin: 6px 24px 16px 0;
}
.post-detail-body .alignright,
.post-detail-body img.alignright,
.post-detail-body video.alignright,
.post-detail-body iframe.alignright {
    float: right;
    max-width: 50%;
    margin: 6px 0 16px 24px;
}
.post-detail-body .aligncenter,
.post-detail-body img.aligncenter,
.post-detail-body video.aligncenter,
.post-detail-body iframe.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.post-detail-body::after { content: ''; display: block; clear: both; }
.post-share-block {
    max-width: 820px;
    margin: 44px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.post-share-block > span {
    display: block;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}
.post-share-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.post-share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    background: #eef7ff;
    color: #082a83;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.post-share-links a:hover {
    transform: translateY(-3px);
    background: var(--blue);
    color: #fff;
}
.post-detail-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}
.documents-section { background: #f5f8fb; }
.documents-wrap {
    display: grid;
    gap: 34px;
    justify-items: stretch;
}
.documents-intro {
    width: 100%;
    max-width: none;
    text-align: center;
}
.documents-intro h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 38px;
}
.documents-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}
.documents-list {
    width: min(930px, 100%);
    display: grid;
    justify-self: center;
    gap: 18px;
}
.document-card {
    --document-accent: var(--blue);
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 102px;
    padding: 16px 18px;
    border: 1px solid rgba(7,27,61,.08);
    border-left: 5px solid var(--document-accent);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7,27,61,.08);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.document-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7,135,245,.22);
    box-shadow: 0 24px 62px rgba(7,27,61,.14);
}
.document-card-pdf { --document-accent: #e31820; }
.document-card-word { --document-accent: #0f6fca; }
.document-card-excel { --document-accent: #178a51; }
.document-card-powerpoint { --document-accent: #d85a1f; }
.document-file-icon {
    width: 56px;
    min-height: 64px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 8px 5px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--document-accent) 12%, #fff);
    color: var(--document-accent);
    text-align: center;
}
.document-file-icon svg { width: 21px; height: 21px; }
.document-file-icon span {
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
}
.document-kind {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--document-accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.document-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.2;
}
.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.document-meta li { display: inline-flex; align-items: center; gap: 6px; }
.document-meta svg { width: 14px; height: 14px; color: var(--document-accent); }
.document-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}
.document-download:hover { background: var(--document-accent); color: #fff; }
.document-download svg { width: 13px; height: 13px; }
.documents-empty {
    width: min(640px, 100%);
    display: grid;
    justify-self: center;
    justify-items: center;
    gap: 10px;
    padding: 42px;
    border: 1px dashed rgba(7,27,61,.18);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}
.documents-empty svg { width: 42px; height: 42px; color: var(--blue); }
.documents-empty h3 { margin: 4px 0 0; color: var(--navy); }
.documents-empty p { margin: 0; color: var(--muted); }
.documents-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.documents-pagination a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
    font-weight: 900;
}
.documents-pagination a:hover,
.documents-pagination a.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.gallery-section {
    background: #f1f5fa;
}
.gallery-heading {
    margin: 0 auto 34px;
    text-align: center;
}
.gallery-heading .eyebrow {
    justify-content: center;
}
.gallery-heading h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
}
.gallery-empty {
    width: min(520px, 100%);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 34px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}
.gallery-empty svg {
    width: 34px;
    height: 34px;
    color: var(--blue);
}
.gallery-empty p {
    margin: 0;
}
.gallery-heading-with-action {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.gallery-heading-with-action .eyebrow {
    justify-content: flex-start;
}
.gallery-heading-album {
    align-items: center;
    gap: 30px;
}
.gallery-heading-copy {
    display: grid;
    gap: 10px;
    justify-items: flex-start;
}
.gallery-heading-album .page-section-title {
    margin-bottom: 0;
}
.gallery-album-action {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 16px 32px rgba(7, 27, 61, .18);
}
.gallery-album-action svg {
    width: 16px;
    height: 16px;
}
.gallery-album-grid,
.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.gallery-album-card,
.gallery-photo-card {
    position: relative;
    min-height: 256px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--navy);
    box-shadow: 0 18px 42px rgba(7, 27, 61, .12);
    isolation: isolate;
}
.gallery-album-card img,
.gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s ease, filter .32s ease;
}
.gallery-album-card:hover img,
.gallery-photo-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}
.gallery-card-overlay,
.gallery-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 27, 61, .04) 22%, rgba(7, 27, 61, .88) 100%);
}
.gallery-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}
.gallery-card-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 800;
}
.gallery-card-date svg {
    width: 14px;
    height: 14px;
    color: var(--red);
}
.gallery-card-content strong {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-size: 21px;
    line-height: 1.16;
    font-weight: 900;
}
.gallery-album-card::after {
    content: '';
    position: absolute;
    left: 18px;
    bottom: 12px;
    z-index: 2;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: var(--blue);
    transition: width .25s ease;
}
.gallery-album-card:hover::after {
    width: 44px;
}
.gallery-photo-card {
    min-height: 230px;
    border: 0;
    padding: 0;
    cursor: zoom-in;
    text-align: left;
}
.gallery-photo-overlay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
    color: #fff;
    opacity: .92;
    transition: background .25s ease, opacity .25s ease;
}
.gallery-photo-overlay svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
}
.gallery-photo-overlay strong {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}
.gallery-photo-card:hover .gallery-photo-overlay {
    background: linear-gradient(180deg, rgba(7, 27, 61, .08) 0%, rgba(7, 27, 61, .94) 100%);
    opacity: 1;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 34px;
    background: rgba(3, 12, 29, .88);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}
.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox figure {
    margin: 0;
    width: min(1080px, 100%);
    color: #fff;
}
.gallery-lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 22px 72px rgba(0,0,0,.35);
}
.gallery-lightbox figcaption {
    margin-top: 12px;
    font-weight: 800;
    text-align: center;
}
.gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
}
.gallery-lightbox-close svg {
    width: 22px;
    height: 22px;
}
.videos-section {
    background: #f4f6f9;
}
.videos-container {
    max-width: 1220px;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.video-card {
    display: grid;
    grid-template-rows: 148px minmax(112px, auto);
    overflow: hidden;
    border: 1px solid #dbe3ed;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    text-align: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(7, 27, 61, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 130, 240, .34);
    box-shadow: 0 20px 46px rgba(7, 27, 61, .13);
}
.video-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--navy);
}
.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}
.video-card:hover .video-cover img {
    transform: scale(1.05);
    filter: saturate(1.08);
}
.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f23d55;
    color: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 28px rgba(242, 61, 85, .34);
}
.video-play svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
    fill: currentColor;
}
.video-card-body {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 9px 12px 14px;
}
.video-card-body strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
    overflow: hidden;
    color: #000;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 700;
}
.video-card-body span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #7b8490;
    font-size: 13px;
    font-weight: 500;
}
.video-card-body svg {
    width: 14px;
    height: 14px;
    color: #98a2ad;
}
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 520;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(3, 12, 29, .88);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}
.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.video-modal-dialog {
    position: relative;
    width: min(980px, 100%);
    color: #fff;
}
.video-frame-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.video-modal-dialog strong {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
}
.video-modal-close {
    position: absolute;
    top: -58px;
    right: 0;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
}
.video-modal-close svg {
    width: 22px;
    height: 22px;
}
.coordination-section {
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}
.coordination-container {
    max-width: 1180px;
}
.coordination-intro {
    width: 100%;
    max-width: none;
    margin: 0 0 30px;
    text-align: center;
}
.coordination-intro .eyebrow {
    justify-content: center;
}
.coordination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.coordination-card {
    overflow: hidden;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 27, 61, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.coordination-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 130, 240, .36);
    box-shadow: 0 20px 42px rgba(7, 27, 61, .12);
}
.coordination-photo {
    position: relative;
    aspect-ratio: 4 / 4.15;
    overflow: hidden;
    background: #eaf1f8;
}
.coordination-photo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--red));
}
.coordination-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}
.coordination-card:hover .coordination-photo img {
    transform: scale(1.04);
    filter: saturate(1.05);
}
.coordination-card-body {
    display: grid;
    gap: 6px;
    padding: 15px 15px 17px;
    text-align: center;
}
.coordination-card-body strong {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.16;
    font-weight: 900;
}
.coordination-card-body span {
    color: var(--blue);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
}
.platforms-section {
    background: #f4f7fb;
}
.platforms-container {
    max-width: 1180px;
}
.listing-heading {
    width: 100%;
    max-width: none;
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.platform-card {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 24px 18px 22px;
    overflow: hidden;
    border: 1px solid #dfe8f2;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7, 27, 61, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 130, 240, .12), rgba(255, 212, 0, .16));
    opacity: 0;
    transition: opacity .24s ease;
}
.platform-card:hover {
    transform: translateY(-7px);
    border-color: rgba(11, 130, 240, .38);
    box-shadow: 0 24px 54px rgba(7, 27, 61, .14);
}
.platform-card:hover::before {
    opacity: 1;
}
.platform-logo-wrap,
.platform-card strong,
.platform-open {
    position: relative;
    z-index: 1;
}
.platform-logo-wrap {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: #f7fafd;
    border: 1px solid #e4edf6;
    transition: transform .24s ease, background .24s ease;
}
.platform-card:hover .platform-logo-wrap {
    transform: scale(1.05);
    background: #fff;
}
.platform-logo-wrap img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}
.platform-logo-fallback {
    color: var(--blue);
    font-size: 38px;
    font-weight: 900;
}
.platform-card strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 0;
    overflow: hidden;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.18;
    font-weight: 900;
}
.platform-open {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    opacity: .78;
    transition: opacity .2s ease;
}
.platform-card:hover .platform-open {
    opacity: 1;
}
.platform-open svg {
    width: 15px;
    height: 15px;
}
.presentation-pillars-band {
    margin-top: 54px;
    padding: 36px 0 42px;
    background: transparent;
    overflow: visible;
}
.presentation-pillars {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}
.presentation-pillars img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(7, 27, 61, .08));
}
.pillar-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.pillar-hotspot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: clamp(72px, 13.6%, 168px);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    color: var(--point-color);
    z-index: 3;
    transition: transform .28s ease, filter .28s ease;
}
.pillar-hotspot::before,
.pillar-hotspot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease;
}
.pillar-hotspot::before {
    border: 3px solid currentColor;
    opacity: 0;
    box-shadow: 0 0 0 0 currentColor;
}
.pillar-hotspot::after {
    background: currentColor;
    opacity: 0;
    transform: scale(.72);
}
.pillar-hotspot span {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 2;
    min-width: 118px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
}
.pillar-hotspot:hover,
.pillar-hotspot:focus-visible {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 0 18px currentColor);
}
.pillar-hotspot:hover::before,
.pillar-hotspot:focus-visible::before {
    opacity: .95;
    transform: scale(1.08);
    box-shadow: 0 0 0 10px color-mix(in srgb, currentColor 20%, transparent);
    animation: pillarPulse 1.35s ease-in-out infinite;
}
.pillar-hotspot:hover::after,
.pillar-hotspot:focus-visible::after {
    opacity: .12;
    transform: scale(1);
}
.pillar-hotspot:hover span,
.pillar-hotspot:focus-visible span {
    opacity: 1;
    transform: translate(-50%, 0);
}
.side-panel { position: sticky; top: 130px; padding: 28px; background: var(--soft); border-radius: 8px; }
.side-panel h3 { margin: 0 0 16px; color: var(--navy); }
.side-panel a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 800; }
.side-panel a:hover { color: var(--blue); }
.related-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.site-footer {
    position: relative;
    min-height: 450px;
    background: #2c4888;
    color: #fff;
    overflow: hidden;
}
.footer-stripe {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 40px));
    height: 7px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    transform: translateX(-50%);
}
.footer-stripe span:nth-child(1) { background: #01a8e8; }
.footer-stripe span:nth-child(2) { background: #ffde14; }
.footer-stripe span:nth-child(3) { background: #ef3340; }
.footer-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 14px;
}
.footer-main {
    display: grid;
    grid-template-columns: 320px 170px 190px 260px;
    justify-content: space-between;
    gap: 34px;
    align-items: start;
}
.footer-contact {
    min-height: 254px;
    padding-right: 52px;
    border-right: 1px solid rgba(255,255,255,.34);
}
.footer-logo {
    width: 221px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    margin: 0 0 28px;
}
.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0 0 0 4px;
}
.footer-contact li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 700;
}
.footer-contact svg {
    width: 15px;
    height: 15px;
    margin-top: 3px;
    stroke-width: 2.2;
}
.site-footer h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}
.site-footer a {
    color: #fff;
    transition: opacity .18s ease, color .18s ease;
}
.site-footer a:hover { color: #ffde14; }
.footer-links a {
    display: block;
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}
.footer-institutions a { max-width: 150px; }
.footer-newsletter p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}
.footer-newsletter form { display: grid; gap: 10px; }
.footer-newsletter label {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.footer-newsletter input {
    width: 223px;
    height: 48px;
    border: 1px solid #d8dde9;
    border-radius: 6px;
    padding: 0 8px;
    background: #fff;
    color: #657080;
    font-size: 14px;
    outline: none;
}
.footer-newsletter input::placeholder { color: #6e7786; }
.footer-newsletter button {
    width: 223px;
    height: 34px;
    border: 0;
    border-radius: 7px;
    background: #ef3f52;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}
.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 58px 0 15px;
}
.footer-socials a {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #fff;
    margin: 0;
}
.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke-width: 0;
}
.footer-socials strong {
    font-family: inherit;
    font-size: 22px;
    line-height: 18px;
    font-weight: 900;
}
.footer-socials .x-mark {
    font-size: 20px;
    text-transform: uppercase;
}
.youtube-mark {
    position: relative;
    width: 19px;
    height: 13px;
    display: block;
    border-radius: 4px;
    background: #fff;
}
.youtube-mark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 0;
    height: 0;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 5px solid #2c4888;
}
.footer-copy {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}
.scroll-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border: 0; border-radius: 6px; display: grid; place-items: center; background: var(--blue); color: #fff; opacity: 0; visibility: hidden; cursor: pointer; box-shadow: var(--shadow); z-index: 80; }
.scroll-top.is-visible { opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pillarPulse {
    0%, 100% { transform: scale(1.05); opacity: .9; }
    50% { transform: scale(1.2); opacity: .45; }
}

@media (max-width: 1120px) {
    .nav-cta { display: none; }
    .main-nav { gap: 14px; }
    .brand img { width: 190px; }
}

@media (max-width: 980px) {
    .topbar { display: none; }
    .nav-inner { min-height: 78px; }
    .menu-toggle { display: grid; place-items: center; margin-left: auto; }
    .main-nav { position: fixed; inset: 78px 0 auto 0; height: calc(100vh - 78px); overflow: auto; display: none; padding: 22px; background: #fff; flex-direction: column; align-items: stretch; gap: 8px; }
    .main-nav.is-open { display: flex; }
    .main-nav > a, .nav-group > button { width: 100%; justify-content: space-between; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--soft); margin-bottom: 8px; display: none; }
    .nav-group:hover .dropdown, .nav-group:focus-within .dropdown { display: block; }
    .hero { min-height: 650px; }
    .hero h1 { font-size: 48px; }
    .feature-strip, .pillar-grid, .agency-mission-grid, .news-grid, .related-grid, .gallery-album-grid, .gallery-photo-grid, .video-grid, .platform-grid, .coordination-grid { grid-template-columns: repeat(2, 1fr); }
    .home-agenda-grid,
    .upcoming-events-grid { grid-template-columns: 1fr; }
    .home-agenda-head { align-items: flex-start; flex-direction: column; }
    .mission-widget { width: min(100%, 190px); justify-self: center; }
    .president-quote { grid-template-columns: 190px 1fr; gap: 30px; padding: 28px; }
    .president-portrait { width: 190px; }
    .president-quote blockquote { font-size: 25px; }
    .split-grid, .resource-panel, .content-grid { grid-template-columns: 1fr; }
    .evaluation-download-block { grid-template-columns: 1fr; text-align: center; }
    .evaluation-download-content { justify-items: center; }
    .evaluation-download-content .eyebrow { justify-content: center; }
    .pillars-list { grid-template-columns: 1fr; }
    .pillar-zone { grid-template-columns: 1fr; gap: 18px; }
    .pillar-zone-media { min-height: 150px; }
    .contact-grid { grid-template-columns: 1fr; }
    .document-card { grid-template-columns: 78px minmax(0, 1fr); }
    .document-download { grid-column: 1 / -1; justify-self: start; }
    .footer-wrap { width: min(720px, calc(100% - 38px)); padding-top: 54px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 30px 42px; }
    .footer-contact { min-height: 0; padding-right: 0; border-right: 0; }
    .footer-logo { width: 230px; }
    .footer-newsletter input, .footer-newsletter button { width: 100%; }
    .image-stack { min-height: 430px; }
    .side-panel { position: static; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 78px 0; }
    .brand img { width: 168px; }
    .hero { min-height: 610px; }
    .hero-content { padding-bottom: 140px; }
    .hero h1 { font-size: 38px; }
    .hero p, .inner-hero p { font-size: 16px; }
    .feature-strip, .pillar-grid, .agency-mission-grid, .news-grid, .related-grid, .resource-links, .gallery-album-grid, .gallery-photo-grid, .video-grid, .platform-grid, .coordination-grid { grid-template-columns: 1fr; }
    .home-agenda-section { padding: 70px 0; }
    .home-agenda-head h2,
    .agenda-past-head h2 { font-size: 30px; }
    .home-event-card,
    .event-list-card { grid-template-columns: 1fr; }
    .home-event-card img,
    .event-list-card img { height: 210px; }
    .event-feature-card { grid-template-rows: 230px minmax(0, 1fr); }
    .event-feature-content { padding: 24px; }
    .event-feature-card h3,
    .event-list-card h3 { font-size: 22px; }
    .agenda-empty { padding: 32px 22px; }
    .agency-mission-card { min-height: 0; padding: 26px; }
    .mission-widget { width: min(100%, 220px); }
    .president-quote-section { padding: 62px 0 0; }
    .president-quote { grid-template-columns: 1fr; gap: 24px; padding: 24px; text-align: center; }
    .president-portrait { width: min(220px, 100%); justify-self: center; }
    .president-quote blockquote { font-size: 22px; }
    .president-quote cite { font-size: 13px; }
    .section-copy h2, .section-heading h2, .cta-band h2, .resource-panel h2 { font-size: 32px; }
    .evaluation-download-block { padding: 18px; gap: 22px; }
    .evaluation-download-content h3 { font-size: 26px; }
    .evaluation-download-content h3 small { font-size: 15px; }
    .evaluation-download-content p { font-size: 15px; }
    .evaluation-cover img { max-height: 300px; }
    .pillars-heading h2 { font-size: 28px; }
    .pillar-zone { padding: 16px; }
    .pillar-zone-content h3 { font-size: 22px; }
    .pillar-zone-content { font-size: 14px; line-height: 1.65; }
    .pillar-zone-media img { max-height: 96px; }
    .inner-hero { height: 230px; padding: 0; }
    .inner-hero h1 { font-size: 32px; }
    .documents-intro h2 { font-size: 30px; }
    .gallery-heading h2 { font-size: 30px; }
    .gallery-heading-with-action { align-items: flex-start; flex-direction: column; text-align: left; }
    .gallery-heading-copy { width: 100%; }
    .gallery-heading-with-action .btn { width: 100%; }
    .gallery-album-card,
    .gallery-photo-card { min-height: 250px; }
    .gallery-lightbox { padding: 18px; }
    .gallery-lightbox-close { top: 12px; right: 12px; }
    .video-card { grid-template-rows: 190px minmax(100px, auto); }
    .video-modal { padding: 18px; }
    .video-modal-close { top: -54px; right: 0; }
    .post-detail-body h2 { font-size: 26px; }
    .post-detail-body h3 { font-size: 22px; }
    .post-detail-body .alignleft,
    .post-detail-body img.alignleft,
    .post-detail-body video.alignleft,
    .post-detail-body iframe.alignleft,
    .post-detail-body .alignright,
    .post-detail-body img.alignright,
    .post-detail-body video.alignright,
    .post-detail-body iframe.alignright {
        float: none;
        max-width: 100%;
        margin: 22px auto;
    }
    .document-card { grid-template-columns: 1fr; justify-items: start; padding: 22px; }
    .document-file-icon { width: 74px; min-height: 82px; }
    .document-content h3 { font-size: 20px; }
    .document-meta { flex-direction: column; gap: 8px; }
    .document-download { width: 100%; }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .resource-panel { padding: 34px 24px; }
    .contact-info h2,
    .contact-form-head h2 { font-size: 30px; }
    .contact-form { padding: 24px; }
    .contact-card { grid-template-columns: 1fr; }
    .image-stack { min-height: 360px; }
    .main-photo { right: 35px; }
    .experience-badge { width: 128px; height: 128px; }
    .site-footer { min-height: auto; }
    .footer-stripe { width: 100%; }
    .footer-wrap { padding: 42px 0 18px; }
    .footer-main { grid-template-columns: 1fr; gap: 26px; }
    .footer-logo { width: 220px; height: auto; }
    .footer-links a, .footer-contact li, .footer-newsletter p { font-size: 14px; }
    .footer-institutions a { max-width: none; }
    .footer-socials { margin-top: 34px; }
}
