:root {
    --ink: #10151d;
    --muted: #647084;
    --line: rgba(16, 21, 29, 0.12);
    --paper: #f8f6ef;
    --white: #ffffff;
    --navy: #071827;
    --blue: #005079;
    --cyan: #46a0d8;
    --green: #62b66f;
    --coral: #f06f4f;
    --gold: #f7c95b;
    --violet: #7a6ff0;
    --shadow: 0 24px 70px rgba(7, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 132px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
}

.event-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 320px),
        var(--paper);
}

.policy-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, var(--navy) 0, #0a3954 330px, var(--paper) 330px),
        var(--paper);
}

.policy-header {
    position: relative;
    z-index: 8;
    display: flex;
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 auto;
    padding: 24px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.policy-header__brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
}

.policy-header__brand img {
    display: block;
    width: auto;
    height: 48px;
    max-width: none;
}

.policy-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.policy-header__link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.policy-header__link:hover {
    border-color: rgba(247, 201, 91, 0.58);
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    transform: translateY(-1px);
}

.language-switcher--light .language-switcher__toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.language-switcher--light .language-switcher__toggle:hover,
.language-switcher--light.is-open .language-switcher__toggle {
    border-color: rgba(247, 201, 91, 0.58);
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.policy-hero {
    padding: 70px 0 56px;
    color: var(--white);
}

.policy-hero__inner {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
}

.policy-hero h1 {
    max-width: 840px;
    margin: 12px 0 0;
    color: var(--white);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
}

.policy-hero__meta {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 800;
}

.policy-document {
    padding: 0 0 92px;
}

.policy-document__inner {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(7, 24, 39, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.policy-document__inner > h2 {
    margin: 0 0 28px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: 0;
}

.policy-rich-text {
    color: rgba(16, 21, 29, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.policy-rich-text > *:first-child {
    margin-top: 0;
}

.policy-rich-text > *:last-child {
    margin-bottom: 0;
}

.policy-rich-text h1,
.policy-rich-text h2,
.policy-rich-text h3,
.policy-rich-text h4 {
    margin: 34px 0 14px;
    color: var(--navy);
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: 0;
}

.policy-rich-text h1 {
    font-size: 34px;
}

.policy-rich-text h2 {
    font-size: 28px;
}

.policy-rich-text h3 {
    font-size: 23px;
}

.policy-rich-text p,
.policy-rich-text ul,
.policy-rich-text ol,
.policy-rich-text blockquote,
.policy-rich-text table {
    margin: 0 0 18px;
}

.policy-rich-text ul,
.policy-rich-text ol {
    padding-left: 24px;
}

.policy-rich-text li + li {
    margin-top: 8px;
}

.policy-rich-text a {
    color: var(--blue);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.policy-rich-text blockquote {
    padding: 18px 22px;
    border-left: 4px solid var(--coral);
    background: rgba(240, 111, 79, 0.08);
    color: rgba(16, 21, 29, 0.74);
}

.policy-rich-text table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

.policy-rich-text th,
.policy-rich-text td {
    padding: 12px 14px;
    border: 1px solid rgba(7, 24, 39, 0.12);
    text-align: left;
    vertical-align: top;
}

.policy-rich-text th {
    background: rgba(0, 80, 121, 0.08);
    color: var(--navy);
}

.policy-empty {
    margin: 0;
    color: rgba(16, 21, 29, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.98), rgba(0, 63, 99, 0.96)),
        var(--navy);
    color: var(--white);
}

.site-footer__inner {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    padding: 26px 0;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.site-footer__brand img {
    display: block;
    width: auto;
    height: 46px;
    max-width: none;
}

.site-footer__meta,
.site-footer__links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
}

.site-footer__meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 800;
}

.site-footer__links a,
.site-footer__links button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links button:hover {
    color: var(--gold);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--coral), var(--cyan));
    box-shadow: 0 0 24px rgba(247, 201, 91, 0.55);
}

.section {
    position: relative;
    padding: 96px 0;
}

.section[id] {
    scroll-margin-top: 118px;
}

.section__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 40;
    display: flex;
    width: min(1220px, calc(100% - 32px));
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(127, 208, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.88), rgba(0, 80, 121, 0.78)),
        rgba(7, 24, 39, 0.82);
    box-shadow: 0 20px 70px rgba(0, 27, 43, 0.3);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
    transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    min-height: 72px;
    border-color: rgba(127, 208, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.95), rgba(0, 63, 99, 0.9)),
        rgba(7, 24, 39, 0.92);
    box-shadow: 0 16px 54px rgba(0, 27, 43, 0.34);
}

.brand-cluster {
    position: relative;
    z-index: 52;
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand__logo {
    width: auto;
    height: 48px;
    max-width: none;
    display: block;
}

.brand__event {
    position: relative;
    display: inline-flex;
    min-width: 112px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 20px;
    border: 1px solid rgba(247, 201, 91, 0.36);
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    background: rgba(247, 201, 91, 0.14);
    color: var(--gold);
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.brand__event i {
    font-size: 11px;
    transition: transform 180ms ease;
}

.brand__event:hover,
.edition-switcher.is-open .brand__event {
    border-color: rgba(247, 201, 91, 0.78);
    background: linear-gradient(135deg, var(--gold), #ffe3a0);
    color: var(--navy);
    transform: translateY(-1px);
}

.edition-switcher.is-open .brand__event i {
    transform: rotate(180deg);
}

.edition-switcher {
    position: relative;
}

.edition-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: grid;
    width: min(270px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid rgba(127, 208, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(0, 63, 99, 0.96)),
        var(--navy);
    box-shadow: 0 20px 54px rgba(0, 27, 43, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.edition-switcher.is-open .edition-switcher__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.edition-switcher__menu a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 7px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.edition-switcher__menu a:hover,
.edition-switcher__menu a.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.edition-switcher__menu strong {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(247, 201, 91, 0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.edition-switcher__menu span {
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-1px);
}

.main-nav a.is-active {
    background: linear-gradient(135deg, var(--gold), #ffe3a0);
    color: var(--navy);
}

.language-switcher {
    position: relative;
    z-index: 52;
}

.language-switcher__toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(127, 208, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-switcher__toggle:hover,
.language-switcher.is-open .language-switcher__toggle {
    border-color: rgba(247, 201, 91, 0.42);
    background: rgba(247, 201, 91, 0.14);
    color: var(--gold);
}

.language-switcher__toggle i:last-child {
    font-size: 11px;
    transition: transform 180ms ease;
}

.language-switcher.is-open .language-switcher__toggle i:last-child {
    transform: rotate(180deg);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: 8px;
    border: 1px solid rgba(127, 208, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(0, 63, 99, 0.96)),
        var(--navy);
    box-shadow: 0 20px 54px rgba(0, 27, 43, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.is-open .language-switcher__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher__menu a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    min-height: 46px;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    transition: background 180ms ease, color 180ms ease;
}

.language-switcher__menu a:hover,
.language-switcher__menu a.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.language-switcher__menu strong {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(247, 201, 91, 0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.language-switcher__menu span {
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 201, 91, 0.35);
    border-radius: 8px;
    background: rgba(247, 201, 91, 0.14);
    color: var(--white);
}

.nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    background: rgba(7, 24, 39, 0.52);
}

.hero-section {
    min-height: 78vh;
    padding-top: 132px;
    padding-bottom: 52px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.98) 0%, rgba(0, 80, 121, 0.94) 48%, rgba(70, 160, 216, 0.84) 100%),
        var(--navy);
}

.hero-section::before,
.hero-section::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero-section::before {
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.hero-section::after {
    right: -10vw;
    bottom: -16vw;
    width: 54vw;
    height: 54vw;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
    align-items: center;
    gap: 72px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-meta-grid span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 18px 40px rgba(247, 201, 91, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(127, 208, 255, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 8%, rgba(127, 208, 255, 0.22), transparent 32%),
        linear-gradient(150deg, rgba(5, 53, 81, 0.82), rgba(9, 31, 48, 0.72)),
        rgba(7, 24, 39, 0.54);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px);
}

.hero-panel__signal {
    position: absolute;
    inset: 18px;
    pointer-events: none;
}

.hero-panel__signal span {
    position: absolute;
    right: -84px;
    top: -84px;
    width: 168px;
    height: 168px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    animation: signalPulse 4.8s ease-in-out infinite;
}

.hero-panel__signal span:nth-child(2) {
    animation-delay: 1s;
    transform: scale(1.36);
}

.hero-panel__signal span:nth-child(3) {
    animation-delay: 2s;
    transform: scale(1.72);
}

.hero-panel__date {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 0;
    text-align: center;
}

.hero-panel__date span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(18px, 2.1vw, 26px);
    font-weight: 800;
    line-height: 1;
}

.hero-panel__date strong {
    display: block;
    color: var(--white);
    font-size: clamp(58px, 8vw, 92px);
    line-height: 0.9;
}

.hero-countdown {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(127, 208, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(0, 80, 121, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-countdown__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.hero-countdown__head span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-countdown__head strong {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: right;
}

.hero-countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hero-countdown__grid div {
    min-width: 0;
    padding: 13px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    text-align: center;
}

.hero-countdown__grid strong {
    display: block;
    color: var(--white);
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1;
}

.hero-countdown__grid span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-live-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), #ffe3a0);
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.hero-live-button:hover {
    box-shadow: 0 18px 42px rgba(247, 201, 91, 0.24);
    transform: translateY(-2px);
}

.hero-countdown.is-live {
    border-color: rgba(247, 201, 91, 0.42);
    background:
        radial-gradient(circle at 18% 16%, rgba(247, 201, 91, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(0, 80, 121, 0.34), rgba(255, 255, 255, 0.08));
}

.hero-panel__note {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.5;
}

.hero-panel__note i {
    color: var(--gold);
}

.hero-sessions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.hero-sessions div {
    display: grid;
    gap: 4px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-sessions span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-sessions strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.3;
}

.stats-strip {
    position: relative;
    z-index: 3;
    margin-top: -44px;
    padding-bottom: 48px;
    /*background:*/
    /*    linear-gradient(180deg, rgba(5, 72, 108, 0.28) 0, rgba(248, 246, 239, 0.92) 42%, var(--paper) 100%),*/
    /*    linear-gradient(115deg, rgba(70, 160, 216, 0.18), rgba(247, 201, 91, 0.12) 48%, rgba(240, 111, 79, 0.12)),*/
    /*    var(--paper);*/
}

.stats-strip::before {
    position: absolute;
    top: -24px;
    left: 50%;
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    content: "";
    transform: translateX(-50%);
}

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

.stat-card {
    --stat-accent: var(--blue);
    --stat-accent-soft: var(--cyan);
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    align-content: center;
    column-gap: 20px;
    row-gap: 16px;
    min-height: 136px;
    overflow: hidden;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 253, 0.92)),
        var(--white);
    box-shadow: 0 24px 70px rgba(7, 24, 39, 0.12);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.stat-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 80, 121, 0.16), rgba(70, 160, 216, 0.1) 42%, transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 80, 121, 0.04));
    content: "";
    opacity: 1;
    pointer-events: none;
}

.stat-card::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), rgba(255, 255, 255, 0));
    content: "";
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 32px 82px rgba(0, 80, 121, 0.18);
    transform: translateY(-4px);
}

.stat-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 80, 121, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 253, 0.88));
    color: var(--stat-accent);
    font-size: 34px;
    box-shadow: 0 14px 34px rgba(7, 24, 39, 0.08);
}

.stat-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    color: var(--blue);
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 0.94;
}

.stat-card span {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: block;
    margin-top: 0;
    color: #5d6a7e;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
}

.section h2 {
    max-width: 840px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.title-gradient {
    display: inline-block;
    background:
        linear-gradient(105deg, var(--blue) 0%, var(--cyan) 48%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.agenda-section .title-gradient,
.closing-section .title-gradient {
    background-image: linear-gradient(105deg, var(--gold) 0%, #7fd0ff 55%, var(--white) 100%);
}

.rich-text {
    color: #344157;
    font-size: 19px;
    line-height: 1.8;
}

.rich-text p {
    margin: 0;
}

.rich-text p + p {
    margin-top: 24px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading--wide {
    max-width: 980px;
}

.section-copy {
    max-width: 520px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.focus-section,
.speakers-section,
.editions-section {
    background: var(--white);
}

.context-section {
    padding-top: 78px;
    background: var(--white);
}

.impact-section {
    padding-top: 64px;
    background: var(--paper);
}

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

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

.focus-card,
.impact-card,
.speaker-card,
.timeline-card,
.video-playlist-card,
.partner-card,
.edition-node__card,
.edition-card,
.closing-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.focus-card {
    min-height: 260px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.impact-card {
    min-height: 250px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
        var(--white);
    box-shadow: 0 18px 50px rgba(7, 24, 39, 0.08);
}

.impact-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 900;
}

.impact-card h3 {
    margin: 46px 0 12px;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.05;
}

.impact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.focus-card:hover,
.impact-card:hover {
    background: #fbfdff;
    box-shadow: 0 22px 64px rgba(7, 24, 39, 0.1);
    transform: translateY(-5px);
}

.icon-pill {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e7f2f8;
    color: var(--blue);
    font-size: 22px;
}

.focus-card h3 {
    margin: 36px 0 12px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.focus-card p,
.speaker-card p,
.edition-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.live-cta-section {
    position: relative;
    padding: 82px 0 108px;
    background: linear-gradient(180deg, var(--white) 0%, #f6fbfd 100%);
}

.live-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(34px, 6vw, 92px);
    overflow: hidden;
    margin: 0;
    padding: clamp(42px, 4.8vw, 58px) clamp(34px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 28px;
    background:
        linear-gradient(105deg, #004466 0%, #00759f 52%, #65aeb8 100%);
    color: var(--white);
    text-align: left;
    box-shadow: 0 34px 90px rgba(0, 80, 121, 0.24);
}

.live-cta::before {
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    content: "";
    pointer-events: none;
}

.live-cta__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.live-cta h2 {
    max-width: 780px;
    margin: 0;
    color: var(--white);
    font-size: clamp(28px, 4.2vw, 40px);
    font-weight: 900;
    line-height: 1.02;
}

.live-cta p {
    max-width: 690px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.56;
}

.live-cta__action {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.live-cta__action small {
    max-width: 240px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.live-cta__button {
    position: relative;
    display: inline-flex;
    min-width: 220px;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue);
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 18px 46px rgba(7, 24, 39, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.live-cta__button i {
    color: var(--gold);
    font-size: 18px;
}

.live-cta__button:hover {
    color: #003f63;
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(7, 24, 39, 0.28);
}

.live-cta__button--disabled,
.live-cta__button--disabled:hover {
    cursor: default;
    opacity: 0.82;
    transform: none;
    box-shadow: 0 18px 46px rgba(7, 24, 39, 0.16);
}

.agenda-section {
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(7, 24, 39, 0.97), rgba(9, 31, 48, 0.98)),
        var(--navy);
}

.agenda-section h2,
.closing-section h2 {
    color: var(--white);
}

.agenda-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.day-switcher {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.day-switcher button {
    min-width: 112px;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 900;
}

.day-switcher button.is-active {
    background: var(--gold);
    color: var(--navy);
}

.agenda-day {
    display: none;
}

.agenda-day.is-active {
    display: block;
}

.agenda-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.agenda-date span {
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
}

.agenda-date strong {
    font-size: 22px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
}

.timeline-time {
    display: grid;
    align-content: start;
    gap: 8px;
    padding-top: 23px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    font-weight: 900;
}

.timeline-time em {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(247, 201, 91, 0.26);
    border-radius: 999px;
    color: rgba(247, 201, 91, 0.82);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.timeline-card-wrap {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.parallel-sessions {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-auto-flow: row dense;
    align-items: stretch;
}

.timeline-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.timeline-card[data-session-card] {
    cursor: pointer;
}

.timeline-card[data-session-card]:focus-visible {
    outline: 3px solid rgba(247, 201, 91, 0.5);
    outline-offset: 3px;
}

.timeline-card--parallel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.parallel-sessions .timeline-card.is-open {
    grid-column: 1 / -1;
    min-height: 0;
    transform: none;
}

.timeline-card--parallel.is-open .session-panel__inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(380px, 1.22fr);
    align-items: start;
    gap: 22px;
}

.timeline-card--parallel.is-open .session-detail,
.timeline-card--parallel.is-open .session-points,
.timeline-card--parallel.is-open .session-speakers {
    min-width: 0;
}

.timeline-card--parallel.is-open .session-points,
.timeline-card--parallel.is-open .session-speakers {
    margin-top: 0;
}

.timeline-card--parallel.is-open .session-speakers {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.timeline-card--parallel.is-open .session-detail:only-child,
.timeline-card--parallel.is-open .session-points:only-child,
.timeline-card--parallel.is-open .session-speakers:only-child {
    grid-column: 1 / -1;
    grid-row: auto;
}

.timeline-card--parallel.is-open .session-speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-card--muted {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
}

.timeline-card--muted .session-type,
.timeline-card--muted h3,
.timeline-card--muted .session-detail,
.timeline-card--muted .session-room {
    opacity: 0.58;
}

.timeline-card:hover,
.timeline-card.is-open {
    border-color: rgba(247, 201, 91, 0.34);
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.timeline-card--special {
    border-color: rgba(247, 201, 91, 0.42);
    background:
        linear-gradient(135deg, rgba(247, 201, 91, 0.12), rgba(70, 160, 216, 0.08) 46%, rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 0 0 1px rgba(247, 201, 91, 0.1), 0 18px 48px rgba(247, 201, 91, 0.08);
}

.timeline-card--special::before {
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 201, 91, 0.95), transparent);
    opacity: 0.72;
    transform-origin: center;
    animation: specialSessionLine 3.8s ease-in-out infinite;
    content: "";
}

.timeline-card--special::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 34px rgba(247, 201, 91, 0.08);
    pointer-events: none;
    content: "";
}

.timeline-card--special > * {
    position: relative;
    z-index: 1;
}

.timeline-card--special .session-type {
    color: #ffd56d;
    text-shadow: 0 0 16px rgba(247, 201, 91, 0.34);
}

.timeline-card--main-speaker {
    border-color: rgba(247, 201, 91, 0.48);
    background:
        linear-gradient(135deg, rgba(247, 201, 91, 0.14), rgba(255, 255, 255, 0.08) 58%, rgba(70, 160, 216, 0.08));
    box-shadow: inset 0 0 0 1px rgba(247, 201, 91, 0.13), 0 20px 54px rgba(247, 201, 91, 0.09);
}

.timeline-card--main-speaker .session-type {
    color: #ffe195;
}

@keyframes specialSessionLine {
    0%,
    100% {
        opacity: 0.36;
        transform: scaleX(0.72);
    }

    50% {
        opacity: 0.9;
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-card--special::before {
        animation: none;
        opacity: 0.62;
        transform: none;
    }
}

.timeline-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.session-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.session-type {
    display: inline-flex;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.session-room {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
}

.session-room i {
    color: var(--cyan);
    font-size: 13px;
}

.session-live-link {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.session-live-link {
    border: 1px solid rgba(247, 201, 91, 0.72);
    background: var(--gold);
    color: var(--navy);
    transition: transform 180ms ease, filter 180ms ease;
}

.session-live-link:hover {
    color: var(--navy);
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.session-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 22px;
}

.session-live-link--bottom {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
    box-shadow: 0 14px 32px rgba(247, 201, 91, 0.2);
}

.session-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: transform 180ms ease, background 180ms ease;
}

.timeline-card.is-open .session-toggle {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.timeline-card h3 {
    margin: 12px 0 0;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.18;
}

.session-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.timeline-card.is-open .session-preview {
    display: none;
}

.session-preview > span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 800;
}

.session-speaker-stack {
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.session-speaker-avatar {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    overflow: hidden;
    border: 2px solid rgba(9, 31, 48, 0.98);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 208, 255, 0.28), rgba(255, 197, 74, 0.3));
    color: var(--white);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.session-speaker-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.session-speaker-avatar em {
    position: relative;
    z-index: 1;
    font-style: normal;
}

.session-speaker-avatar img + em {
    opacity: 0;
}

.session-speaker-avatar--main {
    border-color: rgba(247, 201, 91, 0.92);
    box-shadow: 0 0 0 3px rgba(247, 201, 91, 0.14);
}

.session-panel {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    transition: grid-template-rows 260ms ease, margin 260ms ease;
}

.session-panel__inner {
    min-height: 0;
    overflow: hidden;
}

.timeline-card.is-open .session-panel {
    grid-template-rows: 1fr;
    margin-top: 20px;
}

.session-detail {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.62;
}

.session-detail--static {
    margin-top: 14px;
}

.session-points,
.session-speakers {
    margin-top: 20px;
}

.session-points h4,
.session-speakers h4 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.session-points ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.session-points li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.5;
}

.session-points li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    content: "";
}

.session-speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.agenda-speaker-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.agenda-speaker-card--main {
    border-color: rgba(247, 201, 91, 0.42);
    background: rgba(247, 201, 91, 0.1);
}

.agenda-speaker-card--main .agenda-speaker-card__meta span:last-child {
    background: rgba(247, 201, 91, 0.2);
    color: #ffe195;
}

.agenda-speaker-card__photo {
    position: relative;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127, 208, 255, 0.24), rgba(247, 201, 91, 0.22));
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}

.agenda-speaker-card__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agenda-speaker-card__photo img + span {
    opacity: 0;
}

.agenda-speaker-card strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.16;
}

.agenda-speaker-card p {
    display: -webkit-box;
    margin: 6px 0 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.36;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.agenda-speaker-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.agenda-speaker-card__meta span {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 900;
}

.speakers-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
    margin-bottom: 30px;
}

.speakers-head .section-heading {
    margin-bottom: 0;
}

.speaker-count {
    display: grid;
    min-width: 178px;
    min-height: 128px;
    align-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    background: #f7fbfd;
}

.speaker-count strong {
    color: var(--blue);
    font-size: 52px;
    font-weight: 900;
    line-height: 0.9;
}

.speaker-count span {
    color: #40516a;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.speaker-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.speaker-filter button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #26364b;
    cursor: pointer;
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.speaker-filter button:hover {
    border-color: rgba(0, 80, 121, 0.34);
    background: #f5fafc;
    color: var(--blue);
}

.speaker-filter button.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.speaker-card {
    --speaker-accent: var(--blue);
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    padding: 0;
    border-color: rgba(16, 21, 29, 0.1);
    box-shadow: 0 14px 42px rgba(7, 24, 39, 0.06);
    transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.speaker-card::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 4px;
    background: var(--speaker-accent);
    content: "";
}

.speaker-card[data-speaker-group="international"] {
    --speaker-accent: var(--cyan);
}

.speaker-card[data-speaker-group="experts"] {
    --speaker-accent: var(--green);
}

.speaker-card[data-speaker-group="media"] {
    --speaker-accent: var(--coral);
}

.speaker-card--main {
    --speaker-accent: var(--gold);
}

.speaker-card:hover {
    border-color: rgba(0, 80, 121, 0.18);
    box-shadow: 0 24px 64px rgba(7, 24, 39, 0.13);
    transform: translateY(-4px);
}

.speaker-card.is-hidden {
    display: none;
}

.speaker-photo {
    position: relative;
    display: grid;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    place-items: center;
    background: linear-gradient(135deg, #e7f2f8, #f8f6ef);
}

.speaker-photo::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 46%;
    background: linear-gradient(180deg, rgba(7, 24, 39, 0), rgba(7, 24, 39, 0.56));
    content: "";
    pointer-events: none;
}

.speaker-photo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 320ms ease;
}

.speaker-card:hover .speaker-photo img {
    transform: scale(1.045);
}

.speaker-fallback {
    position: relative;
    z-index: 0;
    color: var(--speaker-accent);
    font-size: 44px;
    font-weight: 900;
}

.speaker-type {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.speaker-card--main .speaker-type {
    border-color: rgba(247, 201, 91, 0.86);
    background: var(--gold);
    color: var(--navy);
}

.speaker-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.speaker-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 13px;
}

.speaker-meta span {
    display: inline-flex;
    min-height: 26px;
    min-width: 0;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    background: #f3f7fa;
    color: #40516a;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.speaker-meta span:first-child {
    background: rgba(240, 111, 79, 0.12);
    color: #9b3f2d;
}

.speaker-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.speaker-card p {
    margin: 0;
    color: #5b687b;
    font-size: 14px;
    line-height: 1.58;
}

.speaker-card--no-photo .speaker-photo {
    background: linear-gradient(135deg, var(--speaker-accent), var(--navy));
}

.speaker-card--no-photo .speaker-fallback {
    z-index: 1;
    color: var(--white);
}

.media-section {
    background:
        linear-gradient(180deg, #eaf4f8 0%, #f7fbfd 56%, var(--white) 100%);
}

.media-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 64px;
}

.media-grid > .reveal-on-scroll {
    padding-top: 4px;
}

.video-playlist-card {
    overflow: hidden;
    border-color: rgba(70, 160, 216, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 253, 0.92)),
        var(--white);
    box-shadow: 0 30px 90px rgba(7, 24, 39, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-playlist-card:hover {
    box-shadow: 0 34px 95px rgba(0, 80, 121, 0.18);
    transform: translateY(-4px);
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 22% 18%, rgba(247, 201, 91, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(7, 24, 39, 0.98), rgba(0, 80, 121, 0.92)),
        var(--navy);
}

.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-playlist {
    display: grid;
    background: rgba(255, 255, 255, 0.92);
}

.video-playlist button {
    display: grid;
    width: 100%;
    grid-template-columns: 42px 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.video-playlist button:hover,
.video-playlist button:focus-visible,
.video-playlist button.is-active {
    background:
        linear-gradient(90deg, rgba(70, 160, 216, 0.13), rgba(247, 201, 91, 0.08)),
        #f8fcfe;
}

.video-playlist button:focus-visible {
    outline: 3px solid rgba(70, 160, 216, 0.34);
    outline-offset: -3px;
}

.video-index {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #dfeaf0;
    box-shadow: inset 0 0 0 1px rgba(7, 24, 39, 0.08);
}

.video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(247, 201, 91, 0.95);
    color: var(--navy);
    font-size: 20px;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(7, 24, 39, 0.2);
}

.video-copy {
    min-width: 0;
}

.video-copy strong {
    display: block;
    color: #243349;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.video-copy span {
    display: inline-flex;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.partners-section {
    background:
        linear-gradient(180deg, var(--white) 0%, #f3f8fb 100%);
}

.partners-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 80, 121, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 252, 0.84)),
        var(--white);
    box-shadow: 0 30px 90px rgba(7, 24, 39, 0.1);
}

.partners-showcase::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold), var(--coral));
    content: "";
}

.partners-showcase__head {
    position: relative;
    z-index: 1;
    display: block;
    padding: 30px 32px 24px;
    border-bottom: 1px solid rgba(0, 80, 121, 0.1);
}

.partners-showcase__head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.partners-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: rgba(0, 80, 121, 0.1);
}

.partner-card {
    --partner-accent: var(--cyan);
    position: relative;
    display: grid;
    min-height: 214px;
    grid-template-rows: 1fr auto;
    gap: 16px;
    overflow: hidden;
    align-items: center;
    justify-items: center;
    padding: 28px 24px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    color: inherit;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    transition: background 180ms ease, transform 180ms ease;
}

.partner-card--gold {
    --partner-accent: var(--gold);
}

.partner-card--coral {
    --partner-accent: var(--coral);
}

.partner-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(70, 160, 216, 0.1), rgba(247, 201, 91, 0.06));
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.partner-card::after {
    position: absolute;
    right: 24px;
    bottom: 20px;
    left: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--partner-accent), rgba(255, 255, 255, 0));
    content: "";
    transform: scaleX(0.18);
    transform-origin: left;
    transition: transform 220ms ease;
}

.partner-card:hover {
    z-index: 2;
    background: var(--white);
    transform: translateY(-4px);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover::after {
    transform: scaleX(1);
}

.partner-card__logo,
.partner-card strong {
    position: relative;
    z-index: 1;
}

.partner-card__logo {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: center;
}

.partner-card__logo img {
    display: block;
    max-width: min(100%, 260px);
    max-height: 88px;
    object-fit: contain;
    filter: saturate(0.96) contrast(1.02);
    transition: transform 180ms ease, filter 180ms ease;
}

.partner-card__initials {
    display: inline-flex;
    width: 78px;
    height: 78px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 80, 121, 0.12);
    border-radius: 50%;
    background: #f2f7fa;
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
}

.partner-card:hover .partner-card__logo img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.045);
}

.partner-card strong {
    max-width: 260px;
    color: #38445a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.editions-timeline {
    position: relative;
    display: grid;
    gap: 28px;
    max-width: 1040px;
    margin-top: 12px;
    padding: 10px 0 8px;
}

.editions-timeline::before,
.editions-timeline__progress {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 135px;
    width: 3px;
    border-radius: 999px;
    content: "";
}

.editions-timeline::before {
    background: linear-gradient(180deg, rgba(6, 81, 121, 0.16), rgba(32, 153, 210, 0.28));
}

.editions-timeline__progress {
    bottom: auto;
    height: 0;
    background: linear-gradient(180deg, #064b74 0%, #1586bf 58%, #65c7ed 100%);
    box-shadow: 0 0 0 5px rgba(58, 174, 225, 0.09);
    transition: height 120ms linear;
}

.edition-node {
    position: relative;
    display: grid;
    grid-template-columns: 110px 50px minmax(0, 1fr);
    align-items: center;
    min-height: 156px;
    color: inherit;
    text-decoration: none;
}

.js-enabled .edition-node.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.js-enabled .edition-node.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.edition-node:hover {
    color: inherit;
}

.edition-node__year {
    justify-self: end;
    padding-right: 18px;
    background: linear-gradient(135deg, #05486f 0%, #0f79b2 54%, #4cbfed 100%);
    background-clip: text;
    color: transparent;
    font-size: clamp(38px, 5.6vw, 66px);
    font-weight: 900;
    line-height: 0.95;
}

.edition-node__marker {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    justify-self: center;
    border: 5px solid #0b78ae;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 0 0 8px rgba(31, 142, 197, 0.12), 0 14px 28px rgba(4, 51, 78, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.edition-node__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 148px;
    padding: 24px 26px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 253, 0.88)),
        var(--white);
    box-shadow: 0 22px 56px rgba(8, 45, 68, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.edition-node__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(4, 75, 116, 0.08);
}

.edition-node__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.edition-node:hover .edition-node__media img {
    transform: scale(1.035);
}

.edition-node__card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #064b74, #40b8e7);
    content: "";
}

.edition-node__label {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(4, 75, 116, 0.08);
    color: #095075;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.edition-node h3 {
    margin: 14px 0 0;
    color: var(--navy);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 900;
    line-height: 1.08;
}

.edition-node p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.edition-node__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #07577f;
    font-weight: 900;
}

.edition-node__cta i {
    color: var(--gold);
    transition: transform 180ms ease;
}

.edition-node:hover .edition-node__card,
.edition-node.is-current-scroll .edition-node__card {
    border-color: rgba(18, 136, 195, 0.38);
    box-shadow: 0 28px 70px rgba(8, 65, 98, 0.14);
    transform: translateX(8px);
}

.edition-node:hover .edition-node__marker,
.edition-node.is-current-scroll .edition-node__marker {
    border-color: #35b6e7;
    box-shadow: 0 0 0 10px rgba(53, 182, 231, 0.15), 0 16px 30px rgba(4, 51, 78, 0.2);
    transform: scale(1.1);
}

.edition-node:hover .edition-node__cta i {
    transform: translate(2px, -2px);
}

.edition-node--active .edition-node__card {
    border-color: rgba(247, 201, 91, 0.72);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 247, 253, 0.9)),
        var(--white);
}

.edition-node--active .edition-node__label {
    background: linear-gradient(135deg, #064b74, #2aa9df);
    color: var(--white);
}

.edition-node--active .edition-node__marker {
    border-color: var(--gold);
    box-shadow: 0 0 0 9px rgba(247, 201, 91, 0.22), 0 18px 34px rgba(4, 51, 78, 0.2);
}

.closing-section {
    padding-bottom: 40px;
    background: var(--navy);
}

.closing-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
    padding: 42px;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.closing-subtitle {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list span {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.contact-list i {
    color: var(--gold);
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.js-enabled .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
    display: none;
}

.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    pointer-events: none;
}

.cookie-consent__banner {
    display: grid;
    width: min(1180px, calc(100% - 32px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin: 0 auto 18px;
    padding: 28px;
    border: 1px solid rgba(7, 24, 39, 0.12);
    border-top: 4px solid var(--coral);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 72px rgba(7, 24, 39, 0.18);
    pointer-events: auto;
}

.cookie-consent__copy {
    display: grid;
    max-width: 760px;
    gap: 10px;
}

.cookie-consent__copy h2,
.cookie-modal__intro h2 {
    margin: 0;
    color: #1d2945;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.cookie-consent__copy p,
.cookie-modal__intro p,
.cookie-category p,
.cookie-category__text {
    margin: 0;
    color: rgba(16, 21, 29, 0.66);
    font-size: 16px;
    line-height: 1.6;
}

.cookie-consent__copy a,
.cookie-consent__link {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--coral);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-consent__actions,
.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 2px solid #1d2945;
    border-radius: 8px;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cookie-button:hover {
    transform: translateY(-1px);
}

.cookie-button--primary {
    background: #1d2945;
    color: var(--white);
}

.cookie-button--primary:hover {
    border-color: var(--blue);
    background: var(--blue);
}

.cookie-button--ghost {
    background: transparent;
    color: #1d2945;
}

.cookie-button--ghost:hover {
    background: rgba(29, 41, 69, 0.08);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: auto;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 39, 0.56);
    backdrop-filter: blur(3px);
}

.cookie-modal__panel {
    position: relative;
    display: grid;
    width: min(560px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    gap: 16px;
    overflow-y: auto;
    padding: 24px;
    border: 1px solid rgba(7, 24, 39, 0.12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 66px rgba(7, 24, 39, 0.26);
}

.cookie-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 24, 39, 0.12);
    border-radius: 8px;
    background: rgba(248, 246, 239, 0.72);
    color: #1d2945;
    cursor: pointer;
}

.cookie-modal__intro {
    display: grid;
    gap: 8px;
    padding-right: 40px;
}

.cookie-modal__intro h2 {
    font-size: 18px;
}

.cookie-modal__intro p {
    font-size: 14px;
    line-height: 1.45;
}

.cookie-categories {
    display: grid;
    gap: 10px;
}

.cookie-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(115, 92, 54, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
}

.cookie-category h3,
.cookie-category__title {
    display: block;
    margin: 0 0 5px;
    color: #1d2945;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
}

.cookie-category p,
.cookie-category__text {
    font-size: 13px;
    line-height: 1.45;
}

.cookie-category strong {
    color: #2c7a35;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-category--toggle {
    cursor: pointer;
}

.cookie-category--toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #c9c9c9;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.cookie-switch::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(7, 24, 39, 0.16);
    transition: transform 180ms ease;
}

.cookie-category--toggle input:checked + .cookie-switch {
    background: var(--blue);
}

.cookie-category--toggle input:checked + .cookie-switch::before {
    transform: translateX(24px);
}

.cookie-category--toggle input:focus-visible + .cookie-switch {
    box-shadow: 0 0 0 4px rgba(70, 160, 216, 0.28);
}

body.cookie-modal-open {
    overflow: hidden;
}

body.cookie-modal-open .cookie-consent__banner {
    display: none;
}

@keyframes signalPulse {
    0%,
    100% {
        opacity: 0.26;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.72;
        transform: scale(1.16);
    }
}

@keyframes playPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 201, 91, 0.28);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(247, 201, 91, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .cookie-consent__banner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-consent__actions,
    .cookie-modal__actions {
        justify-content: flex-start;
    }

    .hero-grid,
    .split-layout,
    .media-grid,
    .closing-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 44px;
    }

    .hero-panel {
        width: min(100%, 560px);
    }

    .live-cta {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        text-align: center;
    }

    .live-cta h2,
    .live-cta p {
        margin-right: auto;
        margin-left: auto;
    }

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

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 920px) {
    .policy-header,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-header__actions,
    .site-footer__links {
        width: 100%;
        justify-content: space-between;
    }

    .site-footer__meta {
        display: grid;
        gap: 4px;
    }

    .brand__event,
    .main-nav {
        display: none;
    }

    .nav-toggle {
        position: relative;
        display: inline-flex;
    }

    .main-nav.is-open {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        z-index: 50;
        display: grid;
        gap: 8px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.58);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open a {
        justify-content: center;
        min-height: 50px;
        clip-path: none;
        background: #f0f5f8;
        color: var(--navy);
    }

    .language-switcher__menu {
        right: -54px;
    }

    .mobile-overlay.is-visible {
        display: block;
    }

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

    .partners-showcase__head {
        display: grid;
        gap: 10px;
    }

    .agenda-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .speaker-filter {
        margin-top: 0;
    }

    .speakers-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

    .speaker-count {
        width: 100%;
        min-height: 0;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-time {
        padding-top: 0;
    }

    .timeline-card--parallel.is-open .session-panel__inner {
        grid-template-columns: 1fr;
    }

    .timeline-card--parallel.is-open .session-speakers {
        grid-column: auto;
        grid-row: auto;
        margin-top: 20px;
    }

    .timeline-card--parallel.is-open .session-speakers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .session-speakers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .policy-header {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 12px;
    }

    .policy-header__brand img {
        height: 62px;
        max-width: none;
    }

    .policy-header__actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .policy-header__link {
        min-height: 46px;
        padding: 0 12px;
    }

    .policy-header__link span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .policy-hero {
        padding: 54px 0 40px;
    }

    .policy-hero__inner,
    .policy-document__inner,
    .site-footer__inner {
        width: calc(100% - 28px);
    }

    .policy-hero h1 {
        font-size: clamp(36px, 13vw, 48px);
    }

    .policy-document {
        padding-bottom: 64px;
    }

    .policy-document__inner {
        padding: 26px 20px;
    }

    .policy-rich-text {
        font-size: 16px;
        line-height: 1.68;
    }

    .policy-rich-text h1 {
        font-size: 28px;
    }

    .policy-rich-text h2 {
        font-size: 24px;
    }

    .policy-rich-text h3 {
        font-size: 21px;
    }

    .site-footer__brand img {
        height: 64px;
        max-width: none;
    }

    .site-footer__links {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .brand {
        max-width: min(240px, calc(100vw - 116px));
        padding: 0;
    }

    .brand-cluster {
        max-width: min(240px, calc(100vw - 116px));
    }

    .brand__logo {
        width: auto;
        height: 52px;
        max-width: none;
    }

    .cookie-consent__banner {
        width: 100%;
        gap: 18px;
        margin: 0;
        padding: 22px 18px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
    }

    .cookie-consent__actions,
    .cookie-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-button {
        width: 100%;
        min-height: 50px;
    }

    .cookie-modal {
        padding: 14px;
    }

    .cookie-modal__panel {
        max-height: calc(100vh - 28px);
        gap: 14px;
        padding: 22px 14px 18px;
    }

    .cookie-modal__intro {
        padding-right: 38px;
    }

    .cookie-consent__copy h2,
    .cookie-modal__intro h2 {
        font-size: 18px;
    }

    .cookie-consent__copy p,
    .cookie-modal__intro p,
    .cookie-category p,
    .cookie-category__text {
        font-size: 14px;
    }

    .cookie-category {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .cookie-category strong,
    .cookie-switch {
        justify-self: start;
    }

    .section {
        padding: 68px 0;
    }

    .section__inner {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 64px;
        padding-left: 14px;
    }

    .brand__logo {
        width: auto;
        height: 52px;
    }

    .language-switcher__toggle {
        min-height: 46px;
        padding: 0 11px;
    }

    .language-switcher__menu {
        right: 0;
        min-width: 176px;
    }

    .hero-section {
        min-height: 78vh;
        padding-top: 112px;
        padding-bottom: 46px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-actions,
    .hero-meta-grid,
    .agenda-date {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-meta-grid span {
        justify-content: center;
    }

    .hero-meta-grid {
        display: none;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .timeline-card {
        padding: 18px;
    }

    .timeline-card__head {
        align-items: flex-start;
    }

    .session-meta-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .session-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .parallel-sessions {
        grid-template-columns: 1fr;
    }

    .parallel-sessions .timeline-card.is-open {
        grid-column: auto;
    }

    .timeline-card--parallel.is-open .session-speakers-grid {
        grid-template-columns: 1fr;
    }

    .agenda-speaker-card {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .agenda-speaker-card__photo {
        width: 50px;
        height: 50px;
    }

    .hero-panel {
        padding: 20px;
    }

    .stats-grid,
    .focus-grid,
    .impact-grid,
    .speakers-grid,
    .partners-grid,
    .editions-grid {
        grid-template-columns: 1fr;
    }

    .editions-timeline {
        gap: 22px;
        padding-left: 0;
    }

    .editions-timeline::before,
    .editions-timeline__progress {
        left: 20px;
    }

    .edition-node {
        grid-template-columns: 40px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: start;
        min-height: 0;
    }

    .edition-node__year {
        grid-column: 2;
        justify-self: start;
        padding: 0 0 8px;
        font-size: 42px;
    }

    .edition-node__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-top: 10px;
    }

    .edition-node__card {
        grid-column: 2;
        padding: 20px;
    }

    .edition-node:hover .edition-node__card,
    .edition-node.is-current-scroll .edition-node__card {
        transform: translateY(-4px);
    }

    .stat-card {
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 14px;
        min-height: 132px;
        padding: 18px;
    }

    .stat-card__icon {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    .stat-card strong {
        margin: 0;
        font-size: clamp(36px, 11vw, 50px);
    }

    .stat-card span {
        font-size: 15px;
    }

    .stats-strip {
        padding-bottom: 28px;
    }

    .live-cta-section {
        padding: 56px 0 76px;
    }

    .live-cta {
        gap: 22px;
        padding: 26px 20px;
        border-radius: 20px;
    }

    .live-cta::before {
        border-radius: 18px;
    }

    .live-cta__button {
        width: 100%;
    }

    .day-switcher {
        width: 100%;
    }

    .day-switcher button {
        min-width: 0;
    }

    .speaker-photo {
        aspect-ratio: 16 / 13;
    }

    .speaker-body {
        padding: 16px;
    }

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

    .speaker-filter button:first-child {
        grid-column: 1 / -1;
    }

    .partners-showcase__head {
        padding: 24px 20px 20px;
    }

    .partners-showcase__head p {
        font-size: 15px;
    }

    .partner-card {
        min-height: 190px;
        padding: 20px;
    }

    .partner-card__logo {
        min-height: 82px;
    }

    .partner-card__logo img {
        max-height: 76px;
    }

    .video-playlist button {
        grid-template-columns: 34px 86px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .video-copy strong {
        font-size: 13px;
        line-height: 1.32;
    }

    .video-copy span {
        margin-top: 5px;
        font-size: 11px;
    }

    .closing-card {
        padding: 26px;
    }
}
