﻿/* 1. Root variables / color tokens */
:root {
  --color-navy: #0f1b6d;
  --color-navy-deep: #08145f;
  --color-red: #e84b6d;
  --color-blue: #2b7abf;
  --color-soft-blue: #eef4ff;
  --color-white: #ffffff;
  --color-text: #0f172a;
  --color-muted: #526071;
  --page-shell: 1520px;
  --page-gutter: 60px;
  --page-gutter-mobile: 20px;
  --header-height: 74px;
  --section-space: 88px;
  --section-space-mobile: 72px;
  --title-size: clamp(28px, 3vw, 54px);
  --title-line: 1.08;
  --title-spacing: -0.05em;
  --body-copy: 15px;
  --body-line: 1.55; 
}

/* 2. Reset / base styles */
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img,
video,
iframe,
svg {
  max-width: 100%;
  display: block;
}
body {
  font-family: "Manrope", sans-serif;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
}
.site-body {
  background: #f8fafc;
  color: #0f172a;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}
.site-body::selection {
  background: #e84b6d;
  color: #ffffff;
}
.site-container {
  width: min(var(--page-shell), calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}
.site-container--hero,
.site-container--contact {
  width: min(var(--page-shell), calc(100% - 32px));
}
.contact-noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
/* 3. Reusable typography classes */
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e3a8a;
  text-wrap: balance;
}
.section-subtitle {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 600px;
}
.section-description {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 600px;
}
.section-stack > * {
  margin: 0;
}
.section-stack {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 72rem;
}
/* 4. Global layout / containers */
.nav-container,
.vods-inner,
.section-header {
  display: grid;
  gap: 20px;
  width: min(100%, 72rem);
  max-width: 72rem;
}
.section-frame {
  padding: var(--section-space) 16px;
}
.brand-hero,
.speaker-showcase,
.impact-showcase,
.vods,
.mission-showcase,
.sponsor-showcase,
#contact {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.section-header.is-centered {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-title {
  font-size: var(--title-size);
  line-height: var(--title-line);
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  max-width: 72rem;
  text-wrap: balance;
}
.section-title .muted {
  color: #e84b6d;
  font-weight: 700;
}
.section-copy {
  width: 100%;
  max-width: 42rem;
  color: #526071;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}
.speaker-heading,
.each-header,
.impact-title,
.mission-heading,
.hub-heading,
.sponsor-title,
.brand-hero-title,
.section-title {
  font-family: "Manrope", sans-serif;
  font-size: var(--title-size);
  line-height: var(--title-line);
  letter-spacing: var(--title-spacing);
  font-weight: 900;
}
.speaker-intro,
.vods-subtitle,
.podcast-summary,
.register-copy,
.register-stepcopy,
.section-copy,
.sponsor-copy {
  font-family: "Manrope", sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: -0.01em;
  width: 100%;
  max-width: 42rem;
  color: #526071;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}
.vods-subtitle {
  max-width: 44rem;
  line-height: 1.75;
}
/* 5. Header / navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 70;
  background: #ffffff;
  box-shadow:
    0 1px 0 #1c6ac3,
    0 4px 0 #e84b6d;
}
.top-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(12, 20, 77, 0.08);
  pointer-events: none;
}
.nav-container {
  width: min(var(--page-shell), calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding: 16px var(--page-gutter) 14px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-container img.logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.logo-container:hover img.logo {
  opacity: 0.85;
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.menu a {
  color: #111f3e;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.menu a:hover {
  color: #e84b6d;
  transform: translateY(-1px);
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f6ff;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.icon svg {
  width: 16px;
  height: 16px;
  fill: #111f3e;
}
.icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}
.nav-register-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 10px;
  text-decoration: none;
}
.social-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vods {
  background: #030817;
  color: #f8fafc;
  padding: var(--section-space) 16px;
}
.vods-inner {
  width: min(var(--page-shell), calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  display: grid;
  gap: 22px;
}
.vods-header {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 72rem;
  justify-items: stretch;
}
.vods-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.vods-more-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.vods-more-link .material-symbols-outlined {
  font-size: 18px;
}
.vods-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}
.vods-header h2 {
  font-size: var(--title-size);
  line-height: var(--title-line);
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  color: #f8fafc;
  width: 100%;
  max-width: 72rem;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  text-wrap: balance;
}
.vods-subtitle {
  font-size: var(--body-copy);
  line-height: var(--body-line);
  letter-spacing: -0.01em;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.72);
}
.vods-header .speaker-heading {
  margin-top: 0;
  color: #f8fafc;
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}
.vods-header .speaker-intro {
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.72);
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}
.vod-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: start;
}
.hub-section {
  padding-top: var(--section-space);
  padding-bottom: calc(var(--section-space) * 0.8);
  background:
    radial-gradient(circle at top, rgba(15, 27, 109, 0.045), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
.hub-inner {
  display: grid;
  gap: 24px;
}
.hub-panels {
  display: grid;
  gap: 24px;
  align-items: start;
  min-width: 0;
}
.hub-header {
  gap: 18px;
}
.hub-heading {
  font-size: clamp(44px, 4vw, 76px);
  line-height: 0.96;
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  color: #0f1b6d;
  max-width: none;
  text-wrap: balance;
}
/* 6. Hero section */
.brand-hero {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 16px;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(232, 75, 109, 0.18),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(43, 122, 191, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 36%, #ffffff 100%);
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 27, 109, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42));
  pointer-events: none;
}
.brand-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  width: 100%;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  width: 100%;
  justify-items: center;
}
.contact-cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.contact-divider {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #a5b4d8;
}
.contact-cards {
  width: min(100%, 64rem);
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 124px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.14);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  text-align: left;
  width: 100%;
}
.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
}
.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  border-radius: 0.75rem;
  background: rgba(232, 75, 109, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4f79;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}
.contact-card:hover .contact-card-icon {
  background: #e84b6d;
  color: #ffffff;
}
.contact-card-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.contact-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-card-value {
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  transition: color 0.22s ease;
}
.contact-card:hover .contact-card-value {
  color: #ff4f79;
}
.auth-shell {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.auth-shell--register {
  padding: 20px 0;
}
.auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.auth-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  background: rgba(255, 255, 255, 0.9);
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.auth-back-button:hover {
  border-color: rgba(148, 163, 184, 0.7);
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.auth-back-icon {
  font-size: 18px;
}
.auth-kicker,
.auth-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #94a3b8;
}
.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}
.auth-intro {
  display: grid;
  gap: 14px;
  align-content: center;
}
.auth-title {
  max-width: 14ch;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #0f1b6d;
  font-weight: 900;
}
.auth-copy {
  max-width: 34rem;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  color: #475569;
}
.auth-panel {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.thankyou-shell {
  width: min(calc(100% - 32px), 672px);
  margin: 0 auto;
  min-height: calc(100vh - 32px);
  display: grid;
  place-items: center;
  padding: 24px 0;
}
.thankyou-card {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 40px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-align: center;
}
.thankyou-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}
.thankyou-icon .material-symbols-outlined {
  font-size: 34px;
}
.thankyou-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #0f172a;
  font-weight: 900;
}
.thankyou-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.thankyou-button:hover {
  border-color: rgba(203, 213, 225, 1);
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}
.brand-hero-top {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}
.brand-hero-top > div {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}
.brand-hero-title {
  max-width: 17ch;
  margin-inline: auto;
  font-size: var(--title-size);
  line-height: 1.06;
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  color: #0f1b6d;
  margin-bottom: 0;
  text-wrap: balance;
}
.brand-hero-title .title-line {
  display: block;
  white-space: nowrap;
}
.brand-hero-title .muted {
  color: #6b7280;
  font-weight: 700;
}
.brand-hero-copy {
  max-width: 56rem;
  margin-inline: auto;
  font-size: var(--body-copy);
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #526071;
  font-weight: 600;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 781px) {
  .brand-hero-copy {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
  }
}
.brand-hero-cta {
  margin-top: 10px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
/* 9. Components / cards / buttons */
.brand-primary-cta,
.brand-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.brand-primary-cta {
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 27, 109, 0.24);
}
.brand-secondary-cta {
  background: rgba(255, 255, 255, 0.88);
  color: #0f1b6d;
  border: 1px solid rgba(15, 27, 109, 0.1);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.brand-primary-cta:hover,
.brand-secondary-cta:hover {
  transform: translateY(-2px);
}
.vod-featured {
  min-width: 0;
}
.vod-sidebar-column {
  display: grid;
  gap: 12px;
  align-content: start;
}
.vod-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.vod-card:hover {
  transform: translateY(-3px);
}
.vod-card.featured {
  display: grid;
  gap: 14px;
}
.vod-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ece8df;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
}
.vod-card.featured .vod-thumb {
  min-height: 280px;
  border-radius: 18px;
}
.media-play-state-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #ef2f5f;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.media-play-state-icon .material-symbols-outlined {
  font-size: 34px;
}
.vod-thumb.is-playing .media-play-state-icon,
.apm-artwork.is-playing .media-play-state-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
}
.vod-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(135deg, rgba(194, 24, 91, 0.08), rgba(12, 20, 77, 0.14));
  pointer-events: none;
}
.vod-overlay-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  z-index: 2;
}
.vod-overlay-meta--duration-only {
  justify-content: flex-end;
}
.vod-duration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.vod-meta {
  display: grid;
  gap: 4px;
}
.vod-title {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f8fafc;
}
.vod-source {
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
}
.vod-desc {
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
}
.vod-card.featured .vod-title {
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.vod-card.featured .vod-source {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}
.vod-card.featured > .vod-meta {
  display: none;
}
.vod-sidebar {
  display: grid;
  gap: 14px;
}
.vod-sidebar .vod-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.vod-sidebar .vod-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}
.vod-sidebar .vod-title {
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.vod-sidebar .vod-source {
  font-size: 13px;
}
.vod-empty {
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
}
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(18px);
  background: rgba(15, 27, 109, 0.96);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 120;
}
.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  background: #0f172a;
}
.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.image-lightbox-prev {
  left: 20px;
}
.image-lightbox-next {
  right: 20px;
}
.image-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.26);
}
.image-lightbox-nav:disabled {
  opacity: 0.25;
  pointer-events: none;
}
.image-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
.register-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.register-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.register-panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  padding: 24px;
}
.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
}
.register-visual {
  display: grid;
  gap: 12px;
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 75, 109, 0.12),
      transparent 36%
    ),
    linear-gradient(135deg, #0f1b6d, #274edc);
  color: #ffffff;
  min-height: 100%;
}
.register-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.register-visual h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 11ch;
}
.register-copy {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 36ch;
}
.register-preview {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  margin-top: 8px;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
}
.register-form {
  display: grid;
  gap: 18px;
  padding: 6px 4px 4px;
}
.register-group {
  border: 1px solid rgba(15, 27, 109, 0.08);
  border-radius: 20px;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
}
.register-group legend {
  font-weight: 900;
  color: #0f1b6d;
  padding: 0 4px;
}
.register-group label,
.register-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #111827;
  font-size: 14px;
  line-height: 1.5;
}
.register-group input[type="checkbox"],
.register-group input[type="radio"],
.register-consent input {
  margin-top: 3px;
  accent-color: #e84b6d;
}
.register-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.register-fields input {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background: #ffffff;
  padding: 0 14px;
  color: #0f172a;
  font-size: 14px;
}
.register-fields input::placeholder {
  color: #64748b;
}
.register-consent {
  padding: 6px 2px 0;
}
.register-consent a {
  color: #e84b6d;
  font-weight: 700;
}
.register-submit {
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 32px rgba(15, 27, 109, 0.22);
}
.register-submit:hover {
  transform: translateY(-1px);
}
.register-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.08);
  color: #0f1b6d;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.register-close:hover {
  background: rgba(15, 27, 109, 0.12);
}
.hub-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.hub-tablist {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  justify-content: center;
}
.hub-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 110px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: "Manrope", sans-serif;
  color: #0f1b6d;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.hub-tab:hover {
  transform: translateY(-1px);
  color: #0f1b6d;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 27, 109, 0.14);
}
.hub-tab.is-active {
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(15, 27, 109, 0.22);
}
.hub-tab.is-active::after {
  display: none;
}
.hub-panel {
  width: 100%;
  min-width: 0;
  animation: hubPanelIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.hub-panel.is-hidden {
  display: none !important;
}
.hub-panel#hub-panel-podcast,
.hub-panel#hub-panel-gallery,
.hub-panel#hub-panel-library {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 255, 0.96)
  );
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.hub-strip {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 22px;
  padding: 6px 0 14px;
  scroll-padding-left: 8px;
  scroll-snap-type: x proximity;

  touch-action: pan-x;
  cursor: grab;
  scrollbar-gutter: stable both-edges;
  width: 100%;
  max-width: 100%;
}
.hub-strip.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hub-strip.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hub-panel-label {
  margin: 0 0 18px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}
.hub-card,
.hub-speaker-card,
.hub-gallery-card,
.hub-library-card {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.35s ease;
  will-change: transform;
}
.hub-card:hover,
.hub-speaker-card:hover,
.hub-gallery-card:hover,
.hub-library-card:hover {
  transform: scale(1.035) translateY(-8px);
  filter: saturate(1.06);
}
.hub-media {
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.hub-card:hover .hub-media,
.hub-library-card:hover .hub-media {
  transform: scale(1.04);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}
.hub-speaker-card:hover .hub-media {
  transform: scale(1.06);
  border-color: rgba(232, 75, 109, 0.95);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}
.hub-gallery-card:hover .hub-media {
  transform: scale(1.03);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}
.hub-gallery-card {
  flex: 0 0 auto;
  width: min(13rem, 68vw);
  display: grid;
  gap: 12px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 13rem;
}
.hub-gallery-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.hub-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-gallery-card.is-gallery-placeholder .hub-gallery-media img {
  object-fit: contain;
  padding: 18px;
  background: #f8fafc;
}

.hub-gallery-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #0f1b6d;
}
.hub-gallery-kicker {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.hub-folder-collection {
  display: grid;
  gap: 16px;
  width: 100%;
}
.hub-folder {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.hub-folder[open] {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 255, 0.96)
  );
}
.hub-folder-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: #0f1b6d;
  font-weight: 900;
}
.hub-folder-hint {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hub-folder-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #0f1b6d;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.hub-folder-arrow:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(15, 27, 109, 0.14);
}
.hub-folder-hint .material-symbols-outlined {
  font-size: 16px;
  line-height: 1;
  color: #e84b6d;
}
.hub-folder-summary::-webkit-details-marker {
  display: none;
}
.hub-folder-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.08);
  color: #0f1b6d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hub-folder-title {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.hub-folder-list {
  display: grid;
  gap: 10px;
  padding-left: 42px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}
.hub-folder-list li {
  position: relative;
}
.hub-folder-list li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e84b6d;
}
.hub-panel#hub-panel-podcast .hub-panel-label,
.hub-panel#hub-panel-gallery .hub-panel-label,
.hub-panel#hub-panel-library .hub-panel-label {
  margin-bottom: 18px;
}
.gallery-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.gallery-timeline-connector {
  flex: 1;
  height: 2px;
  background: rgba(15, 27, 109, 0.14);
}
.gallery-year-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(15, 27, 109, 0.15);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  color: #0f1b6d;
  letter-spacing: -0.01em;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
.gallery-year-btn:hover:not(.is-active) {
  border-color: rgba(15, 27, 109, 0.3);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}
.gallery-year-btn.is-active {
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(15, 27, 109, 0.22);
}
.gallery-year-panel {
  display: grid;
  gap: 12px;
}
.gallery-year-panel.is-hidden {
  display: none;
}
.gallery-year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery-year-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f1b6d;
}
.gallery-scroll-controls {
  display: inline-flex;
  gap: 6px;
}
.library-filters {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.library-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
}
.library-filter-group {
  display: grid;
  gap: 8px;
  min-width: min(320px, 100%);
  flex: 1 1 260px;
}
.library-filter-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 27, 109, 0.48);
}
.library-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.library-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 0 44px 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background:
    linear-gradient(135deg, rgba(15, 27, 109, 0.04), rgba(15, 27, 109, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%230f1b6d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      no-repeat right 14px center / 18px 18px;
  color: #0f1b6d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.library-filter-select:focus {
  outline: none;
  border-color: rgba(15, 27, 109, 0.28);
  box-shadow: 0 0 0 4px rgba(43, 122, 191, 0.12);
}
.library-feed {
  display: grid;
  gap: 18px;
  max-height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}
.library-feed::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.library-filter {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background: rgba(15, 27, 109, 0.04);
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.library-filter:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.library-filter.is-active {
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  border-color: transparent;
}
.library-archive-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}
.library-archive-card .hub-media {
  margin-bottom: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}
.library-archive-card h4 {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.15;
}
.library-archive-meta {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.library-archive-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.podcast-shell {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 36%
    ),
    linear-gradient(180deg, #0b1020 0%, #070b14 100%);
  color: #f8fafc;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 54px rgba(2, 6, 23, 0.28);
  overflow: hidden;
}
.podcast-heading {
  font-size: var(--title-size);
  line-height: var(--title-line);
  font-weight: 900;
  letter-spacing: var(--title-spacing);
}
.podcast-summary {
  max-width: 900px;
  font-size: var(--body-copy);
  line-height: var(--body-line);
  color: rgba(226, 232, 240, 0.84);
}
/* ── Apple Music Player ─────────────────────────── */
.apm-player {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 14px;
}
.apm-artwork {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #111;
  flex-shrink: 0;
}
.podcast-art {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #111827;
}
.apm-now-playing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding-top: 4px;
}
.apm-track-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.podcast-series {
  color: rgba(226, 232, 240, 0.56);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.apm-track-title {
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.apm-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ff375f;
  background: rgba(255, 55, 95, 0.14);
  padding: 2px 9px;
  border-radius: 999px;
  align-self: flex-start;
}
.apm-scrubber {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.apm-scrubber-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.apm-scrubber-fill {
  height: 100%;
  width: 28%;
  background: #ff375f;
  border-radius: 999px;
}
.apm-scrubber-times {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(226, 232, 240, 0.45);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.podcast-wave {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
}
.podcast-wave span {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff375f 0%, rgba(255, 55, 95, 0.28) 100%);
  animation: wavePulse 1.4s ease-in-out infinite;
  opacity: 0.85;
}
.apm-transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.apm-skip-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 252, 0.6);
  background: transparent;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.apm-skip-btn:hover {
  color: #f8fafc;
  transform: scale(1.1);
}
.apm-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  flex-shrink: 0;
}
.apm-play-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 12px 32px rgba(255, 255, 255, 0.24),
    0 2px 8px rgba(0, 0, 0, 0.3);
}
.apm-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  justify-content: center;
}
.apm-links a,
.apm-links button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(226, 232, 240, 0.55);
  transition: color 0.18s ease;
}
.apm-links a:hover,
.apm-links button:hover {
  color: #f8fafc;
}
.apm-queue {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.apm-queue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
}
.podcast-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.podcast-list::-webkit-scrollbar {
  display: none;
}
.podcast-list-item {
  width: 170px;
  flex: 0 0 170px;
  display: grid;
  gap: 8px;
  padding: 8px;
  color: #e2e8f0;
  text-align: left;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  scroll-snap-align: start;
  cursor: pointer;
}
.podcast-list-item:hover,
.podcast-list-item.is-active {
  background: rgba(255, 55, 95, 0.1);
  border-color: rgba(255, 55, 95, 0.28);
  transform: translateY(-1px);
}
.podcast-list-item.is-active .podcast-list-play {
  background: #ff375f;
  color: #fff;
}
.podcast-list-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.06);
}
.podcast-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-list-play {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.podcast-list-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.podcast-list-title {
  display: -webkit-box;
  width: 100%;
  text-align: left;
  justify-self: start;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #f1f5f9;
}
.podcast-list-duration {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.library-shell {
  display: grid;
  gap: 16px;
  padding: 0;
}
.library-subtitle {
  max-width: 44rem;
}
.library-player {
  margin-top: 2px;
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 27, 109, 0.04),
      transparent 36%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}
.library-player-top {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 160px;
}
.library-art {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #111827;
}
.library-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px 20px;
  color: #0f1b6d;
}
.library-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.library-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.library-play {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(15, 27, 109, 0.22);
  flex-shrink: 0;
}
.library-play .material-symbols-outlined {
  font-size: 26px;
}
.library-series {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e84b6d;
}
.library-episode-title {
  margin-top: 4px;
  font-size: clamp(15px, 1.2vw, 22px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f1b6d;
}
.library-duration {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  color: #0f1b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.library-summary {
  margin: 0;
  max-width: 56ch;
  color: #526071;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
  font-weight: 600;
}
.library-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.library-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background: #ffffff;
  color: #0f1b6d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.library-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 27, 109, 0.18);
}
.library-playlist {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(15, 27, 109, 0.08);
  background: rgba(248, 250, 255, 0.82);
}
.library-playlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px 0;
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.library-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 20px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.library-list-item {
  width: 210px;
  flex: 0 0 210px;
  display: grid;
  gap: 10px;
  padding: 10px;
  color: #0f1b6d;
  text-align: left;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  scroll-snap-align: start;
}
.library-list-item:hover,
.library-list-item.is-active {
  background: rgba(15, 27, 109, 0.03);
  border-color: rgba(15, 27, 109, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}
.library-list-item.is-active .library-list-play {
  background: #0f1b6d;
  color: #ffffff;
}
.library-list-item.is-empty {
  width: 100%;
  flex-basis: 100%;
  align-content: start;
  cursor: default;
  pointer-events: none;
}
.library-list-thumb {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(15, 27, 109, 0.06);
}
.library-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}
.library-list-play {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1b6d;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}
.library-list-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.library-list-title {
  display: -webkit-box;
  width: 100%;
  text-align: left;
  justify-self: start;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #0f1b6d;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.library-list-duration {
  font-size: 12px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.impact-showcase {
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(232, 75, 109, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(43, 122, 191, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 36%, #ffffff 100%);
  color: #0f1b6d;
  overflow: hidden;
  position: relative;
}
.impact-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 27, 109, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
  pointer-events: none;
}
.impact-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  width: min(1520px, calc(100% - 32px));
  max-width: none;
  margin-inline: auto;
  justify-items: start;
  text-align: left;
}
.impact-title {
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.18;
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  max-width: 56rem;
  width: 100%;
  color: #0f1b6d;
  text-wrap: balance;
}
.impact-title .muted {
  display: block;
  margin-top: 18px;
  width: 100%;
  max-width: 42rem;
  white-space: normal;
  color: rgba(82, 96, 113, 0.9);
  font-weight: 600;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  text-wrap: pretty;
}
.impact-header .speaker-heading {
  margin-top: 0;
  width: 100%;
  max-width: none;
  text-align: left;
}
.impact-header .speaker-intro {
  margin-top: 14px;
  width: 100%;
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}
.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(180px, 1fr) minmax(
      200px,
      1fr
    );
  column-gap: clamp(16px, 2.4vw, 32px);
  row-gap: 40px;
  align-items: start;
  width: 100%;
  max-width: none;
  justify-items: start;
}
.impact-stats-col {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  width: 100%;
}
.impact-stats-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.impact-reel-section {
  display: grid;
  gap: 20px;
  align-content: start;
  min-width: 0;
  width: min(100%, 340px);
  justify-self: start;
}
.impact-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 241, 246, 0.98)
  );
  border: 1px solid rgba(15, 27, 109, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.impact-feature-media {
  position: relative;
}
.impact-feature-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 38px rgba(15, 27, 109, 0.14);
}
.impact-feature-media {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 0;
  background: transparent;
  min-height: 0;
}
.impact-video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 241, 246, 0.98)
  );
  border: 1px solid rgba(15, 27, 109, 0.1);
  box-shadow: 0 28px 60px rgba(15, 27, 109, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.impact-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 68px rgba(15, 27, 109, 0.18);
}
.impact-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f1b6d;
}
.impact-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.impact-reel-viewport {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 9 / 14;
  height: auto;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  touch-action: pan-y;

  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 20px;
  background: #0f1b6d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.impact-reel-viewport::-webkit-scrollbar {
  display: none;
}
.impact-reel-slide {
  position: relative;
  min-height: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
  background: #0f1b6d;
  opacity: 0.88;
  transform: scale(0.986);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}
.impact-reel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.impact-reel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.12) 0%,
    rgba(2, 6, 23, 0.02) 30%,
    rgba(2, 6, 23, 0.52) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.impact-reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f1b6d;
}
.impact-reel-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0f1b6d;
  touch-action: auto;
}
.impact-reel-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 0%,
    rgba(2, 6, 23, 0.72) 100%
  );
  color: #ffffff;
}
.impact-reel-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  max-width: 20ch;
}
.impact-reel-copy {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  line-height: 1.6;
}
.impact-reel-swipe-hint {
  position: absolute;
  inset: auto 50% 18px auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(50%, 10px);
  opacity: 0.28;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.impact-reel-swipe-hint .material-symbols-outlined {
  font-size: 18px;
  animation: impactHintBounce 1.1s ease-in-out infinite;
}
.impact-reel-slide:hover .impact-reel-swipe-hint,
.impact-reel-slide:focus-within .impact-reel-swipe-hint {
  opacity: 1;
}
.impact-reel-slide.show-swipe-hint .impact-reel-swipe-hint {
  opacity: 1;
  transform: translate(50%, 0);
}
@keyframes impactHintBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.impact-reel-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.impact-reel-stepper {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
  pointer-events: auto;
}
.impact-reel-step {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 6px rgba(15, 27, 109, 0.08);
  opacity: 0.72;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.impact-reel-step.is-active {
  background: #ffffff;
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 0 8px rgba(15, 27, 109, 0.12);
}
.impact-reel-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.impact-reel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.impact-reel-action {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 28, 0.42);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.18);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
  pointer-events: auto;
}
.impact-reel-action:hover {
  transform: translateY(-1px);
  background: rgba(8, 12, 28, 0.56);
}
.impact-reel-action .material-symbols-outlined {
  font-size: 20px;
}
.impact-reel-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 12, 28, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}
.impact-reel-counter-sep {
  opacity: 0.72;
}
.impact-right-panel {
  display: grid;
  gap: 34px;
  align-content: start;
  min-width: 0;
  width: 100%;
}
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 781px) {
  .impact-grid {
    grid-template-columns: minmax(220px, 340px) minmax(180px, 1fr) minmax(
        200px,
        1fr
      );
    align-items: start;
    width: 100%;
  }
}
.impact-card {
  min-height: 154px;
  padding: 26px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 252, 255, 0.96)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(15, 27, 109, 0.12);
  border-color: rgba(15, 27, 109, 0.12);
}
.impact-card .impact-number {
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #0f1b6d;
}
.impact-card .impact-label {
  font-size: 10px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e84b6d;
}
.impact-copy {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.65;
  max-width: 24ch;
}
.impact-story-card {
  position: relative;
  width: 100%;
  justify-self: start;
  display: grid;
  gap: 18px;
  padding: 26px 28px 24px;
  margin-top: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 18px 38px rgba(15, 27, 109, 0.08);
  overflow: hidden;
}
.impact-text-highlight::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 191, 0.14),
    transparent 68%
  );
  opacity: var(--impact-highlight-glow, 0);
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.impact-story-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #526071;
  font-size: 14px;
  line-height: 1.82;
  letter-spacing: -0.01em;
  max-width: 100%;
}
.impact-highlight-word {
  display: inline;
  color: #526071;
  background-image: linear-gradient(
    90deg,
    rgba(232, 75, 109, 0.24),
    rgba(43, 122, 191, 0.2)
  );
  background-repeat: no-repeat;
  background-position: 0 82%;
  background-size: calc(var(--word-progress, 0) * 100%) 0.42em;
  border-radius: 0.24em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    color 0.2s ease,
    background-size 0.08s linear;
}
.impact-highlight-word.is-highlighted {
  color: #0f1b6d;
}
@keyframes impactHintPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(232, 75, 109, 0.14);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 10px rgba(232, 75, 109, 0);
  }
}
@keyframes impactHintArrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
.impact-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(250, 252, 255, 0.98)
  );
  border: 1px solid rgba(15, 27, 109, 0.1);
  border-radius: 28px;
  padding: 30px 28px 26px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 220px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.impact-card-main {
  display: grid;
  gap: 6px;
}
.impact-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 27, 109, 0.08), transparent 68%);
  z-index: -1;
}
.impact-card .impact-number {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.impact-card .impact-label {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e84b6d;
}
.impact-card .impact-copy {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
  max-width: 38ch;
}
.impact-card.reveal-on-scroll {
  transition-delay: var(--delay, 0ms);
}
.impact-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 100%;
  margin-top: 2px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 27, 109, 0.08);
  color: #475569;
}
.impact-summary p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}
.mission-showcase {
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(232, 75, 109, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(43, 122, 191, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 36%, #ffffff 100%);
  overflow: hidden;
}
.mission-heading {
  font-size: var(--title-size);
  line-height: 1.14;
  letter-spacing: var(--title-spacing);
  font-weight: 900;
  color: #0f1b6d;
  max-width: 56rem;
  text-wrap: balance;
}
.mission-copy {
  color: rgba(100, 116, 139, 0.9);
  font-weight: 700;
  margin-top: 18px;
  line-height: 1.72;
  max-width: 42rem;
  letter-spacing: -0.01em;
}
.mission-showcase .section-header {
  margin-bottom: 38px;
}
.mission-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.mission-rail::-webkit-scrollbar {
  display: none;
}
.mission-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 109, 0.08);
  border-radius: 28px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: grid;
  align-content: start;
  gap: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 27, 109, 0.14);
}
.mission-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 109, 0.1),
    rgba(232, 75, 109, 0.12)
  );
}
.mission-icon .material-symbols-outlined {
  font-size: 24px;
  color: #0f1b6d;
}
.mission-card h3 {
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #0f1b6d;
  max-width: 12ch;
}
.mission-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 30ch;
}
.mission-card:first-child {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 255, 0.94)
  );
  border-color: rgba(15, 27, 109, 0.14);
}
.mission-card:first-child .mission-icon {
  background: linear-gradient(
    135deg,
    rgba(15, 27, 109, 0.14),
    rgba(232, 75, 109, 0.16)
  );
}
.collab-showcase {
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(232, 75, 109, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #0f172a;
  overflow: hidden;
  font-family: "Inter", "Manrope", sans-serif;
}
.collab-shell {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.collab-top {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.collab-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.collab-rating .material-symbols-outlined {
  font-size: 18px;
  color: #f59e0b;
}
.collab-heading {
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #0f172a;
  max-width: 18ch;
}
.collab-copy {
  max-width: 56ch;
  color: #475569;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}
.collab-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.collab-partner-card {
  display: grid;
  gap: 14px;
}
.collab-partner-label {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-align: center;
}
.collab-partner-logo {
  min-height: 220px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
.collab-partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}
.collab-partner-logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(1) blur(0.5px) brightness(1.15);
  opacity: 0.78;
}
.collab-wordmark {
  max-width: 90%;
  text-align: center;
  font-size: clamp(28px, 2.4vw, 44px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: rgba(15, 23, 42, 0.88);
  filter: grayscale(1) blur(0.15px);
  opacity: 0.88;
}
.collab-wordmark--color {
  color: #f59e0b;
  filter: none;
}
.collab-shell .section-title {
  color: #0f172a;
}
.collab-shell .section-copy {
  color: #475569;
  max-width: 860px;
}
@keyframes wavePulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes hubPanelIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111f3e;
  border-radius: 2px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 75;
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 82vw);
  height: 100vh;
  background: #0a0a0f;
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 80;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.45);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu a {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.mobile-menu a:hover {
  color: #c2185b;
}
.mobile-close {
  align-self: flex-end;
  background: transparent;
  color: #ffffff;
  border: 1px solid #2a2a2f;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .reveal-on-scroll {
    transition: none !important;
    transform: none !important;
  }
  .impact-reel-video,
  .impact-reel-overlay,
  .speaker-filter-toggle,
  .speaker-filter-menu,
  .speaker-filter-option {
    transition: none !important;
  }
}
@media (max-width: 780px) {
  .media-play-state-icon {
    width: 50px;
    height: 50px;
  }

  .media-play-state-icon .material-symbols-outlined {
    font-size: 30px;
  }

  html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 72px;
  }
  .site-container,
  .vods-inner {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
  .nav-container,
  .vods-inner {
    width: min(calc(100% - 32px), var(--page-shell));
  }
  .nav-container {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
  .nav-container {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .nav-register-cta {
    order: 3;
    margin-left: auto;
    min-height: 40px;
    padding: 0 16px;
  }
  .nav-toggle {
    display: flex;
  }
  .menu,
  .social {
    display: none;
  }
  .vods {
    padding: 46px 10px;
  }
  .brand-hero,
  .speaker-showcase,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase,
  #contact {
    min-height: auto;
    display: block;
    scroll-snap-type: none;
  }
  .vod-layout {
    grid-template-columns: 1fr;
  }
  .vod-card.featured .vod-thumb {
    min-height: 260px;
  }
  .vod-overlay-meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .vod-card.featured .vod-title {
    font-size: 24px;
  }
  .vod-card.featured .vod-source {
    font-size: 14px;
  }
  .vods-cta-row {
    width: 100%;
  }
  .vods-more-link {
    width: 100%;
  }
  .image-lightbox {
    padding: 18px;
  }
  .image-lightbox-img {
    max-width: 96vw;
    max-height: 72vh;
    border-radius: 18px;
  }
  .image-lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .image-lightbox-nav {
    width: 38px;
    height: 38px;
  }
  .image-lightbox-prev {
    left: 8px;
  }
  .image-lightbox-next {
    right: 8px;
  }
  .image-lightbox-counter {
    bottom: 14px;
    font-size: 12px;
    padding: 4px 12px;
  }
  .register-modal {
    padding: 16px;
  }
  .register-panel {
    padding: 18px;
    border-radius: 22px;
    max-height: 92vh;
  }
  .register-grid {
    grid-template-columns: 1fr;
  }
  .register-visual {
    padding: 20px;
  }
  .register-fields {
    grid-template-columns: 1fr;
  }
  .vod-sidebar .vod-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vod-sidebar .vod-thumb {
    aspect-ratio: 16 / 9;
  }
  .vod-sidebar .vod-title {
    font-size: 18px;
  }
  .speaker-card {
    width: min(78vw, 280px);
    min-height: 340px;
  }
  .speaker-meta {
    padding: 12px 12px 14px;
    gap: 8px;
  }
  .speaker-role {
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .speaker-meta h3 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .impact-card {
    min-height: 168px;
    padding: 20px 18px 18px;
    gap: 14px;
  }
  .impact-card .impact-number {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 0.92;
  }
  .impact-card .impact-copy {
    font-size: 11px;
    line-height: 1.45;
    max-width: none;
  }
  .mission-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .mission-card {
    min-height: auto;
    padding: 22px 20px;
    gap: 12px;
  }
  .mission-card h3 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.08;
    max-width: none;
  }
  .mission-card p {
    font-size: 12px;
    line-height: 1.45;
    max-width: none;
  }
  .vod-card.featured .vod-title {
    font-size: 22px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }
  .vod-card.featured .vod-source {
    font-size: 13px;
  }
  .sponsor-card-title {
    font-size: 16px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .sponsor-copy {
    font-size: 13px;
  }
  .brand-hero {
    padding: var(--section-space-mobile) 10px;
  }
  .brand-hero-title {
    max-width: 16ch;
    font-size: clamp(34px, 12vw, 48px);
  }
  .brand-hero-copy {
    font-size: 18px;
    max-width: 92vw;
  }
  .brand-hero-shell {
    gap: 28px;
  }
  .brand-hero-cta {
    width: 100%;
  }
  .brand-primary-cta,
  .brand-secondary-cta {
    width: 100%;
  }
  .hub-controls {
    align-items: center;
  }
  .hub-tablist {
    width: auto;
    justify-content: center;
  }
  .hub-tab {
    flex: 0 1 auto;
    min-width: 100px;
    justify-content: center;
  }
  .hub-panel#hub-panel-podcast,
  .hub-panel#hub-panel-gallery,
  .hub-panel#hub-panel-library {
    padding: 18px;
    border-radius: 22px;
  }
  .hub-strip {
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
  }
  .hub-section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }
  .library-feed {
    max-height: 520px;
  }
  .library-filter-bar {
    gap: 12px;
  }
  .library-filter-group {
    min-width: 100%;
  }
  .library-archive-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
  }
  .podcast-shell {
    padding: 22px 16px;
    border-radius: 24px;
  }
  .apm-player {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .apm-artwork {
    max-width: 220px;
    margin: 0 auto;
  }
  .apm-links {
    justify-content: flex-start;
  }
  .podcast-list-item {
    width: 155px;
    flex-basis: 155px;
  }
  .podcast-list-title {
    font-size: 12px;
  }
  .library-player {
    border-radius: 24px;
  }
  .library-player-top {
    grid-template-columns: 1fr;
  }
  .library-main {
    padding: 18px 16px;
  }
  .library-main-head {
    flex-direction: column;
  }
  .library-playlist-head {
    padding-left: 16px;
    padding-right: 16px;
  }
  .library-list-item {
    width: 190px;
    flex-basis: 190px;
  }
  .library-list-title {
    font-size: 15px;
  }
  .social-footer {
    gap: 8px;
  }
  .mission-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mission-card {
    min-height: 220px;
    padding: 20px 18px;
    border-radius: 22px;
  }
  .collab-shell {
    padding: 22px 16px;
    border-radius: 26px;
  }
  .collab-matrix {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .collab-heading {
    max-width: none;
    font-size: clamp(30px, 10vw, 40px);
  }
  .collab-copy {
    font-size: 16px;
  }
  .collab-partner-logo {
    min-height: 168px;
    padding: 18px;
  }
  .impact-card {
    min-height: 168px;
    padding: 20px 18px 18px;
    border-radius: 28px;
  }
  .impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: none;
  }
  .impact-reel-section,
  .impact-stats-col,
  .impact-story-card {
    grid-column: auto;
  }
  .impact-reel-section {
    width: min(100%, 440px);
    justify-self: start;
  }
  .impact-stats-pair {
    grid-template-columns: 1fr 1fr;
  }
  .impact-feature-card {
    min-height: 0;
  }
  .impact-reel-viewport {
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: min(68vh, 560px);
  }
  .impact-reel-stepper {
    right: 10px;
    gap: 6px;
  }
  .impact-reel-step {
    width: 8px;
    height: 8px;
  }
  .impact-reel-bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .impact-reel-action {
    width: 36px;
    height: 36px;
  }
  .impact-reel-action .material-symbols-outlined {
    font-size: 18px;
  }
  .impact-reel-counter {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }
  .impact-reel-overlay {
    padding: 16px;
  }
  .impact-reel-swipe-hint {
    inset: auto 14px 14px auto;
    transform: translate(0, 10px);
    max-width: 68%;
  }
  .impact-reel-slide.show-swipe-hint .impact-reel-swipe-hint {
    transform: translate(0, 0);
  }
  .impact-reel-title {
    max-width: 16ch;
  }
  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .impact-story-card {
    padding: 20px;
    gap: 14px;
  }
  .impact-header {
    width: 100%;
    max-width: none;
    margin-bottom: 18px;
  }
  .impact-title {
    font-size: clamp(22px, 6.4vw, 30px);
  }
  .impact-title .muted {
    font-size: clamp(14px, 3.8vw, 16px);
  }
  .impact-title .muted {
    margin-top: 10px;
    text-align: left;
    text-wrap: balance;
  }
}
@media (max-width: 980px) and (min-width: 781px) {
  .impact-grid {
    grid-template-columns: minmax(240px, 340px) 1fr;
    column-gap: clamp(14px, 2vw, 28px);
  }
  .impact-story-card {
    grid-column: 1 / -1;
  }
  .impact-stats-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.sponsor-showcase {
  position: relative;
  padding: 4px 16px 0;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.88),
    rgba(255, 255, 255, 0.98)
  );
  overflow: hidden;
  isolation: isolate;
}
.sponsor-showcase > .site-container {
  width: min(var(--page-shell), 100%);
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}
.sponsor-shell {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  overflow: hidden;
}
.sponsor-header {
  max-width: 100%;
  justify-items: center;
  text-align: center;
  gap: 10px;
}
.sponsor-title {
  margin: 0;
  color: #0f1b6d;
  max-width: 18ch;
}
.sponsor-copy {
  width: 100%;
  max-width: none;
  margin: 8px 0 0;
  text-align: center;
  text-align-last: center;
  hyphens: auto;
}
.sponsor-header::after {
  content: "";
  width: min(140px, 32vw);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(
    90deg,
    rgba(15, 27, 109, 0),
    rgba(15, 27, 109, 0.18),
    rgba(15, 27, 109, 0)
  );
}
.sponsor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  min-width: 0;
  grid-auto-flow: row dense;
  margin-top: clamp(30px, 4vh, 50px);
}
.sponsor-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  min-height: 198px;
  padding: 20px 18px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  align-content: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.sponsor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 27, 109, 0.16);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
}
.sponsor-card--featured {
  min-height: 198px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 255, 0.96)
  );
  border-color: rgba(15, 27, 109, 0.12);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}
.sponsor-card-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
.sponsor-card-titlewrap {
  display: grid;
  gap: 6px;
  min-width: 0;
  justify-items: center;
  width: 100%;
}
.sponsor-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f1b6d;
}
.sponsor-logo-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
  min-height: 112px;
  padding: 12px 0;
}
.sponsor-logo-shell.is-static::before,
.sponsor-logo-shell.is-static::after {
  display: none;
}
.sponsor-logo-shell.is-carousel {
  margin-inline: -2px;
}
.sponsor-logo-shell::before,
.sponsor-logo-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 5vw, 72px);
  z-index: 2;
  pointer-events: none;
}
.sponsor-logo-shell::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.sponsor-logo-shell::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.sponsor-logo-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  width: max-content;
  will-change: transform;
}
.sponsor-logo-shell.is-carousel .sponsor-logo-track {
  animation: sponsor-card-marquee var(--sponsor-duration, 24s) linear infinite;
}
.sponsor-logo-shell.is-carousel:hover .sponsor-logo-track {
  animation-play-state: paused;
}
.sponsor-logo-shell.is-carousel[data-direction="reverse"] .sponsor-logo-track {
  animation-direction: reverse;
}
.sponsor-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sponsor-logo-track[data-count="1"] {
  width: auto;
  justify-content: center;
}
.sponsor-logo-item {
  flex: 0 0 auto;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0;
  min-width: clamp(170px, 17vw, 230px);
  min-height: 96px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: #0f1b6d;
  cursor: default;
  pointer-events: none;
}
.sponsor-card--featured .sponsor-logo-item {
  min-width: clamp(170px, 17vw, 230px);
  min-height: 96px;
}
.sponsor-logo-item img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 4.8rem;
  object-fit: contain;
  filter: none;
}
.sponsor-logo-item.is-static {
  width: auto;
  pointer-events: none;
}
.sponsor-logo-item.is-static img {
  height: 4.8rem;
}
@keyframes sponsor-card-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sponsor-card--featured .sponsor-logo-shell {
  min-height: 112px;
}
.sponsor-card--featured .sponsor-logo-shell::before,
.sponsor-card--featured .sponsor-logo-shell::after {
  width: clamp(24px, 4vw, 64px);
}
.footer-div {
  background-color: transparent;
  min-height: auto;
  color: #000000;
}
.footer-section {
  position: relative;
  z-index: 20;
  margin-top: 0;
  padding: 34px 0 24px;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.96),
    rgba(241, 245, 249, 1)
  );
  border-top: 1px solid rgba(226, 232, 240, 1);
}
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  color: #0f172a;
}
.footer-brand {
  display: grid;
  gap: 12px;
  flex: 0 0 min(24rem, 32%);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand-name {
  color: #0f1b6d;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.footer-divider {
  width: 1px;
  height: 24px;
  background: #cbd5e1;
}
.footer-brand-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}
.footer-copy {
  max-width: 20rem;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  flex: 1 1 auto;
  width: 100%;
}
.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}
.footer-column-title {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}
.footer-link-list {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-link {
  color: inherit;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #e84b6d;
}
.social-footer--sources {
  display: grid;
  grid-template-columns: repeat(8, 18px);
  gap: 12px 16px;
  justify-items: start;
}
.footer-social-icon {
  width: 18px;
  height: 18px;
  margin-left: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
}
.footer-social-icon:hover {
  box-shadow: none;
}
.social-footer--sources .footer-social-icon:last-child {
  margin-right: 0;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  color: #475569;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.footer-section .site-container {
  display: grid;
  gap: 0;
}
.barlow {
  font-family: "Barlow Semi Condensed", sans-serif;
}
.intro-text {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.each-header {
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0;
}
@media (max-width: 780px) {
  .speaker-shell {
    grid-template-columns: 1fr;
  }
  .speaker-copy-panel {
    position: relative;
    top: 0;
  }
  .speaker-filterbar {
    margin-top: 18px;
  }
  .speaker-filter-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .speaker-filter-menu {
    min-width: min(calc(100% - 48px), 320px);
  }
  .speaker-intro {
    text-align: left;
    text-align-last: left;
    letter-spacing: 0;
    max-width: none;
    line-height: 1.75;
  }
  .sponsor-header {
    gap: 8px;
  }
  .sponsor-copy {
    font-size: 14px;
    text-align: center;
    text-align-last: center;
  }
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .sponsor-card--featured {
    grid-column: span 2;
    min-height: 188px;
  }
  .sponsor-card {
    min-height: 188px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }
  .sponsor-card-title {
    font-size: 17px;
  }
  .sponsor-logo-item {
    min-width: 150px;
    min-height: 88px;
  }
  .sponsor-logo-item img,
  .sponsor-logo-item.is-static img {
    height: 4rem;
  }
  .sponsor-logo-shell::before,
  .sponsor-logo-shell::after {
    width: 26px;
  }
  .sponsor-showcase {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sponsor-showcase > .site-container {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
}
@media (max-width: 1024px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsor-card--featured {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-card--featured {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-logo-track {
    animation: none;
    transform: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sponsor-logo-shell.is-carousel {
    overflow: visible;
  }
  .sponsor-logo-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sponsor-logo-shell::before,
  .sponsor-logo-shell::after {
    display: none;
  }
}
.brand-marquee-shell {
  width: 100%;
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}
.brand-marquee-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.brand-marquee-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;

  touch-action: pan-x;
  padding-bottom: 12px;
  cursor: grab;
  min-width: 0;
  max-width: 100%;
}
.brand-marquee-viewport::-webkit-scrollbar {
  display: none;
}
.brand-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  align-items: stretch;
  min-width: 0;
}

.brand-marquee-track[data-static-cards="true"] {
  width: 100%;
  justify-content: center;
}

.brand-marquee-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.brand-marquee-card.is-hidden {
  display: none !important;
}
.brand-marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
}
.brand-marquee-video {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
  z-index: 2;
}
.brand-marquee-fallback {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffff;
}
.brand-marquee-fallback strong {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-marquee-fallback p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.brand-marquee-play {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f1b6d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}
.brand-marquee-play .material-symbols-outlined {
  font-size: 24px;
}
.brand-marquee-card--video.is-playing .brand-marquee-play {
  opacity: 0;
  transform: scale(0.86);
}
.brand-marquee-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f1b6d;
}
.brand-marquee-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s ease;
}
.brand-marquee-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #020617;
}
.brand-marquee-card--hero .brand-marquee-media img {
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}
.brand-marquee-card:hover .brand-marquee-media img {
  transform: scale(1.08);
}
.brand-marquee-card:focus-visible .brand-marquee-media img {
  transform: scale(1.08);
}
.brand-marquee-overlay {
  position: absolute;
  inset: 14px auto auto 14px;
  display: grid;
  gap: 8px;
  z-index: 2;
}
.brand-marquee-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.94);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.22);
}
.brand-marquee-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0f1b6d;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}
.brand-marquee-zoom .material-symbols-outlined {
  font-size: 18px;
}
.brand-marquee-panel {
  max-width: 380px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 14px 16px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand-marquee-panel p,
.brand-marquee-panel h3 {
  margin: 0;
}
.brand-marquee-kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e84b6d;
}
.brand-marquee-title {
  margin-top: 4px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f1b6d;
}
.brand-marquee-copy {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}
.brand-marquee-card--hero {
  width: 480px;
  height: 320px;
}
.brand-marquee-card--landscape {
  width: 480px;
  height: 320px;
}
.brand-marquee-card--portrait {
  width: 480px;
  height: 320px;
}
.brand-marquee-card--square {
  width: 480px;
  height: 320px;
}
.brand-marquee-card--hero .brand-marquee-overlay {
  inset: 16px auto auto 16px;
}
.brand-marquee-card--portrait .brand-marquee-media img,
.brand-marquee-card--square .brand-marquee-media img,
.brand-marquee-card--landscape .brand-marquee-media img {
  object-position: center center;
}
.brand-marquee-card--video .brand-marquee-media {
  background: #020617;
}
.brand-marquee-card--hero:hover .brand-marquee-zoom,
.brand-marquee-card--hero:focus-visible .brand-marquee-zoom {
  opacity: 1;
  transform: scale(1);
}
.brand-marquee-next {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(243, 246, 255, 0.96);
  border: 1px solid rgba(15, 27, 109, 0.08);
  color: #0f1b6d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  z-index: 4;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.brand-marquee-next:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.2);
  background: #ffffff;
}
.brand-marquee-next .material-symbols-outlined {
  font-size: 30px;
}
.impact-title .muted {
  display: block;
  margin-top: 10px;
  max-width: 100%;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-spacing: 0.02em;
}
.impact-title,
.mission-heading,
.impact-header .mission-heading {
  font-size: clamp(24px, 2.55vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  word-spacing: 0.03em;
}
.speaker-showcase {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 75, 109, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.5),
      transparent 30%
    ),
    inear-gradient(180deg, #ffe1ea 0%, #ffd2e0 42%, #fff7fa 100%);
  overflow: hidden;
}
.speaker-showcase::before {
  content: "";
  position: absolute;
  inset: auto -140px 40px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 75, 109, 0.2) 0%,
    rgba(232, 75, 109, 0) 72%
  );
  filter: blur(10px);
  pointer-events: none;
}
.speaker-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  max-width: 100%;
  justify-items: stretch;
}
.speaker-copy-panel {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  width: 100%;
  max-width: none;
  display: grid;
  gap: 20px;
}
.speaker-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.12);
  color: #e84b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.speaker-heading {
  margin-top: 0;
  color: #0f1b6d;
}
.speaker-intro {
  margin-top: 0;
  color: #526071;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  width: 100%;
  max-width: 44rem;
  letter-spacing: -0.01em;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  text-wrap: balance;
  hyphens: auto;
}
.section-copy,
.vods-subtitle,
.podcast-summary,
.register-stepcopy,
.sponsor-copy {
  width: 100%;
  max-width: 100rem;
  color: #526071;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: center;
  hyphens: auto;
}
.brand-hero-copy.section-copy {
  color: #526071;
  font-size: clamp(16px, 1.2vw, 18px);
}
.mission-copy {
  display: block;
  margin-top: 18px;
  width: 100%;
  max-width: 100rem;
  color: rgba(100, 116, 139, 0.9);
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
  letter-spacing: -0.01em;
  word-spacing: 0.02em;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
  text-wrap: pretty;
}
.speaker-highlight {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 109, 0.06),
    rgba(232, 75, 109, 0.06)
  );
  border: 1px solid rgba(15, 27, 109, 0.08);
}
.speaker-highlight strong {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f1b6d;
  margin-bottom: 10px;
}
.speaker-highlight span {
  font-size: 14px;
  line-height: 1.6;
  color: #42506b;
}
.speaker-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.speaker-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  border: 1px solid rgba(15, 27, 109, 0.08);
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.speaker-filterbar {
  position: relative;
  width: fit-content;
  margin-top: 22px;
}
.speaker-filter-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.14);
  background: rgba(15, 27, 109, 0.1);
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.speaker-filter-toggle:hover {
  transform: translateY(-1px);
  background: rgba(15, 27, 109, 0.15);
}
.speaker-filter-toggle.is-open {
  border-color: rgba(15, 27, 109, 0.22);
  background: rgba(15, 27, 109, 0.14);
  box-shadow: none;
}
.speaker-filter-label {
  white-space: nowrap;
}
.speaker-filter-arrow {
  font-size: 18px;
  line-height: 1;
  color: #e84b6d;
  transition: transform 0.22s ease;
}
.speaker-filter-toggle.is-open .speaker-filter-arrow {
  transform: rotate(180deg);
}
.speaker-filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 12;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.speaker-filterbar.is-open .speaker-filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.speaker-filter-option {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.speaker-filter-option:hover {
  background: rgba(232, 75, 109, 0.08);
  transform: translateX(2px);
}
.speaker-filter-option.is-active {
  background: linear-gradient(135deg, #0f1b6d 0%, #1d2e91 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 27, 109, 0.18);
}
.speaker-filter-option .material-symbols-outlined {
  font-size: 16px;
  color: currentColor;
  opacity: 0.75;
}
.speaker-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;

  touch-action: pan-x;
  cursor: grab;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.speaker-grid::-webkit-scrollbar {
  display: none;
}
.speaker-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 300px);
  min-height: 392px;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}
.speaker-media {
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: hidden;
}
.speaker-media-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.speaker-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}
.speaker-card:hover .speaker-media img,
.speaker-media-button:focus-visible img {
  transform: scale(1.04);
}
.speaker-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 16px;
}
.speaker-role {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e84b6d;
}
.speaker-meta h3 {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f1b6d;
  font-weight: 900;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.speaker-card.is-hidden {
  display: none;
}
.speaker-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed rgba(15, 27, 109, 0.16);
  color: #42506b;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.speaker-empty.is-visible {
  display: block;
}
.speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 175;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.speaker-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.speaker-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.36);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}
.speaker-modal-media {
  min-height: 100%;
  background: #0f1b6d;
}
.speaker-modal-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.speaker-modal-body {
  padding: 30px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.speaker-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f1b6d;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.18);
}
.speaker-modal-state {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.12);
  color: #e84b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.speaker-modal-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f1b6d;
  font-weight: 900;
}
.speaker-modal-role {
  font-size: 16px;
  line-height: 1.6;
  color: #42506b;
}
.speaker-modal-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #607089;
}
.speaker-modal-hint {
  font-size: 12px;
  line-height: 1.5;
  color: #8b96ab;
}
.contact-join-button {
  min-height: 62px;
  min-width: min(400px, 100%);
  padding: 0 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e84b6d 0%, #8a4dff 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(88, 52, 182, 0.28);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
.contact-join-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(88, 52, 182, 0.34);
  filter: saturate(1.05);
}
.contact-join-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}
#contact {
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(94, 114, 255, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(232, 75, 109, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 255, 255, 0.06),
      transparent 20%
    ),
    linear-gradient(180deg, #050f4a 0%, #07145e 38%, #0a1870 100%);
}
#contact .section-header {
  gap: 0;
}
#contact .section-title {
  color: #ffffff;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.02;
  max-width: 18ch;
}
#contact .section-copy {
  display: none;
}
#contact .grid {
  width: min(100%, 100%);
}
#contact .contact-cards {
  width: min(100%, 64rem);
  gap: 18px;
  margin-top: 40px;
}
#contact .contact-card {
  min-height: 124px;
  padding: 24px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
#contact .contact-card > div:first-child {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
}
#contact button,
#contact a[href*="astromedia.com.my"] {
  min-height: 92px;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 165;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-panel {
  width: min(1120px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 34px 84px rgba(2, 6, 23, 0.34);
  padding: 18px;
}
.gallery-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.gallery-panel-head h3 {
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f1b6d;
  margin: 0;
}
.gallery-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 109, 0.1);
  color: #0f1b6d;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gallery-thumb {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #eaf0ff;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 27, 109, 0.86);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media (max-width: 780px) {
  .brand-marquee-media img {
    object-fit: contain;
    object-position: center center;
    padding: 0;
  }
  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: 82vw;
    aspect-ratio: 3 / 2;
    height: auto;
  }
  .brand-marquee-track {
    gap: 14px;
  }
  .brand-marquee-panel {
    max-width: 280px;
  }
  .brand-marquee-zoom {
    opacity: 1;
    transform: none;
  }
  .brand-marquee-next {
    right: 8px;
    width: 46px;
    height: 46px;
  }
  .contact-join-button {
    min-width: 100%;
    font-size: 16px;
    border-radius: 16px;
  }
  #contact .section-title {
    font-size: clamp(32px, 7vw, 44px);
  }
  #contact .contact-cards {
    gap: 14px;
    margin-top: 28px;
  }
  #contact .contact-card {
    min-height: 112px;
    padding: 18px;
    border-radius: 20px;
  }
  #contact .contact-card > div:first-child {
    width: 3rem;
    height: 3rem;
    flex-basis: 3rem;
  }
  .gallery-panel {
    padding: 14px;
    border-radius: 22px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.register-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 16px;
  background: rgba(2, 6, 23, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.register-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.register-panel {
  position: relative;
  width: min(1280px, 100%);
  min-height: min(calc(var(--register-vh, 100vh) - 32px), 920px);
  max-height: calc(var(--register-vh, 100vh) - 32px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 75, 109, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(33, 69, 199, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 32px 90px rgba(2, 6, 23, 0.28);
  padding: 16px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
}
.register-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: #0f1b6d;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.register-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  align-items: stretch;
  min-height: 0;
  height: 100%;
  grid-row: 1 / -1;
}
.register-shell > * {
  min-height: 0;
}
.register-layout {
  display: contents;
}
.register-success {
  display: none;
  min-height: 100%;
  padding: 34px;
  text-align: center;
  place-items: center;
  gap: 18px;
  grid-row: 1 / -1;
  background:
    radial-gradient(circle at top, rgba(15, 27, 109, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.register-success-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  border: 1px solid rgba(15, 27, 109, 0.08);
  color: #0f1b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.register-success-meta .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}
.register-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 27, 109, 0.24);
  font-size: 32px;
  font-weight: 900;
}
.register-success-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #0f1b6d;
  max-width: 14ch;
}
.register-success-copy {
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}
.register-success-note {
  max-width: 34ch;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 27, 109, 0.08);
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}
.register-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.register-success-actions .register-submit,
.register-success-actions .register-close-cta {
  min-height: 46px;
  padding: 0 22px;
}
.register-close-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background: #ffffff;
  color: #0f1b6d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.register-panel.is-success .register-layout {
  display: none;
}
.register-panel.is-success .register-success {
  display: grid;
}
.register-guide {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(232, 75, 109, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
  border: 1px solid rgba(15, 27, 109, 0.08);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 40px rgba(15, 23, 42, 0.05);
}
.register-guide-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.12);
  color: #e84b6d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.register-guide-title {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #0f1b6d;
  font-weight: 900;
  max-width: 13ch;
}
.register-guide-copy {
  margin: 0;
  color: #52607a;
  font-size: 15px;
  line-height: 1.7;
  max-width: 38ch;
}
.register-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 22px;
  display: grid;
  gap: 18px;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 86% 84%,
      rgba(232, 75, 109, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, #101a6b 0%, #0b144c 100%);
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.2);
}
.register-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent 28%,
      rgba(255, 255, 255, 0.04)
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 20%
    );
  pointer-events: none;
}
.register-visual > * {
  position: relative;
  z-index: 1;
}
.register-visual-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.register-visual-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.register-visual-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.register-visual-crest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.register-visual-crest-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 75, 109, 0.95),
    rgba(255, 126, 148, 0.95)
  );
  box-shadow: 0 14px 30px rgba(232, 75, 109, 0.25);
  font-size: 16px;
}
.register-visual-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.register-visual-metric {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}
.register-visual-graphic {
  position: relative;
  min-height: 178px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255, 255, 255, 0.24),
      transparent 22%
    ),
    radial-gradient(
      circle at 74% 72%,
      rgba(232, 75, 109, 0.28),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(14, 23, 96, 0.92), rgba(23, 41, 140, 0.88));
}
.register-visual-graphic::before,
.register-visual-graphic::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0);
}
.register-visual-graphic::before {
  width: 168px;
  height: 168px;
  top: -38px;
  right: -18px;
}
.register-visual-graphic::after {
  width: 108px;
  height: 108px;
  left: -20px;
  bottom: -24px;
}
.register-visual-orbit {
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 50%,
      transparent 100%
    );
}
.register-visual-card-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.register-visual-card-note strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.register-visual-card-note span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.register-benefits {
  display: grid;
  gap: 12px;
}
.register-benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}
.register-benefit-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 109, 0.12),
    rgba(232, 75, 109, 0.12)
  );
  color: #0f1b6d;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.register-benefit strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #0f1b6d;
  font-weight: 900;
}
.register-benefit p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #5b6982;
}
.register-form {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  height: min(78vh, 820px);
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.register-form-head {
  display: grid;
  gap: 6px;
  align-content: start;
}
.register-form-head .register-stepnum {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e84b6d;
}
.register-form-head .register-steptitle {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0f1b6d;
}
.register-form-head .register-stepcopy {
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}
.register-iframe-wrap {
  min-height: 0;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 27, 109, 0.08);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 16px 32px rgba(15, 23, 42, 0.08);
}
.register-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: #ffffff;
}
.register-step {
  display: grid;
  gap: 8px;
}
.register-stephead {
  display: grid;
  gap: 4px;
}
.register-stepnum {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e84b6d;
}
.register-steptitle {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #0f1b6d;
}
.register-stepcopy {
  max-width: 40ch;
  font-size: 12px;
  line-height: 1.35;
  color: #64748b;
}
.register-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.register-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  min-height: 76px;
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(15, 27, 109, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
  color: #0f1b6d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  align-items: start;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.register-option input {
  accent-color: #0f1b6d;
  flex-shrink: 0;
  margin-top: 3px;
}
.register-option-body {
  display: grid;
  gap: 4px;
}
.register-option-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.register-option-copy {
  font-size: 11px;
  line-height: 1.25;
  color: #64748b;
  font-weight: 600;
}
.register-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 27, 109, 0.16);
}
.register-option:has(input:checked) {
  border-color: rgba(15, 27, 109, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}
.register-switches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.register-switch {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 12px 12px 11px;
  border-radius: 18px;
  border: 1px solid rgba(15, 27, 109, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
  color: #0f1b6d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  align-content: start;
}
.register-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.register-switch-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.register-switch-copy {
  font-size: 11px;
  line-height: 1.25;
  color: #64748b;
  font-weight: 600;
}
.register-switch:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 27, 109, 0.16);
}
.register-switch.is-active {
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(15, 27, 109, 0.22);
}
.register-switch.is-active .register-switch-copy {
  color: rgba(255, 255, 255, 0.76);
}
.register-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.register-field {
  display: grid;
  gap: 5px;
}
.register-field.full-width {
  grid-column: 1 / -1;
}
.register-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0f1b6d;
}
.register-input,
.register-select {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(15, 27, 109, 0.18);
  background: transparent;
  padding: 0 0 8px;
  font-size: 14px;
  color: #0f172a;
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.register-input::placeholder {
  color: #94a3b8;
}
.register-input:focus,
.register-select:focus {
  border-bottom-color: #0f1b6d;
  box-shadow: 0 8px 0 -6px rgba(15, 27, 109, 0.08);
}
.register-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 52%,
    calc(100% - 8px) 52%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}
.register-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.35;
  color: #475569;
}
.register-consent input {
  margin-top: 4px;
  accent-color: #e84b6d;
  flex-shrink: 0;
}
.register-consent a {
  color: #0f1b6d;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(15, 27, 109, 0.4);
}
.register-submit {
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f1b6d, #2245c7);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(15, 27, 109, 0.22);
}
.brand-primary-cta,
.brand-secondary-cta,
.nav-register-cta,
.register-submit,
.register-switch,
.brand-marquee-badge {
  border-radius: 999px;
}
.brand-primary-cta,
.brand-secondary-cta,
.nav-register-cta {
  min-height: 48px;
  padding: 0 20px;
}
.register-submit:hover {
  transform: translateY(-1px);
}
@media (max-width: 780px) {
  .register-modal {
    padding: 12px;
  }
  .register-panel {
    min-height: auto;
    max-height: none;
    padding: 12px;
    border-radius: 24px;
  }
  .register-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;
  }
  .register-guide,
  .register-form {
    padding: 18px;
    border-radius: 22px;
  }
  .register-visual {
    padding: 18px;
    border-radius: 18px;
  }
  .register-visual-graphic {
    min-height: 158px;
  }
  .register-form {
    height: min(72vh, 740px);
  }
  .register-iframe-wrap {
    min-height: 0;
  }
  .register-iframe-wrap iframe {
    min-height: 100%;
  }
  .register-success {
    padding: 24px 18px;
  }
  .register-option-grid,
  .register-fields {
    grid-template-columns: 1fr;
  }
  .register-switches {
    grid-template-columns: 1fr;
  }
  .register-form-head .register-stepcopy {
    max-width: none;
  }
}
.vods-header {
  gap: 18px;
  max-width: 72rem;
}
.vods-header h2 {
  max-width: 72rem;
  text-wrap: balance;
}
.vods-subtitle {
  max-width: 100rem;
  line-height: 1.75;
}
.mission-heading {
  max-width: 72rem;
  text-wrap: balance;
}
.mission-copy {
  display: block;
  margin-top: 18px;
  width: 100%;
  color: rgba(100, 116, 139, 0.9);
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
  letter-spacing: -0.01em;
  word-spacing: 0.02em;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
  text-wrap: pretty;
}
.impact-title {
  line-height: 1.08;
  max-width: 72rem;
  text-wrap: balance;
}
.impact-title .muted {
  margin-top: 16px;
  color: #526071;
  font-weight: 600;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.75;
}
.impact-header .speaker-heading {
  margin-top: 0;
}
.impact-header .speaker-intro {
  margin-top: 14px;
}
.hub-heading {
  max-width: 16ch;
  text-wrap: balance;
}
.page-screen {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.page-screen--register,
.page-screen--thankyou {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(241, 245, 249, 0.96) 40%,
    rgba(226, 232, 240, 0.98) 100%
  );
  padding: 20px 16px;
}
.page-screen.is-active {
  opacity: 1;
  transform: translateY(0);
}
.page-screen[hidden] {
  display: none !important;
}
.page-fade-in {
  animation: page-fade-in 0.5s ease both;
}
@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 780px) {
  .auth-shell {
    width: min(calc(100% - 24px), 1280px);
    min-height: calc(100vh - 24px);
    gap: 16px;
  }
  .auth-shell--register {
    padding: 10px 0;
  }
  .auth-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .auth-topbar {
    gap: 12px;
  }
  .auth-panel {
    padding: 14px;
    border-radius: 22px;
  }
  .auth-title {
    max-width: 12ch;
    font-size: clamp(30px, 10vw, 42px);
  }
  .auth-copy {
    max-width: none;
    font-size: 15px;
  }
  .thankyou-shell {
    width: min(calc(100% - 24px), 672px);
    min-height: calc(100vh - 24px);
    padding: 12px 0;
  }
  .thankyou-card {
    padding: 28px 18px;
    border-radius: 22px;
  }
  .thankyou-title {
    font-size: clamp(26px, 7vw, 34px);
  }
}
@media (max-width: 780px) {
  .hub-gallery-card {
    width: min(68vw, 13rem);
    min-height: 12.5rem;
  }
  .hub-folder-summary {
    gap: 8px;
  }
  .hub-folder-hint {
    padding: 0 6px;
    gap: 4px;
  }
  .hub-folder-arrow {
    width: 26px;
    height: 26px;
  }
  .hub-strip {
    gap: 14px;
    padding-bottom: 12px;
  }
  .footer-section {
    padding: 28px 0 20px;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }
  .social-footer--sources {
    grid-template-columns: repeat(4, 18px);
  }
  .footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
  }
}

/* 7. Section heading system */
.section-header:not(.brand-hero-top):not(.hub-header) {
  gap: 14px;
}

.section-header:not(.brand-hero-top):not(.hub-header):not(.vods-header)
  .section-subheader {
  margin: 0;
  max-width: 72rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--color-navy);
  text-wrap: balance;
}

.section-header:not(.brand-hero-top):not(.hub-header):not(.vods-header)
  .section-description {
  margin: 0;
  width: 100%;
  max-width: 100rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--color-muted);
  text-align: center;
  text-wrap: balance;
}

.section-header.is-centered:not(.brand-hero-top):not(.hub-header):not(
    .vods-header
  )
  .section-description {
  margin-inline: auto;
  text-align: center;
  text-align-last: center;
}

/* Hero section enhancements */
.brand-hero {
  isolation: isolate;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(232, 75, 109, 0.2),
      transparent 23%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(43, 122, 191, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, #fbfdff 0%, #edf4ff 38%, #ffffff 100%);
}

.brand-hero::after {
  content: "";
  position: absolute;
  width: min(74vw, 900px);
  aspect-ratio: 1;
  left: 50%;
  top: 8%;
  transform: translate3d(-50%, 0, 0);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 34% 36%,
      rgba(255, 255, 255, 0.95),
      transparent 0 18%
    ),
    radial-gradient(
      circle at 48% 48%,
      rgba(44, 84, 214, 0.18),
      transparent 0 34%
    ),
    radial-gradient(
      circle at 64% 42%,
      rgba(232, 75, 109, 0.16),
      transparent 0 30%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(12, 27, 109, 0.1),
      transparent 0 56%
    );
  filter: blur(26px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  animation: heroGlowFloat 14s ease-in-out infinite alternate;
}

.brand-hero-title {
  color: #08145f;
  letter-spacing: clamp(-0.07em, -0.055em, -0.04em);
  text-shadow: 0 16px 42px rgba(15, 27, 109, 0.08);
}

.brand-hero-title .title-line {
  opacity: 0;
  will-change: transform, opacity;
  animation: heroTitleScaleIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-hero-title .title-line:first-child {
  transform: scale(0.98);
  background: linear-gradient(100deg, #0b1765 8%, #1f4ac9 52%, #e84b6d 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-hero-title .title-line:nth-child(2) {
  transform: translateY(20px);
  animation-name: heroTitleSlideUp;
  animation-delay: 0.1s;
}

.brand-hero-title .muted {
  color: #111827;
  font-weight: 800;
}

.brand-hero-copy {
  color: #334155;
  font-weight: 650;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.brand-hero-cta {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.brand-primary-cta,
.brand-secondary-cta {
  transform: translateY(0) scale(1);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}

.brand-primary-cta:hover,
.brand-secondary-cta:hover {
  transform: translateY(-2px) scale(1.03);
}

.brand-primary-cta:hover {
  box-shadow:
    0 22px 48px rgba(15, 27, 109, 0.32),
    0 0 34px rgba(34, 69, 199, 0.2);
}

.brand-secondary-cta:hover {
  border-color: rgba(15, 27, 109, 0.18);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.14),
    0 0 30px rgba(232, 75, 109, 0.12);
}

.brand-marquee-shell {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.78s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.brand-marquee-stage {
  perspective: 1200px;
}

.brand-marquee-card {
  transform: translateY(0) scale(0.9);
  opacity: 0.6;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    box-shadow 0.45s ease;
}

.brand-marquee-card.is-center-card {
  transform: translateY(-2px) scale(1);
  opacity: 1;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.18),
    0 0 36px rgba(34, 69, 199, 0.08);
}

.brand-marquee-card:hover,
.brand-marquee-card.is-center-card:hover {
  transform: translateY(-5px) scale(1.02);
  opacity: 1;
  box-shadow:
    0 32px 78px rgba(15, 23, 42, 0.22),
    0 0 42px rgba(232, 75, 109, 0.1);
}

.brand-hero .brand-marquee-media img {
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
}

.brand-hero .brand-marquee-card:not(.is-center-card) .brand-marquee-media img {
  filter: saturate(0.9) contrast(0.96);
}

@keyframes heroTitleScaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

@keyframes heroGlowFloat {
  from {
    transform: translate3d(-52%, -10px, 0) scale(0.98);
  }
  to {
    transform: translate3d(-47%, 18px, 0) scale(1.04);
  }
}

@media (max-width: 780px) {
  .brand-hero::after {
    width: 100%;
    top: 4%;
    filter: blur(22px);
    opacity: 0.58;
  }

  .brand-marquee-card,
  .brand-marquee-card.is-center-card {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero::after,
  .brand-hero-title .title-line,
  .brand-hero-copy,
  .brand-hero-cta,
  .brand-marquee-shell {
    animation: none;
  }

  .brand-hero-title .title-line,
  .brand-hero-copy,
  .brand-hero-cta,
  .brand-marquee-shell {
    opacity: 1;
    transform: none;
  }

  .brand-primary-cta,
  .brand-secondary-cta,
  .brand-marquee-card,
  .brand-hero .brand-marquee-media img {
    transition: none;
  }
}

/* Viewport-fit section system */
@media (min-width: 981px) {
  .brand-hero,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase {
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    overflow: hidden;
    align-items: center;
  }

  .brand-hero,
  .impact-showcase,
  .mission-showcase,
  .hub-section {
    padding-block: clamp(34px, 5vh, 64px);
  }

  .vods {
    padding-block: clamp(34px, 5vh, 58px);
  }

  .sponsor-showcase {
    padding-block: clamp(12px, 2vh, 24px);
  }

  .section-header:not(.brand-hero-top):not(.hub-header) {
    margin-bottom: clamp(18px, 3vh, 34px);
  }

  .brand-hero-shell {
    gap: clamp(24px, 3.5vh, 40px);
  }

  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: 480px;
    height: 320px;
  }

  .impact-grid {
    grid-template-columns: minmax(220px, 320px) minmax(180px, 1fr) minmax(
        200px,
        1fr
      );
    column-gap: clamp(14px, 2.2vw, 30px);
    row-gap: clamp(22px, 3vh, 34px);
  }

  .impact-reel-section {
    width: min(100%, 320px);
  }

  .impact-reel-viewport {
    width: min(100%, 320px);
    max-height: min(68vh, 520px);
  }

  .impact-right-panel {
    gap: clamp(20px, 3vh, 30px);
  }

  .impact-card {
    min-height: clamp(156px, 20vh, 190px);
    padding: clamp(20px, 2.5vh, 26px);
    gap: clamp(10px, 1.8vh, 16px);
  }

  .impact-card .impact-number {
    font-size: clamp(32px, 2.8vw, 42px);
  }

  .impact-card .impact-label {
    font-size: 11px;
  }

  .impact-card .impact-copy {
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .impact-story-card {
    padding: clamp(18px, 2.5vh, 24px);
    gap: clamp(10px, 1.8vh, 16px);
  }

  .impact-story-card p {
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.68;
  }

  .mission-showcase .section-header {
    margin-bottom: clamp(20px, 3vh, 34px);
  }

  .mission-card,
  .hub-gallery-card,
  .hub-library-card,
  .sponsor-card {
    transform-origin: center;
  }

  .reveal-on-scroll {
    transform: translateY(22px) scale(0.985);
    transition:
      opacity 0.72s ease,
      transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

@media (max-height: 780px) and (min-width: 981px) {
  :root {
    --title-size: clamp(30px, 3vw, 46px);
  }

  .brand-hero,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase {
    padding-block: clamp(24px, 4vh, 42px);
  }

  .impact-grid {
    grid-template-columns: minmax(200px, 300px) minmax(160px, 1fr) minmax(
        180px,
        1fr
      );
  }

  .impact-reel-section,
  .impact-reel-viewport {
    width: min(100%, 300px);
  }

  .impact-reel-viewport {
    max-height: min(56vh, 460px);
  }

  .impact-card {
    min-height: 144px;
    padding: 18px;
    gap: 10px;
  }

  .impact-card .impact-number {
    font-size: clamp(28px, 2.4vw, 36px);
  }

  .impact-story-card {
    padding: 18px;
  }

  .impact-story-card p {
    font-size: 12px;
    line-height: 1.58;
  }

  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: min(44vw, 420px);
    height: 280px;
  }
}

@media (max-width: 980px) {
  .brand-hero,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase {
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
}

/* Impact redesign */
.impact-showcase {
  background: #ffffff;
  color: #0f1b6d;
}

.impact-showcase::before {
  display: none;
}

.impact-showcase > .site-container {
  max-width: 1100px;
}

.impact-header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 34px;
}

.impact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.impact-stats-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 22px;
  background: #ffffff;
}

.impact-stats-shell .impact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 194px;
  padding: 26px 24px 22px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transform: translateY(18px);
  opacity: 0;
  animation: impactStatFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition:
    background 0.22s ease,
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-stats-shell .impact-card:nth-child(2) {
  animation-delay: 90ms;
}

.impact-stats-shell .impact-card:nth-child(3) {
  animation-delay: 180ms;
}

.impact-stats-shell .impact-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.impact-stats-shell .impact-card + .impact-card {
  border-left: 1px solid #ddd;
}

.impact-stats-shell .impact-card:hover {
  background: #fafafa;
  box-shadow: none;
  transform: translateY(0);
}

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

.impact-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e84b6d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s ease;
}

.impact-stats-shell .impact-card.is-active .impact-card-bar {
  transform: scaleX(1);
}

.impact-stats-shell .impact-number {
  display: block;
  color: #0f1b6d;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: var(--title-spacing);
  transition: color 0.24s ease;
}

.impact-stats-shell .impact-card.is-active .impact-number {
  color: #e84b6d;
}

.impact-stats-shell .impact-label {
  display: block;
  color: #e84b6d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-stats-shell .impact-copy {
  display: block;
  max-width: 28ch;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 13px;
  line-height: 1.62;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.34s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}

.impact-stats-shell .impact-card.is-active .impact-copy {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.impact-hint {
  display: block;
  margin-top: auto;
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.impact-stats-shell .impact-card.is-active .impact-hint {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.impact-bottom-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.impact-bottom-grid .impact-reel-section {
  width: 320px;
  min-height: 420px;
  align-content: stretch;
}

.impact-bottom-grid .impact-feature-card {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(43, 122, 191, 0.42),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(232, 75, 109, 0.28),
      transparent 36%
    ),
    #0f1b6d;
  box-shadow: none;
}

.impact-bottom-grid .impact-feature-card:hover {
  transform: none;
  box-shadow: none;
}

.impact-bottom-grid .impact-feature-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
}

.impact-bottom-grid .impact-reel-viewport {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.impact-bottom-grid .impact-reel-slide {
  min-height: 100%;
  opacity: 1;
  transform: none;
}

.impact-bottom-grid .impact-reel-slide::after {
  background:
    linear-gradient(180deg, rgba(15, 27, 109, 0.72), rgba(15, 27, 109, 0.42)),
    radial-gradient(
      circle at 30% 20%,
      rgba(43, 122, 191, 0.32),
      transparent 38%
    );
}

.impact-bottom-grid .impact-reel-video {
  opacity: 0.34;
}

.impact-bottom-grid .impact-reel-ui {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 22px;
}

.impact-bottom-grid .impact-reel-bottom {
  position: relative;
  z-index: 5;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.impact-bottom-grid .impact-reel-action {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.impact-bottom-grid .impact-reel-action:hover {
  background: rgba(255, 255, 255, 0.26);
}

.impact-reel-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.impact-bottom-grid .impact-reel-counter {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.impact-bottom-grid .impact-story-card {
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.impact-bottom-grid .impact-story-card p {
  max-width: 66ch;
  color: #555;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.82;
}

.impact-bottom-grid .impact-story-card strong {
  color: #0f1b6d;
  font-weight: 800;
}

@media (max-width: 900px) {
  .impact-stats-shell {
    grid-template-columns: 1fr;
  }

  .impact-stats-shell .impact-card + .impact-card {
    border-left: 0;
    border-top: 1px solid #ddd;
  }

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

  .impact-bottom-grid .impact-reel-section {
    width: min(100%, 420px);
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .impact-layout {
    gap: 24px;
  }

  .impact-stats-shell .impact-card {
    min-height: 176px;
    padding: 22px 18px 18px;
  }

  .impact-bottom-grid {
    gap: 24px;
  }

  .impact-bottom-grid .impact-reel-section,
  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media {
    min-height: 440px;
  }
}

/* Match jiwa-sme-section.html impact composition */
.impact-showcase > .site-container,
.impact-header,
.impact-layout {
  max-width: 1100px;
}

.impact-header {
  margin-bottom: 36px;
}

.impact-layout {
  gap: 32px;
}

.impact-stats-shell {
  border: 0.5px solid #ddd;
  border-radius: 14px;
  margin-bottom: 0;
}

.impact-stats-shell .impact-card {
  min-height: 0;
  padding: 28px 24px 20px;
  gap: 0;
}

.impact-stats-shell .impact-card + .impact-card {
  border-left: 0.5px solid #ddd;
}

.impact-card-bar {
  height: 3px;
  background: #0f1b6d;
}

.impact-stats-shell .impact-number {
  margin-bottom: 5px;
  font-size: 42px;
}

.impact-stats-shell .impact-label {
  margin-bottom: 14px;
  font-size: 9.5px;
  letter-spacing: 0.12em;
}

.impact-stats-shell .impact-copy {
  font-size: 13px;
  line-height: 1.55;
}

.impact-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
}

.impact-bottom-grid {
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: stretch;
}

.impact-bottom-grid .impact-reel-section,
.impact-bottom-grid .impact-feature-card,
.impact-bottom-grid .impact-feature-media {
  min-height: 300px;
}

.impact-bottom-grid .impact-feature-card,
.impact-bottom-grid .impact-feature-media,
.impact-bottom-grid .impact-reel-viewport {
  border-radius: 14px;
}

.impact-bottom-grid .impact-feature-card {
  background: #0f1b6d;
}

.impact-bottom-grid .impact-reel-slide::after {
  background: radial-gradient(ellipse at 30% 60%, #1e3f70 0%, #0f1b6d 70%);
  opacity: 0.92;
}

.impact-bottom-grid .impact-reel-video {
  opacity: 0.28;
}

.impact-bottom-grid .impact-reel-ui {
  grid-template-rows: 1fr auto;
  padding: 24px;
}

.impact-bottom-grid .impact-reel-bottom {
  justify-content: flex-start;
  gap: 12px;
}

.impact-bottom-grid .impact-reel-action {
  width: 42px;
  height: 42px;
}

.impact-reel-meta {
  justify-items: start;
}

.impact-bottom-grid .impact-reel-counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.impact-bottom-grid .impact-story-card {
  align-self: stretch;
  justify-content: center;
  gap: 16px;
  padding: 0;
}

.impact-bottom-grid .impact-story-card p {
  max-width: none;
  font-size: 14px;
  line-height: 1.75;
}

.impact-bottom-grid .impact-story-card strong {
  font-weight: 600;
}

/* Final Impact layout fix: bypass full-screen section rules */
.impact-showcase {
  display: block;
  min-height: auto;
  max-height: none;
  overflow: visible;
  align-items: initial;
  padding: var(--section-space) 16px;
}

.impact-showcase > .site-container {
  width: min(100%, 1100px);
  margin-inline: auto;
}

.impact-bottom-grid .impact-reel-section,
.impact-bottom-grid .impact-feature-card,
.impact-bottom-grid .impact-feature-media,
.impact-bottom-grid .impact-reel-viewport {
  height: auto;
  min-height: 0;
  max-height: none;
}

/* Stretch chain: section → card → media → viewport all fill the grid area,
   so the reel matches the right column's height instead of a fixed px. */
.impact-bottom-grid .impact-reel-section,
.impact-bottom-grid .impact-feature-card,
.impact-bottom-grid .impact-feature-media {
  grid-template-rows: minmax(0, 1fr);
  align-content: stretch;
}

.impact-bottom-grid .impact-reel-viewport {
  aspect-ratio: auto;
}

.impact-bottom-grid .impact-reel-section {
  width: 320px;
}

.impact-bottom-grid .impact-reel-slide {
  height: 100%;
  min-height: 100%;
}

.impact-bottom-grid .impact-reel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.impact-bottom-grid .impact-reel-stepper {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 981px) {
  .impact-showcase {
    min-height: auto;
    max-height: none;
    overflow: visible;
    align-items: initial;
    padding-block: clamp(34px, 5vh, 64px);
  }
}

/* Impact: video left, stats and text right */
@media (min-width: 901px) {
  .impact-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 28px;
    row-gap: 20px;
    align-items: stretch;
  }

  .impact-layout > .impact-stats-shell {
    grid-column: 2;
    grid-row: 1;
  }

  .impact-layout > .impact-bottom-grid {
    display: contents;
  }

  .impact-bottom-grid .impact-reel-section {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    width: 320px;
  }

  .impact-bottom-grid .impact-story-card {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-content: start;
  }

  .impact-bottom-grid .impact-reel-section,
  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .impact-bottom-grid .impact-reel-slide {
    height: 100%;
    min-height: 100%;
  }

  .impact-stats-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* VOD editorial layout refinements */
.vods-inner {
  gap: 28px;
}

.vod-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.vod-card.featured {
  gap: 18px;
}

.vod-card.featured .vod-thumb {
  min-height: 0;
  border-radius: 18px;
}

.vod-card.featured .vod-thumb::after {
  background: linear-gradient(
    135deg,
    rgba(194, 24, 91, 0.04),
    rgba(12, 20, 77, 0.08)
  );
}

.vod-card.featured > .vod-meta {
  display: none;
  gap: 8px;
  padding: 0 2px;
}

.vod-card.featured .vod-title {
  max-width: 48rem;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.vod-card.featured .vod-source {
  color: rgba(226, 232, 240, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vod-card.featured .vod-desc {
  max-width: 52rem;
  color: rgba(226, 232, 240, 0.76);
  font-size: 14px;
  line-height: 1.62;
}

.vod-card.featured .vod-duration {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.vod-sidebar-column {
  gap: 16px;
}

.vod-sidebar {
  display: grid;
  gap: 10px;
}

.vod-sidebar .vod-card {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transform: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.vod-sidebar .vod-card:hover,
.vod-sidebar .vod-card.is-active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.vod-sidebar .vod-card.is-active {
  box-shadow:
    inset 3px 0 0 #e84b6d,
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.vod-sidebar .vod-thumb {
  width: 144px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.vod-sidebar .vod-thumb::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.vod-sidebar .vod-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  min-width: auto;
  padding: 4px 7px;
  font-size: 11px;
}

.vod-sidebar .vod-meta {
  align-self: center;
  min-width: 0;
  gap: 7px;
}

.vod-sidebar .vod-title {
  max-width: 100%;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-sidebar .vod-source {
  color: rgba(226, 232, 240, 0.6);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .vod-layout {
    grid-template-columns: 1fr;
  }

  .vod-sidebar .vod-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .vod-sidebar .vod-thumb {
    width: 132px;
  }
}

@media (max-width: 560px) {
  .vod-sidebar .vod-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 82px;
    padding: 10px;
  }

  .vod-sidebar .vod-thumb {
    flex: 0 0 112px;
    width: 112px;
    min-width: 112px;
    height: 63px;
    min-height: 63px;
    aspect-ratio: 16 / 9;
    align-self: center;
  }

  .vod-sidebar .vod-meta {
    flex: 1 1 auto;
    min-width: 0;
    align-self: center;
    display: grid;
    gap: 4px;
    justify-content: start;
  }

  .vod-sidebar .vod-title,
  .vod-sidebar .vod-source {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .vod-sidebar .vod-title {
    font-size: 14px;
    line-height: 1.25;
  }

  .vod-sidebar .vod-source {
    font-size: 11px;
    line-height: 1.2;
  }
}

/* Mission journey redesign */
.mission-showcase {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(232, 75, 109, 0.11),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(43, 122, 191, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #fbfcff 0%, #eef4ff 42%, #ffffff 100%);
}

.mission-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(43, 122, 191, 0.12),
    transparent 64%
  );
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.mission-rail {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
  padding-top: 34px;
}

.mission-rail::before {
  content: "";
  position: absolute;
  left: calc(12.5% + 23px);
  right: calc(12.5% + 23px);
  top: 56px;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(15, 27, 109, 0.22) 50%,
    transparent 0
  );
  background-size: 12px 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: missionLineDraw 0.9s ease 0.2s forwards;
}

.mission-card {
  position: relative;
  min-height: 330px;
  padding: 42px 24px 26px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 251, 255, 0.9)
    ),
    radial-gradient(
      circle at top right,
      rgba(43, 122, 191, 0.08),
      transparent 34%
    );
  border: 1px solid rgba(15, 27, 109, 0.09);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  overflow: visible;
}

.mission-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.mission-step-badge {
  position: absolute;
  top: -34px;
  left: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 27, 109, 0.14);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  color: #0f1b6d;
  font-size: 15px;
  font-weight: 900;
}

.mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(15, 27, 109, 0.08), rgba(43, 122, 191, 0.14)),
    #f8fbff;
  box-shadow: 0 14px 30px rgba(43, 122, 191, 0.1);
}

.mission-card h3 {
  max-width: 13ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mission-card p {
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mission-card--impact {
  transform: scale(1.025);
  border-color: rgba(232, 75, 109, 0.34);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(232, 75, 109, 0.14),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 247, 250, 0.94)
    );
  box-shadow:
    0 24px 62px rgba(232, 75, 109, 0.16),
    0 16px 42px rgba(15, 23, 42, 0.08);
}

.mission-card--impact:hover {
  transform: translateY(-6px) scale(1.04);
}

.mission-card--impact .mission-step-badge {
  color: #ffffff;
  border-color: rgba(232, 75, 109, 0.4);
  background: linear-gradient(135deg, #e84b6d, #0f1b6d);
  box-shadow: 0 16px 34px rgba(232, 75, 109, 0.22);
}

.mission-card--impact .mission-icon {
  background:
    linear-gradient(135deg, rgba(232, 75, 109, 0.18), rgba(15, 27, 109, 0.12)),
    #ffffff;
}

.mission-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.12);
  color: #e84b6d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-stats {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.mission-stats span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.06);
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 900;
}

.mission-stats span:last-child {
  color: #e84b6d;
}

@keyframes missionLineDraw {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1024px) {
  .mission-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 52px;
  }

  .mission-rail::before {
    display: none;
  }

  .mission-card--impact {
    transform: none;
  }
}

@media (max-width: 640px) {
  .mission-rail {
    grid-template-columns: 1fr;
  }
}

/* Mission journey visual tune */
.mission-rail {
  gap: 14px;
  padding-top: 38px;
}

.mission-rail::before {
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  top: 14px;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(74, 132, 255, 0.52) 50%,
    transparent 0
  );
  background-size: 6px 2px;
}

.mission-rail::after {
  content: "";
  position: absolute;
  left: calc(25% - 10px);
  right: calc(25% - 10px);
  top: 9px;
  height: 12px;
  pointer-events: none;
  background:
    radial-gradient(circle at 33.33% 50%, #4a84ff 0 3px, transparent 4px),
    radial-gradient(circle at 66.66% 50%, #4a84ff 0 3px, transparent 4px);
  opacity: 0.9;
}

.mission-card {
  min-height: 310px;
  padding: 54px 28px 28px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(74, 132, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 252, 255, 0.92)
    );
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mission-step-badge {
  top: -31px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #63a4ff, #4668ff);
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 8px 22px rgba(74, 132, 255, 0.34),
    0 0 0 4px rgba(74, 132, 255, 0.1);
}

.mission-icon {
  width: 68px;
  height: 68px;
  margin-inline: auto;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 36% 28%,
      rgba(255, 255, 255, 0.85),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(74, 132, 255, 0.14), rgba(111, 83, 255, 0.12));
}

.mission-icon .material-symbols-outlined {
  font-size: 31px;
  color: #2667ff;
}

.mission-card h3 {
  max-width: 14ch;
  margin-top: 10px;
  color: #07164f;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.18;
}

.mission-accent {
  width: 36px;
  height: 2px;
  margin-top: -4px;
  border-radius: 999px;
  background: #2667ff;
}

.mission-card p {
  margin-top: 16px;
  color: #4b5568;
  font-size: 12px;
  line-height: 1.72;
  -webkit-line-clamp: 4;
}

.mission-card--impact {
  border-color: rgba(232, 75, 109, 0.32);
  background:
    radial-gradient(
      circle at 52% 20%,
      rgba(232, 75, 109, 0.16),
      transparent 29%
    ),
    linear-gradient(
      180deg,
      rgba(255, 253, 254, 0.98),
      rgba(255, 245, 249, 0.94)
    );
  box-shadow:
    0 28px 68px rgba(232, 75, 109, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mission-card--impact .mission-ribbon {
  top: 0;
  right: 16px;
  width: 38px;
  height: 58px;
  min-height: 0;
  padding: 0;
  border-radius: 0 0 4px 4px;
  justify-content: center;
  background: linear-gradient(180deg, #e84b6d, #ff6f92);
  color: transparent;
  box-shadow: 0 14px 28px rgba(232, 75, 109, 0.28);
}

.mission-card--impact .mission-ribbon::before {
  content: "trending_up";
  font-family: "Material Symbols Outlined";
  color: #ffffff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.mission-card--impact .mission-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 12px solid #ff6f92;
}

.mission-card--impact .mission-step-badge {
  background: linear-gradient(135deg, #ff6f92, #e7275d);
  box-shadow:
    0 8px 22px rgba(232, 75, 109, 0.34),
    0 0 0 4px rgba(232, 75, 109, 0.12);
}

.mission-card--impact .mission-icon {
  background:
    radial-gradient(
      circle at 36% 28%,
      rgba(255, 255, 255, 0.9),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(232, 75, 109, 0.17), rgba(255, 214, 226, 0.5));
}

.mission-card--impact .mission-icon .material-symbols-outlined {
  color: #e84b6d;
}

.mission-card--impact .mission-accent {
  background: #e84b6d;
}

.mission-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mission-stats span {
  display: block;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #4b5568;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.mission-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #e84b6d;
  font-size: 15px;
  font-weight: 900;
}

.mission-card--impact p {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(232, 75, 109, 0.08);
  color: #334155;
  -webkit-line-clamp: 3;
}

@media (max-width: 1024px) {
  .mission-rail::after {
    display: none;
  }

  .mission-card {
    min-height: 290px;
  }
}

/* Sponsor alignment: match hero section spacing and centering */
.sponsor-showcase {
  display: flex;
  align-items: center;
  padding: var(--section-space) 16px;
}

.sponsor-showcase > .site-container {
  width: min(var(--page-shell), calc(100% - 32px));
  max-width: none;
  margin-inline: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.sponsor-header {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.sponsor-header .section-stack {
  justify-items: center;
  max-width: 72rem;
  margin-inline: auto;
  text-align: center;
}

.sponsor-title {
  margin-inline: auto;
  text-align: center;
}

.sponsor-copy {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  text-align-last: center;
  text-wrap: balance;
}

.sponsor-header::after {
  margin-inline: auto;
}

.sponsor-grid {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  justify-items: stretch;
}

.sponsor-grid--compact {
  max-width: 44rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sponsor-card,
.sponsor-card--featured {
  min-height: 198px;
  justify-items: center;
  text-align: center;
}

.sponsor-logo-shell,
.sponsor-logo-track,
.sponsor-logo-group,
.sponsor-logo-item {
  justify-content: center;
  justify-items: center;
}

@media (min-width: 981px) {
  .sponsor-showcase {
    padding-block: clamp(34px, 5vh, 64px);
  }
}

@media (max-width: 1024px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .sponsor-showcase {
    padding: var(--section-space-mobile) 10px;
  }

  .sponsor-showcase > .site-container {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
}

@media (max-width: 640px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

/* Impact polish: align with mission spacing and responsive column height */
.impact-showcase {
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(232, 75, 109, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 12%,
      rgba(43, 122, 191, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 36%, #ffffff 100%);
}

.impact-header {
  margin-bottom: 38px;
}

.vods-header,
.mission-showcase .section-header {
  width: 100%;
  max-width: 72rem;
  margin: 0 0 38px;
  text-wrap: balance;
}

.vods-header .section-stack {
  gap: 18px;
}

.vods-header .vods-subtitle {
  margin-top: 0;
}

.vods-header .mission-heading {
  color: #f8fafc;
  text-align: left;
}

.vods-header .mission-copy {
  color: rgba(226, 232, 240, 0.72);
  text-align: justify;
  text-align-last: left;
}

@media (min-width: 981px) {
  .vods {
    padding-top: clamp(52px, 7vh, 84px);
  }
}

.impact-showcase > .site-container {
  width: min(var(--page-shell), calc(100% - 32px));
  max-width: none;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

@media (max-width: 780px) {
  .impact-showcase > .site-container {
    padding-left: var(--page-gutter-mobile);
    padding-right: var(--page-gutter-mobile);
  }
}

.impact-header {
  max-width: 72rem;
  margin-left: 0;
  margin-right: 0;
}

.impact-header.is-centered,
.vods-header.is-centered {
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
  text-align: center;
}

.impact-header.is-centered .section-stack,
.vods-header.is-centered .section-stack {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.impact-header.is-centered .mission-heading,
.vods-header.is-centered .mission-heading,
.impact-header.is-centered .mission-copy,
.vods-header.is-centered .mission-copy {
  margin-inline: auto;
  text-align: center;
  text-align-last: center;
}

.impact-heading-accent {
  color: #e84b6d;
}

.mission-heading-accent {
  color: #e84b6d;
}

.hero-heading-accent {
  color: #e84b6d;
}

.impact-layout {
  width: 100%;
  max-width: none;
}

.impact-bottom-grid .impact-story-card {
  gap: 16px;
}

.impact-stats-shell {
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.impact-stats-shell .impact-card {
  min-height: 188px;
  border: 1px solid rgba(15, 27, 109, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 251, 255, 0.9)
    ),
    radial-gradient(
      circle at top right,
      rgba(43, 122, 191, 0.08),
      transparent 34%
    );
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.impact-stats-shell .impact-card + .impact-card {
  border-left: 1px solid rgba(15, 27, 109, 0.09);
}

.impact-stats-shell .impact-card:hover {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 251, 255, 0.94)
    ),
    radial-gradient(
      circle at top right,
      rgba(232, 75, 109, 0.1),
      transparent 34%
    );
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.impact-reel-swipe-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}

.impact-video-badge,
.impact-video-title {
  display: none !important;
}

.impact-bottom-grid .impact-reel-ui {
  display: block;
  padding: 0;
}

.impact-bottom-grid .impact-reel-viewport,
.impact-bottom-grid .impact-reel-slide,
.impact-bottom-grid .impact-reel-media,
.impact-bottom-grid .impact-reel-video {
  width: 100%;
}

.impact-bottom-grid .impact-reel-video {
  display: block;
  object-fit: cover;
}

.impact-bottom-grid .impact-reel-bottom {
  position: absolute;
  top: auto;
  right: 14px;
  bottom: 14px;
  left: auto;
  z-index: 6;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.impact-bottom-grid .impact-reel-meta {
  justify-items: end;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.42);
  color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.impact-bottom-grid .impact-reel-counter {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.impact-bottom-grid .impact-reel-swipe-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-align: right;
}

.impact-reel-popout {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: auto;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.42);
  color: #ffffff;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.impact-reel-popout:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.58);
}

.impact-reel-popout .material-symbols-outlined {
  font-size: 20px;
}

@media (min-width: 901px) {
  .impact-layout {
    grid-template-columns: 480px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
  }

  .impact-bottom-grid .impact-reel-section {
    align-self: stretch;
    width: 480px;
    height: auto;
    min-height: 420px;
    max-height: none;
  }

  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .impact-bottom-grid .impact-reel-slide {
    height: 100%;
    min-height: 100%;
  }

  .impact-bottom-grid .impact-reel-slide::after {
    display: none;
  }

  .impact-bottom-grid .impact-reel-video {
    border: 0;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
  .impact-stats-shell {
    gap: 12px;
  }

  .impact-stats-shell .impact-card + .impact-card {
    border-left: 1px solid rgba(15, 27, 109, 0.09);
    border-top: 1px solid rgba(15, 27, 109, 0.09);
  }
}

/* Mission card polish: compact, restrained palette */
.mission-showcase {
  background: linear-gradient(180deg, #f8fbff 0%, #eef1f6 48%, #ffffff 100%);
}

.mission-showcase::before,
.mission-rail::before,
.mission-rail::after {
  display: none;
}

.mission-rail {
  gap: 16px;
  padding-top: 0;
}

.mission-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(15, 27, 109, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transform: none;
}

.mission-card:hover,
.mission-card--impact:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 75, 109, 0.28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.mission-step-badge {
  position: static;
  width: 30px;
  height: 30px;
  transform: none;
  border: 1px solid rgba(15, 27, 109, 0.12);
  background: #0f1b6d;
  color: #ffffff;
  box-shadow: none;
  font-size: 12px;
}

.mission-icon {
  width: 42px;
  height: 42px;
  margin-inline: 0;
  border-radius: 12px;
  background: rgba(15, 27, 109, 0.06);
  box-shadow: none;
}

.mission-icon .material-symbols-outlined,
.mission-card--impact .mission-icon .material-symbols-outlined {
  color: #0f1b6d;
  font-size: 24px;
}

.mission-card h3 {
  max-width: none;
  margin: 0;
  color: #0f1b6d;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.22;
  letter-spacing: 0;
  -webkit-line-clamp: 2;
}

.mission-accent,
.mission-card--impact .mission-accent {
  width: 34px;
  height: 2px;
  margin: 0;
  background: #e84b6d;
}

.mission-card p,
.mission-card--impact p {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 4;
}

.mission-card--impact {
  transform: none;
  border-color: rgba(232, 75, 109, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.mission-card--impact .mission-step-badge {
  border-color: rgba(232, 75, 109, 0.28);
  background: #e84b6d;
  box-shadow: none;
}

.mission-card--impact .mission-icon {
  background: rgba(232, 75, 109, 0.08);
}

.mission-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: auto;
  height: auto;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.1);
  color: #e84b6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-ribbon::before,
.mission-ribbon::after {
  display: none;
}

.mission-stats {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 0;
}

.mission-stats span {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(15, 27, 109, 0.05);
  color: #6b7280;
  font-size: 11px;
  line-height: 1.35;
}

.mission-stats strong,
.mission-stats span:last-child {
  color: #e84b6d;
}

@media (max-width: 1024px) {
  .mission-card {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .mission-card {
    min-height: 0;
    padding: 20px;
  }
}

/* Mission step-card layout */
.mission-rail {
  position: relative;
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  align-items: stretch;
  padding-top: 18px;
  overflow-x: visible;
}

.mission-rail::before {
  display: block;
  content: "";
  position: absolute;
  left: 150px;
  right: 150px;
  top: 33px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 27, 109, 0.08),
    rgba(232, 75, 109, 0.2),
    rgba(15, 27, 109, 0.08)
  );
  z-index: 0;
}

.mission-rail::after {
  display: none;
}

.mission-card {
  flex: 0 0 clamp(280px, 21vw, 320px);
  grid-template-rows: auto auto auto auto;
  gap: 10px;
  min-height: 0;
  padding: 18px;
  border-radius: 16px;
  scroll-snap-align: start;
  z-index: 1;
}

.mission-card:hover,
.mission-card--impact:hover {
  transform: translateY(-2px);
}

.mission-step-badge {
  width: 28px;
  height: 28px;
  font-size: 11px;
  box-shadow: 0 0 0 5px #ffffff;
}

.mission-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.mission-icon .material-symbols-outlined,
.mission-card--impact .mission-icon .material-symbols-outlined {
  font-size: 22px;
}

.mission-card h3 {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.2;
  -webkit-line-clamp: 2;
}

.mission-accent,
.mission-card--impact .mission-accent {
  width: 28px;
}

.mission-card p,
.mission-card--impact p {
  font-size: 11.5px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.mission-card--impact {
  transform: none;
  border-color: rgba(232, 75, 109, 0.24);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.mission-card--impact:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.mission-ribbon {
  top: 14px;
  right: 14px;
  min-height: 22px;
  padding: 0 8px;
  font-size: 9px;
}

.mission-stats {
  gap: 6px;
}

.mission-stats span {
  padding: 7px 8px;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .mission-rail {
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter-mobile);

    padding-bottom: 12px;
  }

  .mission-rail::before {
    display: none;
  }

  .mission-rail::-webkit-scrollbar {
    display: none;
  }

  .mission-card {
    flex-basis: min(82vw, 320px);
    min-height: 0;
  }

  .mission-card--impact {
    transform: none;
  }
}

@media (max-width: 640px) {
  .mission-rail {
    grid-template-columns: none;
    gap: 14px;
    margin-inline: 0;
    padding-inline: 0;
  }

  .mission-card {
    flex-basis: min(82vw, 300px);
    padding: 18px;
  }

  .mission-card:nth-child(3) {
    min-height: auto;
  }

  .mission-card:nth-child(3) h3,
  .mission-card:nth-child(3) p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }
}

/* Hub section should not be viewport-clipped */
.hub-section {
  min-height: auto;
  max-height: none;
  overflow: visible;
  align-items: initial;
}

.hub-header {
  gap: 8px;
}

.hub-heading {
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.05;
}

/* Corporate hero refresh */
.brand-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: clamp(52px, 7vh, 82px) 16px clamp(40px, 6vh, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 50% 36%,
      rgba(255, 255, 255, 0.92) 0 24%,
      transparent 52%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7f9ff 45%, #eef4ff 100%);
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 1.5px, transparent 2px),
    radial-gradient(
      circle at -4% 12%,
      transparent 0 31%,
      rgba(255, 255, 255, 0.72) 31.15% 31.45%,
      transparent 31.6%
    ),
    radial-gradient(
      circle at 99% 0,
      transparent 0 37%,
      rgba(255, 255, 255, 0.76) 37.12% 37.42%,
      transparent 37.58%
    ),
    radial-gradient(
      circle at 77% 67%,
      transparent 0 40%,
      rgba(255, 255, 255, 0.5) 40.12% 40.34%,
      transparent 40.5%
    );
  background-size:
    18px 18px,
    18px 18px,
    760px 760px,
    780px 780px,
    980px 620px;
  background-position:
    0 62%,
    calc(100% - 104px) 22%,
    -420px -280px,
    calc(100% - 140px) -310px,
    50% 210px;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  opacity: 0.78;
  animation: heroDecorDrift 26s ease-in-out infinite alternate;
  pointer-events: none;
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
  background:
    radial-gradient(
      560px 560px at -100px -80px,
      rgba(244, 63, 94, 0.25),
      transparent 64%
    ),
    radial-gradient(
      640px 560px at calc(100% + 40px) 26px,
      rgba(37, 99, 235, 0.22),
      transparent 65%
    ),
    radial-gradient(
      620px 420px at 50% 285px,
      rgba(124, 58, 237, 0.14),
      transparent 70%
    ),
    radial-gradient(
      760px 460px at 46% 78%,
      rgba(219, 234, 254, 0.46),
      transparent 72%
    );
  filter: blur(52px);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.02);
  animation: heroGlowBreathe 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlowBreathe {
  0% {
    transform: translate3d(-10px, -6px, 0) scale(1.01);
    opacity: 0.88;
  }

  50% {
    transform: translate3d(8px, 8px, 0) scale(1.045);
    opacity: 1;
  }

  100% {
    transform: translate3d(14px, -4px, 0) scale(1.025);
    opacity: 0.92;
  }
}

@keyframes heroDecorDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(16px, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero::before,
  .brand-hero::after {
    animation: none;
  }
}

.brand-hero-shell {
  gap: clamp(32px, 4.8vh, 58px);
  padding-inline: clamp(16px, 4vw, 60px);
}

.brand-hero-top,
.brand-hero-top > div {
  gap: 22px;
}

.brand-hero-title {
  max-width: 72rem;
  color: #07143e;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  letter-spacing: var(--title-spacing);
  text-shadow: 0 18px 48px rgba(12, 24, 74, 0.12);
}

.brand-hero-title .title-line {
  display: block;
  white-space: normal;
}

.brand-hero-title .title-line:first-child {
  margin-bottom: 4px;
  background: linear-gradient(135deg, #0f1b6d 0%, #1a2d9b 52%, #305de8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.04;
}

.brand-hero-title .muted {
  color: #0f1b6d;
  font-size: clamp(34px, 4.55vw, 60px);
  font-weight: 900;
  line-height: 1;
}

.hero-heading-accent {
  position: relative;
  display: inline-block;
  color: #ef2f5f;
}

.hero-heading-accent::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: -0.13em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef2f5f, rgba(239, 47, 95, 0.2));
  transform: rotate(-2deg);
  transform-origin: left center;
  box-shadow: 0 8px 18px rgba(239, 47, 95, 0.16);
}

.brand-hero-copy.section-copy,
.brand-hero-copy {
  max-width: none;
  color: #536076;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  text-align-last: center;
}

@media (min-width: 981px) {
  .brand-hero-copy.section-copy,
  .brand-hero-copy {
    white-space: nowrap;
  }
}

.brand-hero-cta {
  margin-top: 2px;
  gap: 16px;
}

.brand-primary-cta,
.brand-secondary-cta {
  min-height: 56px;
  gap: 10px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.brand-primary-cta {
  background: linear-gradient(135deg, #0f1b6d 0%, #1a2d9b 52%, #305de8 100%);
  box-shadow:
    0 18px 34px rgba(30, 64, 175, 0.28),
    0 0 28px rgba(56, 132, 255, 0.2);
}

.brand-secondary-cta {
  background: rgba(255, 255, 255, 0.68);
  color: #10205c;
  border: 1px solid rgba(16, 32, 92, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand-primary-cta .material-symbols-outlined,
.brand-secondary-cta .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.24s ease;
}

.brand-primary-cta:hover .material-symbols-outlined,
.brand-secondary-cta:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.brand-marquee-shell {
  max-width: 1420px;
  margin-inline: auto;
}

.brand-marquee-stage {
  padding: 2px;
}

.brand-marquee-stage::before,
.brand-marquee-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 12px;
  z-index: 3;
  width: 42px;
  opacity: 0.42;
  pointer-events: none;
}

.brand-marquee-stage::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 249, 255, 0.46), transparent);
}

.brand-marquee-stage::after {
  right: 0;
  background: linear-gradient(270deg, rgba(238, 244, 255, 0.46), transparent);
}

.brand-marquee-viewport {
  padding: 6px 0 18px;
}

.brand-marquee-track {
  gap: 22px;
}

.brand-marquee-controls {
  position: absolute;
  inset: 50% 10px auto 10px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.brand-marquee-nav,
.brand-marquee-prev,
.brand-marquee-next {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 27, 109, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #0f1b6d;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  cursor: pointer;
  pointer-events: auto;
  transform: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.brand-marquee-nav:hover,
.brand-marquee-prev:hover,
.brand-marquee-next:hover {
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transform: scale(1.05);
}

.brand-marquee-nav .material-symbols-outlined,
.brand-marquee-prev .material-symbols-outlined,
.brand-marquee-next .material-symbols-outlined {
  font-size: 28px;
}

.brand-marquee-card,
.brand-marquee-card.is-center-card {
  width: min(30.8vw, 442px);
  height: clamp(230px, 20.8vw, 300px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 58px rgba(16, 24, 64, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  opacity: 1;
  transform: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand-marquee-card:hover,
.brand-marquee-card.is-center-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(16, 24, 64, 0.18),
    0 0 36px rgba(37, 99, 235, 0.1);
}

.brand-marquee-media {
  border-radius: inherit;
  background: linear-gradient(135deg, #0b1765, #142a8c);
}

.brand-marquee-card--video .brand-marquee-media {
  background: #020617;
}

.brand-marquee-card--portrait .brand-marquee-media img,
.brand-marquee-card--square .brand-marquee-media img,
.brand-marquee-card--landscape .brand-marquee-media img {
  object-fit: cover;
}

.brand-marquee-video {
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.06),
    rgba(2, 6, 23, 0.24)
  );
}

.brand-marquee-video .brand-marquee-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.brand-marquee-play {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.94);
  color: #ef2f5f;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.brand-marquee-play .material-symbols-outlined {
  font-size: 34px;
}

.brand-marquee-badge {
  min-height: 34px;
  padding: 0 14px;
  background: rgba(7, 20, 62, 0.84);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand-marquee-card--coming-soon {
  cursor: default;
}

.brand-marquee-card--main-poster .brand-marquee-media {
  background: #f8fbff;
}

.brand-marquee-card--main-poster .brand-marquee-media img {
  object-fit: contain;
  object-position: center;
}

.brand-marquee-card--coming-soon .brand-marquee-media {
  background:
    linear-gradient(135deg, rgba(15, 27, 109, 0.92), rgba(232, 75, 109, 0.78)),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.24),
      transparent 32%
    );
}

.brand-coming-soon-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
  color: #ffffff;
  text-align: left;
}

.brand-coming-soon-kicker {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand-coming-soon-card strong {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.04;
}

.brand-coming-soon-card span:last-child {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.top-nav .nav-register-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  animation: registerCtaPulse 2.8s ease-in-out infinite;
  box-shadow: 0 14px 28px rgba(15, 27, 109, 0.22);
}

@keyframes registerCtaPulse {
  0%,
  100% {
    box-shadow:
      0 14px 28px rgba(15, 27, 109, 0.22),
      0 0 0 rgba(232, 75, 109, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow:
      0 16px 32px rgba(15, 27, 109, 0.26),
      0 0 0 6px rgba(232, 75, 109, 0.12);
    transform: translateY(-1px);
  }
}

@media (min-width: 981px) {
  .brand-hero {
    padding-block: clamp(46px, 6vh, 76px);
  }

  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: min(30.8vw, 442px);
    height: clamp(230px, 20.8vw, 300px);
  }
}

@media (max-width: 980px) {
  .brand-hero-title .title-line:first-child {
    font-size: clamp(24px, 5.8vw, 38px);
  }

  .brand-hero-title .muted {
    font-size: clamp(34px, 8.5vw, 56px);
  }

  .brand-hero-copy.section-copy,
  .brand-hero-copy {
    max-width: 42rem;
    white-space: normal;
  }

  .brand-marquee-card,
  .brand-marquee-card.is-center-card,
  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: min(72vw, 420px);
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 640px) {
  .brand-hero {
    padding: 44px 8px 42px;
  }

  .brand-hero-shell {
    gap: 28px;
  }

  .brand-hero-title {
    max-width: 12ch;
    line-height: 1.08;
  }

  .brand-hero-title .title-line:first-child {
    margin-bottom: 4px;
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .brand-hero-title .muted {
    font-size: clamp(32px, 10vw, 44px);
  }

  .brand-hero-copy.section-copy,
  .brand-hero-copy {
    max-width: 92vw;
    font-size: 14px;
    line-height: 1.58;
  }

  .brand-hero-cta {
    width: min(100%, 360px);
  }

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

  .brand-marquee-track {
    gap: 14px;
  }

  .brand-marquee-stage::before,
  .brand-marquee-stage::after {
    width: 28px;
  }

  .brand-marquee-controls {
    inset-inline: 0;
  }

  .brand-marquee-nav,
  .brand-marquee-prev,
  .brand-marquee-next {
    width: 40px;
    height: 40px;
  }

  .brand-marquee-card,
  .brand-marquee-card.is-center-card,
  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: 84vw;
    border-radius: 20px;
  }
}

@media (max-width: 780px) {
  .hub-section .hub-inner,
  .hub-section .hub-header,
  .hub-section .section-stack {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hub-section .hub-heading {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hub-section .hub-controls {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hub-section .hub-tablist {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .hub-panel.is-hidden {
    display: none !important;
  }

  .hub-panel.is-visible {
    opacity: 1;
    transform: none;
  }

  .hub-panel#hub-panel-podcast,
  .hub-panel#hub-panel-gallery,
  .hub-panel#hub-panel-library {
    padding: 16px;
    border-radius: 20px;
  }

  .podcast-shell,
  .library-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .apm-player,
  .library-player-top {
    grid-template-columns: 1fr;
  }

  .apm-artwork {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  .apm-links,
  .library-actions {
    justify-content: center;
  }

  .apm-links a,
  .apm-links button,
  .library-action {
    min-height: 44px;
  }

  .gallery-timeline,
  .gallery-year-header {
    width: 100%;
  }

  .gallery-timeline {
    justify-content: center;
  }

  .gallery-year-header {
    align-items: flex-start;
    gap: 12px;
  }

  .hub-strip,
  .podcast-list,
  .library-list {
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
}

/* Mobile responsive refinement */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 70;
}

.card-scroll-controls {
  display: none;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.card-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 27, 109, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f1b6d;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.card-scroll-button:hover,
.card-scroll-button:focus-visible {
  background: #ffffff;
  border-color: rgba(232, 75, 109, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px) scale(1.04);
}

.card-scroll-button .material-symbols-outlined {
  font-size: 24px;
  animation: cardArrowNudge 1.35s ease-in-out infinite;
}

.card-scroll-button[data-card-scroll="prev"] .material-symbols-outlined {
  animation-name: cardArrowNudgeReverse;
}

@keyframes cardArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes cardArrowNudgeReverse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}

@media (max-width: 1024px) {
  .card-scroll-controls {
    display: flex;
  }

  .sponsor-showcase .card-scroll-controls {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-scroll-button .material-symbols-outlined {
    animation: none;
  }
}

@media (max-width: 780px) {
  :root {
    --mobile-page-padding: 16px;
    --mobile-container-max: 430px;
    --page-gutter-mobile: 16px;
    --header-height: 64px;
  }

  html {
    scroll-snap-type: none;
    scroll-padding-top: var(--header-height);
  }

  body,
  .site-body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-body {
    width: 100%;
    max-width: none;
    min-height: 100%;
    margin-inline: 0;
    padding: var(--header-height) var(--mobile-page-padding) 0;
    box-sizing: border-box;
  }

  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    width: 100%;
    margin: 0;
  }

  .top-nav .nav-container {
    width: 100%;
    min-height: 64px;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px var(--mobile-page-padding);
  }

  .top-nav .logo-container {
    flex: 0 1 auto;
    min-width: 0;
  }

  .top-nav .logo-container img.logo {
    width: auto;
    max-width: clamp(96px, 30vw, 124px);
    height: clamp(24px, 6.4vw, 30px);
  }

  .top-nav .nav-register-cta {
    order: 2;
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    margin-left: auto;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .top-nav .nav-toggle {
    order: 3;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 8px;
  }

  .top-nav .nav-toggle span {
    width: 20px;
  }

  .site-container,
  .site-container--hero,
  .site-container--contact,
  .vods-inner,
  .impact-showcase > .site-container {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-hero,
  .speaker-showcase,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase,
  #contact {
    min-height: auto;
    max-height: none;
    display: block;
    align-items: initial;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brand-hero {
    padding-top: 44px;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }

  .section-header,
  .section-header.is-centered,
  .brand-hero-top,
  .brand-hero-top > div {
    justify-items: start;
    text-align: left;
  }

  .section-stack,
  .section-title,
  .section-subheader,
  .speaker-heading,
  .impact-title,
  .mission-heading,
  .hub-heading,
  .sponsor-title,
  .brand-hero-title {
    max-width: 100%;
    text-align: center;
    text-wrap: balance;
  }

  .section-title,
  .section-subheader,
  .speaker-heading,
  .impact-title,
  .mission-heading,
  .hub-heading,
  .sponsor-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .section-copy,
  .section-description,
  .speaker-intro,
  .vods-subtitle,
  .mission-copy,
  .sponsor-copy,
  .brand-hero-copy.section-copy,
  .brand-hero-copy {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
    text-align: center;
    text-align-last: center;
    text-wrap: pretty;
  }

  .brand-hero-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 28px;
    padding-left: 0;
    padding-right: 0;
  }

  .brand-hero-top,
  .brand-hero-top > div,
  .brand-hero-cta,
  .brand-marquee-shell,
  .brand-marquee-stage,
  .brand-marquee-viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .brand-hero-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .brand-hero-title .title-line {
    white-space: normal;
  }

  .brand-hero-copy.section-copy,
  .brand-hero-copy {
    text-align-last: center;
    text-justify: inter-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .brand-hero-title .title-line:first-child {
    font-size: clamp(23px, 7vw, 32px);
  }

  .brand-hero-title .muted {
    font-size: clamp(30px, 9vw, 40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.12em 0.22em;
    line-height: 1.12;
  }

  .brand-hero-cta {
    width: 100%;
    justify-content: stretch;
    gap: 12px;
  }

  .brand-primary-cta,
  .brand-secondary-cta,
  .nav-register-cta,
  .register-submit,
  .register-switch {
    min-height: 46px;
    width: 100%;
    padding: 0 18px;
  }

  .top-nav .nav-register-cta {
    width: auto;
    min-height: 36px;
    padding: 0 12px;
  }

  @media (max-width: 380px) {
    .top-nav .nav-container {
      gap: 8px;
      width: 100%;
    }

    .top-nav .logo-container img.logo {
      max-width: 96px;
      height: 24px;
    }

    .top-nav .nav-register-cta {
      min-height: 34px;
      padding: 0 10px;
      font-size: 11px;
    }

    .top-nav .nav-toggle {
      width: 36px;
      height: 36px;
    }
  }

  .brand-marquee-shell {
    max-width: 100%;
  }

  .brand-marquee-stage::before,
  .brand-marquee-stage::after,
  .brand-marquee-controls {
    display: none;
  }

  .brand-marquee-viewport {
    overflow: visible;
    padding: 0;
  }

  .brand-marquee-track {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-marquee-card,
  .brand-marquee-card.is-center-card,
  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    scroll-snap-align: none;
  }

  .brand-marquee-media img,
  .brand-marquee-media iframe {
    width: 100%;
    height: 100%;
  }

  .impact-layout,
  .impact-bottom-grid,
  .vod-layout,
  .podcast-shell,
  .library-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mission-rail,
  .impact-stats-shell,
  .sponsor-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 12px;
  }

  .card-scroll-controls {
    justify-content: center;
    margin-top: 10px;
  }

  .sponsor-showcase .card-scroll-controls {
    display: none;
  }

  .sponsor-showcase .sponsor-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .sponsor-showcase .sponsor-card {
    width: 100%;
    min-height: 186px;
    padding: 18px 16px 20px;
    border-radius: 18px;
    scroll-snap-align: none;
  }

  .sponsor-card--strategic {
    order: 1;
  }

  .sponsor-card--main {
    order: 2;
  }

  .sponsor-grid--compact .sponsor-card--main {
    order: 1;
  }

  .sponsor-grid--compact .sponsor-card:not(.sponsor-card--main) {
    order: 2;
  }

  .sponsor-showcase .sponsor-card:nth-child(3) {
    order: 3;
  }

  .sponsor-showcase .sponsor-card:nth-child(4) {
    order: 4;
  }

  .sponsor-showcase .sponsor-card-title {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: normal;
  }

  .sponsor-showcase .sponsor-logo-shell {
    min-height: 96px;
    padding: 8px 0;
  }

  .sponsor-showcase .sponsor-logo-item,
  .sponsor-showcase .sponsor-card--featured .sponsor-logo-item {
    min-width: 0;
    width: 100%;
    min-height: 82px;
  }

  .sponsor-showcase .sponsor-logo-item img,
  .sponsor-showcase .sponsor-logo-item.is-static img {
    max-width: min(78%, 190px);
    height: 3.8rem;
  }

  .mission-rail::before,
  .mission-rail::after {
    display: none;
  }

  .mission-rail::-webkit-scrollbar,
  .impact-stats-shell::-webkit-scrollbar,
  .sponsor-grid::-webkit-scrollbar {
    display: none;
  }

  .mission-card,
  .impact-stats-shell .impact-card,
  .sponsor-card {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .impact-stats-shell .impact-card + .impact-card {
    border-left: 1px solid rgba(15, 27, 109, 0.09);
    border-top: 0;
  }

  .mission-card h3,
  .impact-stats-shell .impact-label,
  .sponsor-card h3 {
    line-height: 1.25;
  }

  .mission-card p,
  .impact-stats-shell .impact-copy,
  .sponsor-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .impact-stats-shell .impact-number {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1;
  }

  .hub-header {
    gap: 8px;
    margin-bottom: 24px;
    justify-items: center;
    text-align: center;
  }

  .hub-controls,
  .hub-tablist {
    justify-content: center;
  }

  .hub-tab {
    min-height: 44px;
    min-width: 86px;
    padding: 0 16px;
  }

  .hub-panel-label {
    text-align: center;
  }

  .hub-section .section-description,
  .hub-section .section-copy,
  .sponsor-showcase .section-description,
  .sponsor-showcase .section-copy,
  .sponsor-copy {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-align-last: center;
    text-justify: inter-word;
    hyphens: auto;
  }

  .hub-strip,
  .library-feed {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .brand-marquee-stage {
    display: grid;
    gap: 10px;
  }

  .brand-marquee-stage::before,
  .brand-marquee-stage::after {
    display: none;
  }

  .brand-marquee-controls {
    display: flex;
    position: static;
    inset: auto;
    justify-content: center;
    gap: 10px;
    transform: none;
    pointer-events: auto;
  }

  .brand-marquee-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding: 4px 0 14px;
  }

  .brand-marquee-viewport::-webkit-scrollbar {
    display: none;
  }

  .brand-marquee-track {
    display: flex;
    width: max-content;
    max-width: none;
    grid-template-columns: none;
    gap: 14px;
  }

  .brand-marquee-card,
  .brand-marquee-card.is-center-card,
  .brand-marquee-card--hero,
  .brand-marquee-card--landscape,
  .brand-marquee-card--portrait,
  .brand-marquee-card--square {
    flex: 0 0 min(calc(100vw - (var(--mobile-page-padding) * 2)), 480px);
    width: min(calc(100vw - (var(--mobile-page-padding) * 2)), 480px);
    height: auto;
    aspect-ratio: 16 / 9;
    scroll-snap-align: start;
    transform: none;
    opacity: 1;
  }

  .brand-hero .brand-marquee-card:hover,
  .brand-hero .brand-marquee-card:focus-visible,
  .brand-hero .brand-marquee-card.is-center-card:hover {
    transform: none;
  }

  .brand-hero .brand-marquee-card:hover .brand-marquee-media img,
  .brand-hero .brand-marquee-card:focus-visible .brand-marquee-media img,
  .brand-hero .brand-marquee-card--hero:hover .brand-marquee-media img,
  .brand-hero .brand-marquee-card--hero:focus-visible .brand-marquee-media img {
    transform: none;
  }

  .brand-hero .brand-marquee-zoom {
    display: none;
  }

  .brand-marquee-nav,
  .brand-marquee-prev,
  .brand-marquee-next {
    width: 40px;
    height: 40px;
  }

  .brand-marquee-nav .material-symbols-outlined,
  .brand-marquee-prev .material-symbols-outlined,
  .brand-marquee-next .material-symbols-outlined {
    font-size: 24px;
    animation: cardArrowNudge 1.35s ease-in-out infinite;
  }

  .brand-marquee-prev .material-symbols-outlined {
    animation-name: cardArrowNudgeReverse;
  }
}

@media (max-width: 780px) {
  .brand-marquee-card--main-poster {
    order: 1;
    width: min(calc(100vw - (var(--mobile-page-padding) * 2)), 480px);
    flex: 0 0 min(calc(100vw - (var(--mobile-page-padding) * 2)), 480px);
    height: auto;
    aspect-ratio: 480 / 320;
  }

  .brand-marquee-card--coming-soon {
    order: 2;
  }

  .brand-marquee-card--main-poster .brand-marquee-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* Premium podcast player refresh */
#hub-panel-podcast {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(232, 75, 109, 0.2),
      transparent 28%
    ),
    radial-gradient(circle at 84% 8%, rgba(37, 99, 235, 0.2), transparent 30%),
    linear-gradient(135deg, #02040b 0%, #050816 52%, #090817 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
}

#hub-panel-podcast::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto 35%;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.24),
    transparent 62%
  );
  filter: blur(34px);
  pointer-events: none;
}

#hub-panel-podcast .hub-panel-label,
#hub-panel-podcast .apm-queue-head {
  position: relative;
  z-index: 1;
  color: rgba(226, 232, 240, 0.72);
}

#hub-panel-podcast .podcast-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 62% 48%,
      rgba(232, 75, 109, 0.12),
      transparent 25%
    ),
    rgba(0, 0, 0, 0.72);
  box-shadow:
    0 24px 70px rgba(2, 6, 23, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

#hub-panel-podcast .apm-player {
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  margin-top: 0;
}

#hub-panel-podcast .apm-artwork {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  background: #020617;
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

#hub-panel-podcast .apm-artwork::after,
#hub-panel-podcast .podcast-list-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.46));
  pointer-events: none;
}

#hub-panel-podcast .apm-now-playing {
  gap: 18px;
}

#hub-panel-podcast .podcast-series {
  color: #ff6f92;
  font-size: 11px;
  letter-spacing: 0.2em;
}

#hub-panel-podcast .apm-track-title {
  max-width: 34ch;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

#hub-panel-podcast .apm-badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 55, 95, 0.18);
  border: 1px solid rgba(255, 111, 146, 0.28);
  box-shadow: 0 0 22px rgba(232, 75, 109, 0.12);
}

#hub-panel-podcast .apm-scrubber {
  gap: 8px;
}

#hub-panel-podcast .apm-scrubber-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
}

#hub-panel-podcast .apm-scrubber-fill {
  background: linear-gradient(90deg, #ff4f7b, #7c3aed, #38bdf8);
  box-shadow: 0 0 22px rgba(255, 79, 123, 0.45);
}

#hub-panel-podcast .podcast-wave {
  height: 44px;
  padding: 0 2px;
}

#hub-panel-podcast .podcast-wave span {
  width: 3px;
  background: linear-gradient(180deg, #38bdf8 0%, #ff4f7b 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.24);
}

#hub-panel-podcast .apm-transport {
  position: relative;
  justify-content: center;
  gap: 16px;
}

#hub-panel-podcast .apm-transport::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(232, 75, 109, 0.18);
  filter: blur(28px);
  pointer-events: none;
}

#hub-panel-podcast .apm-skip-btn,
#hub-panel-podcast .apm-play-btn {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

#hub-panel-podcast .apm-play-btn {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #ff4f7b, #7c3aed);
  box-shadow:
    0 18px 42px rgba(232, 75, 109, 0.34),
    0 0 38px rgba(124, 58, 237, 0.24);
}

#hub-panel-podcast .apm-links {
  justify-content: flex-start;
  gap: 10px;
}

#hub-panel-podcast .apm-links a,
#hub-panel-podcast .apm-links button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(248, 250, 252, 0.76);
  text-decoration: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#hub-panel-podcast .apm-links a:hover,
#hub-panel-podcast .apm-links button:hover {
  color: #ffffff;
  border-color: rgba(255, 111, 146, 0.34);
  box-shadow: 0 12px 28px rgba(232, 75, 109, 0.14);
  transform: translateY(-1px);
}

#hub-panel-podcast .apm-queue {
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#hub-panel-podcast .podcast-list {
  gap: 16px;
  padding: 4px 2px 18px;
}

#hub-panel-podcast .podcast-list-item {
  width: 220px;
  flex-basis: 220px;
  gap: 10px;
  padding: 10px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.18);
}

#hub-panel-podcast .podcast-list-item:hover {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 20px 42px rgba(2, 6, 23, 0.28);
  transform: translateY(-4px);
}

#hub-panel-podcast .podcast-list-item.is-active {
  border-color: rgba(255, 79, 123, 0.54);
  background: rgba(255, 79, 123, 0.12);
  box-shadow:
    0 20px 44px rgba(2, 6, 23, 0.32),
    0 0 28px rgba(232, 75, 109, 0.18);
}

#hub-panel-podcast .podcast-list-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

#hub-panel-podcast .podcast-list-play {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
}

#hub-panel-podcast .podcast-list-duration {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffb4c6;
}

@media (max-width: 780px) {
  #hub-panel-podcast {
    overflow: hidden;
  }

  #hub-panel-podcast.hub-panel {
    padding: 16px;
  }

  #hub-panel-podcast .podcast-shell {
    width: 100%;
    padding: 16px;
    border-radius: 22px;
    gap: 18px;
  }

  #hub-panel-podcast .apm-player {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
    width: 100%;
  }

  #hub-panel-podcast .apm-artwork {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  #hub-panel-podcast .apm-now-playing {
    gap: 14px;
    padding-top: 0;
  }

  #hub-panel-podcast .apm-track-info {
    gap: 7px;
  }

  #hub-panel-podcast .podcast-series {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.16em;
  }

  #hub-panel-podcast .apm-track-title {
    max-width: 100%;
    font-size: clamp(18px, 5.8vw, 26px);
    line-height: 1.2;
  }

  #hub-panel-podcast .apm-scrubber {
    gap: 7px;
  }

  #hub-panel-podcast .podcast-wave {
    height: 34px;
  }

  #hub-panel-podcast .apm-transport {
    gap: 18px;
  }

  #hub-panel-podcast .apm-skip-btn {
    width: 46px;
    height: 46px;
  }

  #hub-panel-podcast .apm-play-btn {
    width: 62px;
    height: 62px;
  }

  #hub-panel-podcast .apm-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  #hub-panel-podcast .apm-links a,
  #hub-panel-podcast .apm-links button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 0 12px;
    font-size: 10px;
  }

  #hub-panel-podcast .apm-links a:first-child {
    grid-column: 1 / -1;
  }

  #hub-panel-podcast .apm-queue {
    margin-left: 0;
    margin-right: 0;
    padding: 16px 0 0;
    overflow: hidden;
  }

  #hub-panel-podcast .apm-queue-head {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }

  #hub-panel-podcast .podcast-list {
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 4px 16px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #hub-panel-podcast .podcast-list::-webkit-scrollbar {
    display: none;
  }

  #hub-panel-podcast .podcast-list-item {
    width: min(74vw, 270px);
    flex: 0 0 min(74vw, 270px);
    scroll-snap-align: start;
    border-color: rgba(255, 255, 255, 0.1);
  }

  #hub-panel-podcast .podcast-list-item.is-active {
    box-shadow:
      0 16px 34px rgba(2, 6, 23, 0.28),
      0 0 18px rgba(232, 75, 109, 0.14);
  }
}

/* Keep Podcast player styling, but align its panel title with Library. */
#hub-panel-podcast .hub-panel-label {
  color: #0f1b6d;
}

@media (max-width: 780px) {
  .impact-stats-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .impact-stats-shell .impact-card {
    width: 100%;
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
    scroll-snap-align: none;
  }

  .impact-stats-shell .impact-copy {
    width: 100%;
    max-width: none;
    text-align: left;
    text-align-last: left;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: pretty;
  }

  .impact-stats-shell .impact-card + .impact-card {
    border-left: 1px solid rgba(15, 27, 109, 0.09);
    border-top: 1px solid rgba(15, 27, 109, 0.09);
  }

  .impact-bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-bottom-grid .impact-reel-section,
  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport,
  .impact-bottom-grid .impact-reel-slide,
  .impact-bottom-grid .impact-reel-media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
  }

  .impact-bottom-grid .impact-reel-viewport {
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
    touch-action: pan-y;
  }

  .impact-bottom-grid .impact-reel-section {
    width: 100%;
    justify-self: stretch;
  }

  .impact-bottom-grid .impact-story-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .impact-bottom-grid .impact-reel-video {
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: contain;
    background: #000;
    pointer-events: auto;
  }

  .impact-bottom-grid .impact-reel-slide::before,
  .impact-bottom-grid .impact-reel-slide::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 44px;
    background: transparent;
    pointer-events: none;
  }

  .impact-bottom-grid .impact-reel-slide::before {
    left: 0;
  }

  .impact-bottom-grid .impact-reel-slide::after {
    right: 0;
  }

  .impact-story-card p[data-typewrite-words] {
    color: transparent;
    text-align: left;
    text-align-last: left;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: pretty;
  }

  .impact-story-card p[data-typewrite-words] .type-word {
    display: inline;
    white-space: normal;
    color: #526071;
    opacity: 0;
    filter: blur(3px);
    transition:
      opacity 0.28s ease,
      filter 0.28s ease;
    transition-delay: calc(var(--word-index) * 42ms);
  }

  .impact-story-card p[data-typewrite-words] .type-word strong,
  .impact-story-card p[data-typewrite-words] strong.type-word {
    color: #0f1b6d;
  }

  .impact-story-card.is-typing p[data-typewrite-words] .type-word {
    opacity: 1;
    filter: blur(0);
  }
}

@media (max-width: 780px) {
  .impact-bottom-grid .impact-reel-section {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
    display: grid;
    gap: 10px;
    justify-self: stretch;
  }

  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport,
  .impact-bottom-grid .impact-reel-slide,
  .impact-bottom-grid .impact-reel-media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    background: #000000;
  }

  .impact-bottom-grid .impact-feature-card {
    border: 0;
    box-shadow: 0 18px 36px rgba(15, 27, 109, 0.16);
  }

  .impact-bottom-grid .impact-reel-viewport {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: auto;
    scroll-snap-type: y proximity;
    touch-action: pan-y;
  }

  .impact-bottom-grid .impact-reel-slide {
    display: block;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .impact-bottom-grid .impact-reel-media {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  .impact-bottom-grid .impact-reel-video {
    inset: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transform: none;
    background: #000000;
    pointer-events: auto;
    touch-action: auto;
  }

  .impact-bottom-grid .impact-reel-video iframe,
  .impact-bottom-grid iframe.impact-reel-video {
    pointer-events: auto;
    touch-action: auto;
  }

  .impact-bottom-grid .impact-reel-slide::before,
  .impact-bottom-grid .impact-reel-slide::after {
    display: none;
  }

  .impact-bottom-grid .impact-reel-stepper {
    top: 50%;
    right: 14px;
    left: auto;
    z-index: 7;
    display: inline-grid;
    transform: translateY(-50%);
  }

  .impact-bottom-grid .impact-reel-bottom {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: auto;
    z-index: 7;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
  }

  .impact-bottom-grid .impact-reel-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .impact-bottom-grid .impact-reel-counter {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.48);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .impact-bottom-grid .impact-reel-swipe-label {
    display: none;
  }

  .impact-reel-popout {
    display: none;
  }

  .impact-reel-popout .material-symbols-outlined {
    font-size: 20px;
  }
}

.impact-showcase {
  padding-bottom: clamp(52px, 7vh, 80px);
}

@media (min-width: 781px) {
  .speaker-showcase .speaker-intro {
    max-width: 100%;
    text-align: justify;
    text-align-last: left;
    text-wrap: pretty;
  }
}

@media (max-width: 780px) {
  .impact-showcase {
    padding-bottom: 56px;
  }
}

.impact-bottom-grid .impact-reel-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.impact-bottom-grid .impact-reel-swipe-label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: right;
  text-shadow: 0 1px 8px rgba(2, 6, 23, 0.45);
}

.impact-bottom-grid .impact-reel-bottom {
  top: auto;
  right: 10px;
  bottom: 10px;
  left: auto;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  width: auto;
  max-width: calc(100% - 20px);
}

.impact-bottom-grid .impact-reel-counter {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.48);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.impact-bottom-grid .impact-reel-bottom {
  inset: 0;
  display: block;
  width: auto;
  max-width: none;
}

.impact-bottom-grid .impact-reel-meta {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.impact-bottom-grid .impact-reel-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  gap: 8px;
  pointer-events: auto;
}

.impact-bottom-grid .impact-reel-action {
  width: 38px;
  height: 38px;
}

.brand-hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(245, 249, 255, 0.42) 30%,
      rgba(255, 255, 255, 0.66) 50%,
      rgba(245, 249, 255, 0.4) 70%,
      rgba(238, 244, 255, 0.04) 100%
    ),
    radial-gradient(
      ellipse at 50% 34%,
      rgba(255, 255, 255, 0.76) 0%,
      rgba(255, 255, 255, 0.56) 30%,
      rgba(238, 244, 255, 0.24) 58%,
      rgba(238, 244, 255, 0.02) 100%
    ),
    url("./images/backgroundMain.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 50% 22%,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.22) 34%,
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(238, 244, 255, 0.1));
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(238, 244, 255, 0.1) 100%
    ),
    radial-gradient(
      circle at 79% 58%,
      rgba(232, 75, 109, 0.1),
      transparent 10%
    ),
    radial-gradient(
      circle at 11% 18%,
      rgba(255, 255, 255, 0.14),
      transparent 10%
    );
}

@media (max-width: 780px) {
  .brand-hero,
  .speaker-showcase,
  .impact-showcase,
  .vods,
  .mission-showcase,
  .hub-section,
  .sponsor-showcase,
  #contact {
    width: calc(100% + (var(--mobile-page-padding) * 2));
    margin-left: calc(var(--mobile-page-padding) * -1);
    margin-right: calc(var(--mobile-page-padding) * -1);
    padding-left: var(--mobile-page-padding);
    padding-right: var(--mobile-page-padding);
  }

  .vods {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .brand-hero {
    background-size: cover;
    background-position: center top;
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.42) 38%,
        rgba(238, 244, 255, 0.32) 100%
      ),
      radial-gradient(
        ellipse at 50% 22%,
        rgba(255, 255, 255, 0.58) 0%,
        rgba(255, 255, 255, 0.34) 46%,
        rgba(238, 244, 255, 0.08) 100%
      ),
      url("./images/backgroundMainMobile.png");
  }

  .brand-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14),
        rgba(238, 244, 255, 0.08)
      ),
      radial-gradient(
        circle at 50% 18%,
        rgba(255, 255, 255, 0.16),
        transparent 52%
      );
  }

  .brand-hero::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(238, 244, 255, 0.04)
    );
  }

  .brand-hero,
  .brand-hero-shell,
  .brand-marquee-stage,
  .brand-marquee-viewport,
  .brand-marquee-track,
  .brand-marquee-card,
  .brand-marquee-media {
    touch-action: pan-y;
  }

  .brand-hero .brand-marquee-viewport,
  .brand-hero .brand-marquee-track,
  .brand-hero .brand-marquee-card,
  .brand-hero .brand-marquee-media {
    touch-action: pan-x;
  }
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(15, 27, 109, 0.92);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: #1f4ac9;
  outline: none;
}

.scroll-top-button .material-symbols-outlined {
  font-size: 26px;
}

@media (max-width: 780px) {
  .scroll-top-button {
    right: 14px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 780px) {
  .speaker-modal {
    padding: 14px;
    align-items: center;
  }

  .speaker-modal-panel {
    width: min(100%, 420px);
    max-height: calc(100svh - 28px);
    grid-template-columns: 1fr;
    overflow: auto;
    border-radius: 22px;
  }

  .speaker-modal-media {
    display: none;
  }

  .speaker-modal-body {
    padding: 18px;
    gap: 10px;
  }
}

.mission-rail .mission-card:last-of-type {
  animation: missionSoftPulse 3.8s ease-in-out infinite;
}

@keyframes missionSoftPulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(15, 23, 42, 0.07),
      0 0 0 rgba(232, 75, 109, 0);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.1),
      0 0 28px rgba(232, 75, 109, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-rail .mission-card:last-of-type {
    animation: none;
  }

  .top-nav .nav-register-cta {
    animation: none;
  }
}

.mission-stats span:last-child {
  color: #6b7280;
}

.mission-stats span:last-child strong {
  color: #e84b6d;
}

/* --- moved from index.html inline <style> --- */
      :root {
        --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
        --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
      }

      html,
      body,
      body.site-body {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
      }

      main {
        overflow: visible;
      }

      .speaker-modal {
        align-items: center;
        background: rgba(10, 10, 14, 0.62);
        backdrop-filter: blur(16px);
        display: flex;
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        inset: 0;
        justify-content: center;
        max-height: 100dvh;
        overflow-y: auto;
        padding: 1.25rem;
        position: fixed;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
      }

      .speaker-modal[aria-hidden="true"] {
        display: none !important;
      }

      .speaker-modal[aria-hidden="false"],
      .speaker-modal.is-open {
        display: flex !important;
      }

      .speaker-modal-panel {
        align-items: start;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.98)),
          #ffffff;
        border: 1px solid rgba(255, 79, 163, 0.14);
        border-radius: 1.75rem;
        box-shadow: 0 2rem 5rem rgba(74, 16, 52, 0.24);
        color: #231624;
        display: grid;
        gap: clamp(1.4rem, 3vw, 2.4rem);
        grid-template-columns: minmax(11.5rem, 14.5rem) minmax(0, 1fr);
        max-height: min(92vh, 54rem);
        max-width: 56rem;
        overflow: auto;
        overscroll-behavior: contain;
        padding: clamp(1.25rem, 3vw, 2.25rem);
        position: relative;
        -webkit-overflow-scrolling: touch;
        width: min(100%, 56rem);
      }

      .speaker-showcase .speaker-heading {
        color: #10206f !important;
      }

      .speaker-showcase .speaker-heading-accent {
        color: #ff4fa3;
      }

      .speaker-modal-side {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .speaker-modal-close {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 999px;
        color: #2b1728;
        cursor: pointer;
        display: inline-flex;
        height: 2.75rem;
        justify-content: center;
        position: absolute;
        right: 1rem;
        top: 0.9rem;
        transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
        width: 2.75rem;
        z-index: 2;
      }

      #speaker-modal-close::before,
      #speaker-modal-close::after {
        content: none !important;
        display: none !important;
      }

      #speaker-modal .speaker-modal-close:not(#speaker-modal-close),
      #speaker-modal .modal-close:not(#speaker-modal-close),
      #speaker-modal .close:not(#speaker-modal-close),
      #speaker-modal .btn-close:not(#speaker-modal-close),
      #speaker-modal [data-modal-close]:not(#speaker-modal-close) {
        display: none !important;
      }

      .speaker-modal-close .material-symbols-outlined {
        font-size: 1.5rem;
        font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
        line-height: 1;
      }

      .speaker-modal-close:hover {
        background: rgba(255, 79, 163, 0.08);
      }

      .speaker-modal-media {
        background: linear-gradient(145deg, #fff3f8, #f2eef5);
        border-radius: 1.15rem;
        box-shadow: inset 0 0 0 1px rgba(255, 79, 163, 0.12);
        display: block !important;
        flex: 1;
        min-height: 16rem;
        overflow: hidden;
        position: relative;
        max-width: 14.5rem;
        width: 100%;
      }

      .speaker-modal-media img {
        display: block;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        width: 100%;
      }

      .speaker-modal-body {
        align-self: start;
        min-width: 0;
        padding-right: 1.7rem;
      }

      .speaker-modal-title {
        color: #2a1530;
        font-size: clamp(2rem, 5vw, 3.05rem);
        font-weight: 900;
        letter-spacing: -0.02em;
        line-height: 0.98;
        margin: 0 0 0.7rem;
      }

      .speaker-modal-role {
        color: #ff4fa3;
        font-size: clamp(1.06rem, 2.6vw, 1.45rem);
        font-weight: 850;
        line-height: 1.22;
        margin: 0;
      }

      .speaker-modal-bio {
        border-top: 1px solid rgba(255, 79, 163, 0.15);
        color: rgba(42, 21, 48, 0.64);
        font-size: 0.76rem;
        font-weight: 650;
        line-height: 1.42;
        margin: 1.3rem 0 0;
        overflow: hidden;
        padding-top: 1.25rem;
        text-align: justify;
        text-overflow: ellipsis;
        white-space: pre-line;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
      }

      .speaker-modal-bio.is-expanded {
        display: block;
        -webkit-line-clamp: unset;
      }

      .speaker-modal-more {
        align-items: center;
        align-self: flex-start;
        background: rgba(255, 79, 163, 0.08);
        border: 1px solid rgba(255, 79, 163, 0.18);
        border-radius: 999px;
        color: #ff4fa3;
        cursor: pointer;
        display: inline-flex;
        gap: 0.35rem;
        font: inherit;
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1;
        margin-top: 0.65rem;
        min-height: 2rem;
        padding: 0.45rem 0.75rem;
        transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
      }

      .speaker-modal-more::after {
        content: "expand_more";
        font-family: "Material Symbols Outlined";
        font-size: 1.05rem;
        font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 20;
        line-height: 1;
      }

      .speaker-modal-more.is-expanded::after {
        content: "expand_less";
      }

      .speaker-modal-more:hover {
        background: rgba(255, 79, 163, 0.13);
        border-color: rgba(255, 79, 163, 0.32);
      }

      .speaker-modal-more[hidden] {
        display: none;
      }

      .speaker-modal-achievements {
        border-top: 1px solid rgba(255, 79, 163, 0.15);
        grid-column: 1 / -1;
        min-width: 0;
        padding-top: clamp(1rem, 2.6vw, 1.35rem);
      }

      .speaker-modal-achievement-head {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.85rem;
      }

      .speaker-modal-section-title {
        color: #2a1530;
        font-size: 0.86rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        margin: 0;
        text-transform: uppercase;
      }

      .speaker-modal-achievement-carousel {
        position: relative;
        padding: 0 0.6rem;
      }

      .speaker-modal-facts {
        border-top: 0;
        display: flex;
        gap: 1rem;
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0.08rem 0.1rem 0.35rem;
        scroll-behavior: smooth;
        scroll-padding-inline: 0.25rem;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
      }

      .speaker-modal-facts::-webkit-scrollbar {
        display: none;
      }

      .speaker-modal-fact {
        align-content: start;
        align-items: start;
        background: rgba(255, 79, 163, 0.06);
        border: 1px solid rgba(255, 79, 163, 0.12);
        border-radius: 1rem;
        box-shadow: 0 0.9rem 2rem rgba(74, 16, 52, 0.08);
        display: grid;
        gap: 0.5rem 0.62rem;
        grid-template-columns: 1.65rem 1fr;
        flex: 0 0 clamp(15rem, 30vw, 19rem);
        min-width: 0;
        padding: 0.9rem;
        scroll-snap-align: start;
      }

      .speaker-modal-fact .material-symbols-outlined {
        color: #ff4fa3;
        font-size: 1.45rem;
        font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 32;
        grid-row: 1 / span 2;
        line-height: 1;
      }

      .speaker-modal-fact strong {
        color: #10206f;
        display: block;
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.055em;
        line-height: 1.18;
        text-transform: uppercase;
      }

      .speaker-modal-fact span:last-child {
        color: rgba(42, 21, 48, 0.64);
        display: block;
        font-size: 0.76rem;
        grid-column: 2;
        font-weight: 650;
        line-height: 1.42;
      }

      .speaker-modal-achievement-prev {
        left: -0.8rem;
        top: 50%;
      }

      .speaker-modal-achievement-next {
        right: -0.8rem;
        top: 50%;
      }

      @media (min-width: 721px) {
        .speaker-modal-achievement-prev:disabled,
        .speaker-modal-achievement-next:disabled {
          display: none !important;
        }

        .speaker-modal-achievement-carousel.is-static .speaker-modal-facts {
          display: grid;
          grid-template-columns: repeat(var(--speaker-fact-count, 1), minmax(0, 1fr));
          overflow: visible;
        }

        .speaker-modal-achievement-carousel.is-static .speaker-modal-fact {
          width: auto;
        }

        .speaker-modal-achievement-carousel.is-static .speaker-carousel-nav {
          display: none !important;
        }
      }

      .speaker-modal-details {
        border-top: 1px solid rgba(255, 79, 163, 0.15);
        grid-column: 1 / -1;
        min-width: 0;
        padding-top: clamp(1rem, 2.6vw, 1.35rem);
      }

      .speaker-modal-details[hidden] {
        display: none;
      }

      .speaker-modal-detail-list {
        display: grid;
        gap: 0.8rem;
        margin-top: 0.85rem;
      }

      .speaker-modal-detail {
        background: rgba(255, 79, 163, 0.045);
        border: 1px solid rgba(255, 79, 163, 0.12);
        border-radius: 1rem;
        padding: clamp(0.9rem, 2.4vw, 1.2rem);
      }

      .speaker-modal-detail h5 {
        color: #10206f;
        font-size: 0.86rem;
        font-weight: 900;
        line-height: 1.35;
        margin: 0 0 0.65rem;
      }

      .speaker-modal-detail-answer {
        color: rgba(42, 21, 48, 0.64);
        display: -webkit-box;
        font-size: 0.76rem;
        font-weight: 650;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 1.55;
        overflow: hidden;
        text-align: justify;
        white-space: pre-line;
      }

      .speaker-modal-detail-answer.is-expanded {
        display: block;
        -webkit-line-clamp: unset;
      }

      .speaker-modal-detail-more {
        background: transparent;
        border: 0;
        color: #ff4fa3;
        cursor: pointer;
        display: inline-flex;
        font: inherit;
        font-size: 0.76rem;
        font-weight: 900;
        margin-top: 0.35rem;
        padding: 0;
      }

      .speaker-modal-detail-more:hover {
        text-decoration: underline;
      }

      .speaker-modal-detail-more[hidden] {
        display: none;
      }

      .speaker-modal-social {
        align-items: center;
        bottom: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
        justify-content: flex-start;
        left: 0.75rem;
        margin: 0;
        padding: 0.15rem 0;
        position: absolute;
        width: auto;
        z-index: 1;
      }

      .speaker-modal-social[hidden] {
        display: none;
      }

      .speaker-modal-social-icon {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0.35rem 1rem rgba(42, 21, 48, 0.18);
        margin: 0;
      }

      .speaker-modal-social-icon svg {
        fill: #ff4fa3;
      }

      .speaker-carousel {
        box-sizing: border-box;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        padding-inline: 0;
        position: relative;
        width: 100%;
      }

      .speaker-shell,
      .speaker-copy-panel {
        max-width: 100%;
        min-width: 0;
      }

      .speaker-grid {
        align-items: stretch;
        box-sizing: border-box;
        display: flex;
        gap: 1rem;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0.25rem clamp(2.7rem, 5vw, 3.8rem) 1rem;
        scroll-behavior: smooth;
        scroll-padding-inline: clamp(2.7rem, 5vw, 3.8rem);
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
        width: 100%;
        -webkit-overflow-scrolling: touch;
      }

      .speaker-grid::-webkit-scrollbar {
        display: none;
      }

      .speaker-grid .speaker-card {
        align-self: stretch;
        aspect-ratio: auto !important;
        cursor: pointer;
        display: flex !important;
        flex: 0 0 clamp(14.5rem, 26vw, 19rem);
        flex-direction: column !important;
        height: auto !important;
        min-height: 0;
        overflow: visible !important;
      }

      .speaker-grid .speaker-card:focus-visible {
        outline: 3px solid rgba(255, 79, 163, 0.55);
        outline-offset: 4px;
      }

      .speaker-grid .speaker-card[hidden] {
        display: none !important;
      }

      .speaker-grid .speaker-card .speaker-media,
      .speaker-grid .speaker-card .speaker-media-shell {
        display: block;
        width: 100%;
      }

      .speaker-grid .speaker-card .speaker-media {
        aspect-ratio: 4 / 5;
        flex: 0 0 auto;
        height: auto !important;
        max-height: none !important;
        overflow: hidden;
      }

      .speaker-grid .speaker-card .brand-marquee-media {
        flex-shrink: 0;
      }

      .speaker-grid .speaker-card .speaker-media-shell {
        background: transparent;
        border: 0;
        border-radius: inherit;
        cursor: pointer;
        height: 100%;
        overflow: hidden;
        padding: 0;
      }

      .speaker-grid .speaker-card .speaker-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }

      .speaker-carousel-controls {
        display: contents;
      }

      .speaker-carousel-nav {
        display: inline-flex !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 6;
      }

      .speaker-carousel-nav[disabled] {
        cursor: default;
        opacity: 0.36;
        pointer-events: none;
      }

      .speaker-carousel-prev {
        left: 0.35rem !important;
      }

      .speaker-carousel-next {
        right: 0.35rem !important;
      }

      .speaker-meta {
        align-items: flex-start;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 0.36rem;
        justify-content: flex-start;
        min-height: 5.55rem;
        padding: 0.85rem 1rem 0;
        position: relative;
        z-index: 1;
      }

      .speaker-meta .speaker-role {
        background: transparent;
        border: 0;
        border-radius: 0;
        color: rgba(42, 21, 48, 0.65);
        display: block;
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        font-size: clamp(0.78rem, 1.6vw, 0.9rem);
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.35;
        margin: 0;
        min-height: 2.45rem;
        overflow: hidden;
        padding: 0;
        text-transform: none;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }

      .speaker-meta .speaker-card-name {
        color: #ff4fa3;
        display: block;
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        font-size: clamp(1.18rem, 2.5vw, 1.55rem);
        font-weight: 900;
        letter-spacing: 0;
        line-height: 1.06;
        margin: 0;
        min-height: 3.3rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }

      .speaker-search-form {
        align-items: stretch;
        display: flex;
        gap: 0.625rem;
        width: min(100%, 34rem);
      }

      .speaker-search-input {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 999px;
        color: #0f1b6d;
        flex: 1;
        font: inherit;
        min-width: 0;
        padding: 0.85rem 1rem;
      }

      .speaker-search-input::placeholder {
        color: rgba(15, 27, 109, 0.45);
      }

      .speaker-search-button {
        background: rgba(15, 27, 109, 0.12);
        border: 1px solid rgba(15, 27, 109, 0.14);
        border-radius: 999px;
        color: #0f1b6d;
        cursor: pointer;
        font: inherit;
        font-weight: 800;
        padding: 0.85rem 1.2rem;
      }

      @media (max-width: 520px) {
        .speaker-search-form {
          flex-direction: column;
        }
      }

      @media (max-width: 720px) {
        .brand-hero-cta {
          align-items: center;
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          gap: 0.75rem;
        }
        .brand-hero-cta .brand-primary-cta,
        .brand-hero-cta .brand-secondary-cta {
          flex: 1 1 auto;
          justify-content: center;
          min-width: 0;
          text-align: center;
          white-space: nowrap;
        }
      }

      /* Speaker grid — match live jiwasme.com.my */
      #speaker-grid {
        scrollbar-width: none;
      }
      #speaker-grid::-webkit-scrollbar { display: none; }

      /* Moving glow sweep on Daftar Sekarang button */
      .nav-register-cta {
        position: relative;
        overflow: hidden;
        animation: none !important;
      }
      .nav-register-cta::before {
        content: "";
        position: absolute;
        top: 0; left: -75%;
        width: 50%; height: 100%;
        background: linear-gradient(
          120deg,
          transparent 0%,
          rgba(255,255,255,0) 20%,
          rgba(255,255,255,0.45) 50%,
          rgba(255,255,255,0) 80%,
          transparent 100%
        );
        animation: btnGlowSweep 2.4s ease-in-out infinite;
        pointer-events: none;
      }
      @keyframes btnGlowSweep {
        0%   { left: -75%; opacity: 0; }
        10%  { opacity: 1; }
        60%  { left: 130%; opacity: 1; }
        61%  { opacity: 0; }
        100% { left: 130%; opacity: 0; }
      }

      @media (max-width: 720px) {
        .speaker-modal {
          align-items: flex-start;
          display: block !important;
          height: 100vh;
          height: 100dvh;
          justify-content: flex-start;
          overflow-x: hidden;
          overflow-y: scroll;
          padding: 0.75rem 0.75rem max(1.25rem, env(safe-area-inset-bottom));
          touch-action: pan-y;
          -webkit-overflow-scrolling: touch;
        }

        .speaker-modal[aria-hidden="false"],
        .speaker-modal.is-open {
          display: block !important;
        }

        .speaker-modal-panel {
          border-radius: 1.45rem;
          gap: 1rem;
          grid-template-columns: 1fr;
          margin: 0 auto;
          max-height: none;
          min-height: min-content;
          overflow: visible;
          padding: 1.1rem;
          width: 100%;
        }

        .speaker-modal-close {
          background: rgba(255, 255, 255, 0.86);
          right: 0.75rem;
          top: 0.75rem;
        }

        .speaker-modal-media {
          aspect-ratio: 4 / 5;
          display: block !important;
          flex: none;
          max-height: min(42vh, 18rem);
          max-width: min(100%, 18rem);
          min-height: 0;
          width: min(100%, 18rem);
        }

        .speaker-modal-media img {
          display: block !important;
          min-height: 100%;
        }

        .speaker-modal-side {
          align-items: center;
          align-self: center;
          max-width: 100%;
          width: 100%;
        }

        .speaker-modal-body {
          padding-right: 0;
        }

        .speaker-modal-title {
          font-size: clamp(1.9rem, 10vw, 2.6rem);
          padding-right: 2.8rem;
        }

        .speaker-modal-role {
          font-size: clamp(0.92rem, 4.3vw, 1.1rem);
        }

        .speaker-modal-bio {
          margin-top: 1rem;
          padding-top: 1rem;
          -webkit-line-clamp: 3;
        }

        .speaker-carousel {
          padding-inline: 0;
        }

        .speaker-grid {
          overscroll-behavior-x: contain;
          overflow-y: hidden;
          padding-inline: 2.35rem;
          scroll-padding-inline: 2.35rem;
          touch-action: pan-x pan-y !important;
        }

        .speaker-grid .speaker-card,
        .speaker-grid .speaker-media,
        .speaker-grid .speaker-media-shell,
        .speaker-grid .speaker-media img {
          touch-action: pan-x pan-y !important;
        }

        .speaker-modal-achievements {
          grid-column: 1 / -1;
        }

        .speaker-modal-facts {
          border-top: 0;
          margin-top: 0;
          padding-top: 0.08rem;
        }

        .speaker-modal-fact {
          align-items: start;
          flex-basis: min(82vw, 18rem);
          grid-template-columns: 1.65rem 1fr;
        }

        .speaker-modal-fact span:last-child {
          grid-column: 2;
        }

        .speaker-modal-achievement-prev {
          left: -0.65rem;
        }

        .speaker-modal-achievement-next {
          right: -0.65rem;
        }

      }


      /* Scroll hint */
.hero-scroll-hint { align-items: center; display: flex; justify-content: center; opacity: 0.4; padding: 0.5rem 0 1.5rem; transition: opacity 0.5s var(--ease-out); }
      .hero-scroll-hint.is-hidden { opacity: 0 !important; pointer-events: none; }
      .hero-scroll-hint .material-symbols-outlined { animation: heroScrollBounce 1.8s ease-in-out infinite; color: #10206f; font-size: 2rem; font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24; }
      @keyframes heroScrollBounce { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(7px); opacity: 1; } }

      /* Roadshow hero carousel */
      .brand-marquee-shell { margin-inline: calc(50% - 50vw); max-width: none; overflow: visible; width: 100vw; }
      .brand-marquee-stage { overflow: visible; padding: 0; position: relative; }
      .brand-marquee-stage::before,
      .brand-marquee-stage::after { display: none; }
      .brand-marquee-viewport { overflow-x: auto; overflow-y: visible; padding: 1.1rem 0 2.1rem; scroll-padding-inline: 50vw; }
      .brand-marquee-track { align-items: flex-start; gap: clamp(1rem, 1.6vw, 1.45rem); padding-inline: calc(max(16px, (100vw - var(--page-shell, 1520px)) / 2) + var(--page-gutter, 60px)); }
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card) {
        opacity: 0.86;
        transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out);
      }
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card) .brand-marquee-media {
        border-radius: 1rem;
        box-shadow: 0 1.3rem 2.4rem rgba(16,32,111,.13);
        overflow: hidden;
      }
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card) .brand-marquee-media img {
        display: block;
        height: 100%;
        object-fit: contain;
        object-position: center;
        width: 100%;
      }
      .brand-marquee-card--city { cursor: pointer; overflow: visible; position: relative; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out); }
      .brand-marquee-card--city.is-active { opacity: 1; transform: translateY(-6px); }
      .brand-marquee-card--city .brand-marquee-media img { transition: transform 200ms var(--ease-out); }

      /* Active card — dark glow ring indicator */
      .brand-marquee-track .brand-marquee-card:not(.is-active) {
        cursor: default;
        pointer-events: none;
      }
      .brand-marquee-track .brand-marquee-card.is-active {
        opacity: 1 !important;
        pointer-events: auto;
      }
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card).is-active .brand-marquee-media {
        box-shadow: 0 0 0 3px rgba(16, 32, 111, 0.95);
        transition: box-shadow 0.32s var(--ease-out);
      }
      .brand-marquee-track .ev-ticket-card.is-active {
        box-shadow: 0 0 0 3px rgba(16, 32, 111, 0.95) !important;
      }

      /* Play CTA */
      .hero-play-cta { align-items: center; display: inline-flex; gap: 0.5rem; }
      .hero-play-icon { color: #ff4fa3; font-size: 2rem; font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; line-height: 1; transition: transform 0.2s var(--ease-out); }

      /* Brand marquee dots */
      .brand-marquee-dots { display: flex; gap: 8px; justify-content: center; margin-top: 1rem; overflow-x: auto; padding: 0.35rem 1rem 0.5rem; scrollbar-width: none; }
      .brand-marquee-dots::-webkit-scrollbar { display: none; }
      .brand-marquee-dot { background: rgba(16,32,111,.18); border: none; border-radius: 999px; cursor: pointer; flex-shrink: 0; height: 10px; padding: 6px; position: relative; transition: background .25s var(--ease-out), width .25s var(--ease-out), transform .2s var(--ease-out); width: 10px; box-sizing: content-box; }
      .brand-marquee-dot.is-active { background: #ff4fa3; width: 24px; transform: none; }
      .brand-marquee-dot:hover:not(.is-active) { background: rgba(16,32,111,.35); }
      .brand-marquee-dot::before {
        background: rgba(16, 32, 111, 0.88);
        border-radius: 0.45rem;
        bottom: calc(100% + 0.65rem);
        color: #fff;
        content: attr(data-label);
        font-family: "Manrope", "Inter", system-ui, sans-serif;
        font-size: 0.68rem;
        font-weight: 700;
        left: 50%;
        letter-spacing: 0.02em;
        opacity: 0;
        padding: 0.3rem 0.6rem;
        pointer-events: none;
        position: absolute;
        transform: translateX(-50%) translateY(5px);
        transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
        white-space: nowrap;
        z-index: 20;
      }
      .brand-marquee-dot::after {
        border: 4px solid transparent;
        border-top-color: rgba(16, 32, 111, 0.88);
        bottom: calc(100% + 0.25rem);
        content: "";
        left: 50%;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transform: translateX(-50%) translateY(5px);
        transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out);
        z-index: 20;
      }
      .brand-marquee-dot:hover::before,
      .brand-marquee-dot:focus-visible::before,
      .brand-marquee-dot.is-active::before {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
      .brand-marquee-dot:hover::after,
      .brand-marquee-dot:focus-visible::after,
      .brand-marquee-dot.is-active::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      /* Speaker dots */

      /* KL Featured Event Card — premium single-component design */
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card) { opacity: 0.82; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out); }
      .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card):hover { opacity: 1; }

      /* Card shell */
      .ev-ticket-card {
        border-radius: 1rem;
        box-shadow:
          0 12px 40px rgba(7,20,58,.13),
          0 4px 12px rgba(7,20,58,.07),
          0 0 0 1px rgba(255,255,255,.06);
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        overflow: hidden;
        position: relative;
        transform: scale(1.08);
        transform-origin: center;
        transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out);
        z-index: 10;
      }
      .ev-ticket-card:hover {
        box-shadow:
          0 22px 52px rgba(7,20,58,.18),
          0 8px 20px rgba(7,20,58,.09),
          0 0 0 1px rgba(255,255,255,.08);
      }
      .ev-ticket-card:focus-visible {
        box-shadow: 0 12px 40px rgba(7,20,58,.14), 0 0 0 3px rgba(255,79,163,.45);
        outline: none;
      }

      /* Header bar — countdown + CTA */
      .ev-info-panel {
        align-items: center;
        background: #0c1840;
        border: none;
        border-bottom: 2px solid rgba(255,79,163,.35);
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-shrink: 0;
        gap: 1rem;
        justify-content: space-between;
        margin: 0;
        min-height: 72px;
        order: -1;
        padding: .8rem 1.1rem;
        position: relative;
      }
      .ev-info-panel::before { display: none; }

      /* Post-event: match sibling city cards exactly */
      .ev-ticket-card.is-post-event {
        transform: scale(1) !important;
        height: auto !important;
      }
      .ev-ticket-card.is-post-event:hover {
        transform: translateY(-4px) !important;
      }
      /* Remove fixed 16/9 ratio so image fills naturally like other cards */
      .ev-ticket-card.is-post-event .brand-marquee-media {
        aspect-ratio: unset !important;
        height: auto !important;
        flex: none;
      }
      .ev-ticket-card.is-post-event .brand-marquee-media img {
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
      }

      /* Poster area — clean, no borders */
      .ev-ticket-card .brand-marquee-media {
        aspect-ratio: 16/9;
        background: #0c1840;
        border: none;
        border-radius: 0;
        box-shadow: none;
        flex-shrink: 0;
        overflow: hidden;
        padding: 0;
        position: relative;
        width: 100%;
      }
      .ev-ticket-card .brand-marquee-media::before,
      .ev-ticket-card .brand-marquee-media::after { display: none; content: none; }
      .ev-ticket-card .brand-marquee-media img {
        display: block;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform .45s cubic-bezier(.2,.8,.2,1);
        width: 100%;
      }

      /* Countdown block */
      .ev-cdown-block { align-items: flex-start; display: flex; flex: 1; flex-direction: column; gap: .28rem; min-width: 0; }
      .ev-cdown-label {
        color: rgba(255,255,255,.5);
        font-size: .6rem;
        font-weight: 800;
        letter-spacing: .1em;
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
      }
      .ev-cdown-units { display: flex; gap: .55rem; }
      .ev-cdown-unit { align-items: center; display: flex; flex-direction: column; gap: .1rem; min-width: 1.75rem; }
      .ev-cdown-num {
        color: #fff;
        font-family: ui-monospace, "SF Mono", "Roboto Mono", monospace;
        font-size: clamp(1.3rem, 1.55vw, 1.62rem);
        font-variant-numeric: tabular-nums;
        font-weight: 900;
        letter-spacing: 0;
        line-height: .9;
      }
      @keyframes ev-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .65; } }
      .ev-ticket-card:hover .ev-cdown-num { animation: ev-pulse 1.5s ease-in-out infinite; }
      .ev-cdown-unit-lbl {
        color: rgba(255,255,255,.38);
        font-size: .42rem;
        font-weight: 800;
        letter-spacing: .06em;
        line-height: 1;
        text-transform: uppercase;
      }

      /* Sedang Berlangsung */
      .ev-live-badge { align-items: center; color: #fff; display: flex; font-size: .75rem; font-weight: 900; gap: .5rem; justify-content: flex-start; letter-spacing: .06em; text-transform: uppercase; }
      .ev-live-dot { animation: ev-live-pulse 1.3s ease-in-out infinite; background: #ff4fa3; border-radius: 50%; box-shadow: 0 0 6px rgba(255,79,163,.7); display: block; flex-shrink: 0; height: .45rem; width: .45rem; }
      @keyframes ev-live-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .25; transform: scale(1.9); } }

      /* Event journey cards */
      .brand-marquee-track .event-journey-card {
        flex: 0 0 clamp(28rem, 36vw, 36rem);
        pointer-events: auto;
      }

      .event-journey-card {
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(16, 32, 111, 0.1);
        border-radius: 1rem;
        box-shadow:
          0 12px 40px rgba(7,20,58,.13),
          0 4px 12px rgba(7,20,58,.07);
        color: #10206f;
        overflow: hidden;
        position: relative;
        transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), opacity 200ms var(--ease-out);
      }

      .event-journey-card:hover {
        box-shadow:
          0 20px 54px rgba(7,20,58,.18),
          0 9px 22px rgba(7,20,58,.1);
      }

      .journey-badge {
        align-items: center;
        border-radius: 0.38rem;
        display: inline-flex;
        font-size: 0.72rem;
        font-weight: 900;
        gap: 0.36rem;
        letter-spacing: 0.04em;
        line-height: 1;
        min-height: 2.05rem;
        padding: 0.55rem 0.8rem;
        position: absolute;
        text-transform: uppercase;
        z-index: 8;
      }

      .journey-badge .material-symbols-outlined {
        font-size: 1rem;
        font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 20;
      }

      .journey-badge--recap {
        background: #ff4fa3;
        box-shadow: 0 0.45rem 1.1rem rgba(255, 79, 163, 0.24);
        color: #ffffff;
        left: 0.85rem;
        top: 0.85rem;
      }

      .ev-recap-card {
        display: grid !important;
        grid-template-columns: minmax(12rem, 38%) minmax(0, 1fr);
        min-height: auto;
        transform: none;
      }

      .ev-recap-video {
        appearance: none;
        background: #080b17;
        border: 0;
        border-radius: 0;
        cursor: pointer;
        display: block;
        min-height: 100%;
        overflow: hidden;
        padding: 0;
        position: relative;
        text-align: left;
        width: 100%;
      }

      .ev-recap-video img {
        display: block;
        filter: saturate(1.05) contrast(1.04);
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 250ms var(--ease-out);
        width: 100%;
      }

      .ev-recap-video::after {
        background: linear-gradient(180deg, rgba(4, 8, 18, 0.08), rgba(4, 8, 18, 0.62));
        content: "";
        inset: 0;
        position: absolute;
      }

      .ev-recap-play {
        align-items: center;
        background: rgba(255, 255, 255, 0.92);
        border: 0;
        border-radius: 999px;
        box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.24);
        color: #ff4fa3;
        display: inline-flex;
        height: 3.75rem;
        justify-content: center;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: transform 180ms var(--ease-out);
        width: 3.75rem;
        z-index: 9;
      }

      .ev-recap-play .material-symbols-outlined {
        font-size: 2.15rem;
        font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 40;
      }

      .ev-recap-duration {
        background: rgba(0, 0, 0, 0.72);
        border-radius: 0.45rem;
        bottom: 0.85rem;
        color: #ffffff;
        font-size: 0.78rem;
        font-weight: 900;
        left: 0.85rem;
        line-height: 1;
        padding: 0.42rem 0.58rem;
        position: absolute;
        z-index: 9;
      }

      .ev-current-card {
        border: 2px solid rgba(16, 32, 111, 0.92);
        transform: none;
        z-index: 12;
      }


      .ev-current-card .ev-info-panel {
        border-bottom: 0;
        border-bottom-left-radius: 0.85rem;
        min-height: auto;
        padding: 0.65rem 0.9rem;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
        z-index: 7;
      }

      .ev-current-card .ev-cdown-block {
        align-items: center;
      }

      .ev-current-card .ev-cdown-units {
        gap: 0.6rem;
      }

      .ev-current-card .brand-marquee-media {
        aspect-ratio: 16 / 9;
      }

      .event-future-card {
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 0.9rem 2.4rem rgba(16, 32, 111, 0.1);
      }

      .event-future-card .brand-marquee-media {
        aspect-ratio: 16 / 9;
      }

      .video-lightbox {
        align-items: center;
        background: rgba(7, 10, 24, 0.76);
        backdrop-filter: blur(12px);
        display: none;
        inset: 0;
        justify-content: center;
        padding: 1rem;
        position: fixed;
        z-index: 1200;
      }

      .video-lightbox.is-open {
        display: flex;
      }

      .video-lightbox-panel {
        background: #070a18;
        border-radius: 1rem;
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.36);
        max-width: min(92vw, 56rem);
        overflow: hidden;
        position: relative;
        width: 100%;
      }

      .video-lightbox-frame {
        aspect-ratio: 16 / 9;
        background: #000;
        position: relative;
      }

      .video-lightbox-tap-layer {
        -webkit-tap-highlight-color: transparent;
        appearance: none;
        background: transparent;
        border: 0;
        border-radius: 0;
        display: none;
        outline: none;
      }

      .video-lightbox-tap-layer:focus,
      .video-lightbox-tap-layer:focus-visible,
      .video-lightbox-tap-layer:active {
        background: transparent;
        box-shadow: none;
        outline: none;
      }

      .video-lightbox-close {
        align-items: center;
        background: rgba(255, 255, 255, 0.94);
        border: 0;
        border-radius: 999px;
        color: #10206f;
        cursor: pointer;
        display: inline-flex;
        height: 2.6rem;
        justify-content: center;
        position: absolute;
        right: 0.65rem;
        top: 0.65rem;
        width: 2.6rem;
        z-index: 2;
      }

      @media (max-width: 900px) {
        .ev-recap-card,
        .ev-current-card,
        .event-future-card {
          flex-basis: 100vw !important;
          transform: none !important;
          width: 100vw !important;
        }

        .ev-recap-card {
          grid-template-columns: 1fr;
        }

        .ev-recap-video {
          aspect-ratio: 9 / 12;
          min-height: 0;
        }

        .ev-current-card .brand-marquee-media,
        .event-future-card .brand-marquee-media {
          aspect-ratio: 16 / 9;
        }

        .ev-current-card .ev-info-panel {
          border-bottom-left-radius: 0.75rem;
          padding: 0.55rem 0.72rem;
          right: 0;
          top: 0;
        }

        .ev-current-card .ev-cdown-label {
          font-size: 0.52rem;
        }

        .ev-current-card .ev-cdown-num {
          font-size: 1.05rem;
        }

        .ev-current-card .ev-cdown-unit {
          min-width: 1.35rem;
        }

        .journey-badge {
          font-size: 0.64rem;
          left: 0.7rem;
          min-height: 1.8rem;
          padding: 0.48rem 0.65rem;
          top: 0.7rem;
        }

      }

      /* Nav button glow */
      .nav-register-cta { animation: none !important; overflow: hidden; position: relative; }
      .nav-register-cta::before { animation: btnGlowSweep 2.4s ease-in-out infinite; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 80%, transparent 100%); content: ""; height: 100%; left: -75%; pointer-events: none; position: absolute; top: 0; width: 50%; }
      @keyframes btnGlowSweep { 0% { left: -75%; opacity: 0; } 10% { opacity: 1; } 60% { left: 130%; opacity: 1; } 61% { opacity: 0; } 100% { left: 130%; opacity: 0; } }

      @media (max-width: 900px) {
        html {
          scroll-snap-type: none !important;
        }

        .brand-hero,
        .speaker-showcase,
        .impact-showcase,
        .vods,
        .mission-showcase,
        .hub-section,
        .sponsor-showcase {
          scroll-snap-align: none !important;
          scroll-snap-stop: normal !important;
        }

        .brand-hero {
          overflow: visible !important;
        }

        .brand-marquee-shell {
          margin-inline: calc(50% - 50vw);
          overflow: visible;
          touch-action: pan-y;
          width: 100vw;
        }

        .brand-marquee-stage {
          overflow: visible;
          touch-action: pan-y;
        }

        .brand-marquee-viewport {
          overflow-x: auto;
          overflow-y: visible;
          overscroll-behavior-x: contain;
          overscroll-behavior-y: auto;
          padding: .4rem 0 1rem;
          scroll-padding-inline: 0;
          scroll-snap-type: x mandatory;
          touch-action: pan-y;
          -webkit-overflow-scrolling: touch;
        }
        .brand-marquee-track,
        .brand-marquee-card {
          touch-action: pan-y;
        }
        .brand-marquee-track {
          gap: .9rem;
          overflow-y: visible;
          padding-inline: 0;
        }

        .brand-hero,
        .brand-hero .brand-marquee-shell,
        .brand-hero .brand-marquee-stage,
        .brand-hero .brand-marquee-viewport,
        .brand-hero .brand-marquee-track,
        .brand-hero .brand-marquee-card,
        .brand-hero .brand-marquee-media {
          touch-action: pan-y !important;
        }

        .brand-marquee-track .brand-marquee-card:not(.ev-ticket-card),
        .ev-ticket-card {
          flex-basis: 100vw !important;
          scroll-snap-align: start;
          width: 100vw !important;
        }
        .ev-ticket-card { order: -1; transform: scale(1.04); }
        .event-journey-card.ev-ticket-card {
          transform: none !important;
        }
        .ev-ticket-card.is-post-event { transform: scale(1) !important; }
        .ev-ticket-card.is-post-event .brand-marquee-media { aspect-ratio: unset !important; height: auto !important; }
        .ev-info-panel { min-height: 64px; padding: .7rem .9rem; }
        .ev-current-card { order: 0 !important; }
      }

      /* Impact reel — allow vertical page scroll on mobile (reel captures touch; pan-y lets browser scroll the page) */
      @media (max-width: 900px) {
        .impact-reel-section,
        .impact-feature-card,
        .impact-feature-media,
        #impact-reel-viewport {
          overscroll-behavior-x: contain;
          overscroll-behavior-y: auto;
          touch-action: pan-y;
        }
      }

      /* ─── Modal entry animations ─── */
      .speaker-modal {
        transition: opacity 200ms var(--ease-out);
      }
      .video-lightbox {
        transition: opacity 200ms var(--ease-out);
      }
      @starting-style {
        .speaker-modal[aria-hidden="false"],
        .speaker-modal.is-open {
          opacity: 0;
        }
        .video-lightbox.is-open {
          opacity: 0;
        }
      }
      .speaker-modal-panel {
        transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
      }
      .video-lightbox-panel {
        transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
      }
      @starting-style {
        .speaker-modal[aria-hidden="false"] .speaker-modal-panel,
        .speaker-modal.is-open .speaker-modal-panel {
          opacity: 0;
          transform: scale(0.97);
        }
        .video-lightbox.is-open .video-lightbox-panel {
          opacity: 0;
          transform: scale(0.97);
        }
      }

      /* ─── Active press feedback ─── */
      .brand-primary-cta:active,
      .speaker-search-button:active,
      .speaker-modal-close:active,
      .speaker-modal-more:active,
      .speaker-modal-detail-more:active,
      .brand-marquee-dot:active,
      .brand-marquee-nav:active,
      .hub-tab:active,
      .gallery-year-btn:active,
      .impact-card:active,
      .hub-folder-arrow:active,
      .impact-reel-action:active,
      .impact-reel-step:active,
      .card-scroll-button:active,
      .video-lightbox-close:active,
      .gallery-close:active,
      .ev-recap-video:active {
        transform: scale(0.97);
        transition: transform 100ms ease-out;
      }

      /* ─── Gated hover transforms ─── */
      @media (hover: hover) and (pointer: fine) {
        .speaker-modal-close:hover {
          transform: rotate(4deg);
        }
        .speaker-modal-more:hover {
          transform: translateY(-1px);
        }
        .brand-marquee-dot:hover:not(.is-active) {
          transform: scale(1.2);
        }
        .hero-play-cta:hover .hero-play-icon {
          transform: scale(1.15);
        }
        .ev-ticket-card:hover {
          transform: scale(1.08) translateY(-8px);
        }
        .ev-ticket-card:hover .brand-marquee-media img {
          transform: scale(1.015);
        }
        .ev-recap-video:hover img {
          transform: scale(1.03);
        }
        .ev-recap-video:hover .ev-recap-play {
          transform: translate(-50%, -50%) scale(1.06);
        }
        .brand-marquee-card--city:hover {
          opacity: 1;
          transform: translateY(-6px);
        }
        .brand-marquee-card--city:hover .brand-marquee-media img {
          transform: scale(1.04);
        }
        .event-journey-card:hover {
          transform: translateY(-6px);
        }
        .ev-current-card:hover {
          transform: translateY(-6px);
        }
      }

      /* ─── Mobile hover — pointer-capable devices only ─── */
      @media (max-width: 900px) and (hover: hover) and (pointer: fine) {
        .ev-ticket-card:hover { transform: scale(1.04) translateY(-6px); }
        .event-journey-card.ev-ticket-card:hover { transform: translateY(-6px) !important; }
        .ev-ticket-card.is-post-event:hover { transform: translateY(-4px) !important; }
      }

      /* ─── Speaker card entrance stagger ─── */
      @keyframes speaker-card-in {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      .speaker-grid .speaker-card {
        animation: speaker-card-in 300ms var(--ease-out) both;
      }
      .speaker-grid .speaker-card:nth-child(1) { animation-delay: 0ms; }
      .speaker-grid .speaker-card:nth-child(2) { animation-delay: 50ms; }
      .speaker-grid .speaker-card:nth-child(3) { animation-delay: 100ms; }
      .speaker-grid .speaker-card:nth-child(4) { animation-delay: 150ms; }
      .speaker-grid .speaker-card:nth-child(5) { animation-delay: 200ms; }
      .speaker-grid .speaker-card:nth-child(6) { animation-delay: 250ms; }
      .speaker-grid .speaker-card:nth-child(7) { animation-delay: 300ms; }
      .speaker-grid .speaker-card:nth-child(8) { animation-delay: 350ms; }

      /* ─── Reduced motion ─── */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }

      /* ─── Responsive text & layout fixes ─── */

      /* Prevent any heading/paragraph from hard-clipping */
      h1, h2, h3, h4, h5, h6,
      .section-title,
      .section-subtitle,
      .section-description,
      .brand-hero-title,
      .brand-hero-copy,
      .mission-heading,
      .mission-copy,
      .speaker-heading,
      .hub-heading {
        overflow-wrap: break-word;
        word-break: break-word;
      }

      /* Hero heading spans: keep inline so they flow together */
      .hero-heading-accent,
      .hero-heading-rest {
        display: inline;
        white-space: normal;
      }

      /* Journey badges: don't let them overflow the card width */
      .journey-badge {
        max-width: calc(100% - 1.7rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      /* ─── Tablet / mid-range (601–900px) ─── */
      @media (max-width: 900px) and (min-width: 601px) {
        .ev-cdown-label {
          font-size: 0.54rem;
        }

        .ev-cdown-num {
          font-size: 1.1rem;
        }

        .ev-cdown-unit-lbl {
          font-size: 0.4rem;
        }

        .ev-cdown-unit {
          min-width: 1.45rem;
        }

        .ev-info-panel {
          padding: 0.7rem 0.9rem;
        }

        .journey-badge {
          font-size: 0.66rem;
        }
      }

      /* ─── Small mobile (≤600px) ─── */
      @media (max-width: 600px) {
        /* Hero copy readable */
        .brand-hero-copy {
          font-size: 0.95rem !important;
          line-height: 1.5 !important;
        }

        /* Countdown units — compact but legible */
        .ev-cdown-label {
          font-size: 0.5rem;
        }

        .ev-cdown-num {
          font-size: 1rem !important;
        }

        .ev-cdown-unit-lbl {
          font-size: 0.38rem;
        }

        .ev-cdown-unit {
          min-width: 1.35rem;
        }

        .ev-cdown-units {
          gap: 0.4rem;
        }

        .ev-info-panel {
          gap: 0.65rem;
          min-height: 56px;
          padding: 0.6rem 0.8rem;
        }

        /* Journey badges smaller */
        .journey-badge {
          font-size: 0.6rem;
          min-height: 1.75rem;
          padding: 0.42rem 0.6rem;
        }

        /* Mission stats — stack on tiny screens */
        .mission-stats {
          flex-direction: column;
        }

      }

      /* ─── Very small phones (≤400px) ─── */
      @media (max-width: 400px) {
        /* Hero CTA: stack vertically */
        .brand-hero-cta {
          flex-direction: column !important;
          align-items: stretch !important;
        }

        .brand-hero-cta .brand-primary-cta,
        .brand-hero-cta .brand-secondary-cta {
          flex: none !important;
          justify-content: center !important;
          text-align: center !important;
          width: 100% !important;
        }

        /* Countdown: tighter */
        .ev-cdown-num {
          font-size: 0.85rem !important;
        }

        .ev-cdown-units {
          gap: 0.3rem;
        }

        .ev-cdown-unit {
          min-width: 1.1rem;
        }

        /* Info panel */
        .ev-info-panel {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.4rem;
          padding: 0.55rem 0.7rem;
        }

        /* Recap duration badge */
        .ev-recap-duration {
          font-size: 0.7rem;
          padding: 0.35rem 0.5rem;
        }

        /* Impact stats numbers */
        .impact-number {
          font-size: clamp(2rem, 12vw, 3rem) !important;
        }
      }

      /* Keep section rhythm close to the live site while preserving compact card sizing */
      .speaker-showcase,
      .impact-showcase,
      .vods,
      .mission-showcase,
      .hub-section,
      .sponsor-showcase {
        max-height: none !important;
        min-height: auto !important;
        overflow: visible !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
      }

      .speaker-showcase .section-header,
      .impact-showcase .section-header,
      .vods .section-header,
      .mission-showcase .section-header,
      .hub-section .section-header,
      .sponsor-showcase .section-header {
        margin-bottom: clamp(28px, 4vh, 48px) !important;
      }

      .speaker-showcase > .site-container,
      .impact-showcase > .site-container,
      .mission-showcase > .site-container,
      .hub-section > .site-container,
      .sponsor-showcase > .site-container,
      .vods-inner {
        margin-inline: auto !important;
        width: min(var(--page-shell, 1520px), calc(100% - 32px)) !important;
      }

      @media (min-width: 981px) {
        .speaker-showcase,
        .impact-showcase,
        .vods,
        .mission-showcase,
        .hub-section,
        .sponsor-showcase {
          align-items: center !important;
          display: flex !important;
          padding-block: clamp(64px, 9vh, 112px) !important;
        }

        .impact-showcase.section-frame,
        .mission-showcase.section-frame {
          padding-top: clamp(64px, 9vh, 112px) !important;
          padding-bottom: clamp(64px, 9vh, 112px) !important;
        }

        .speaker-showcase > .site-container,
        .impact-showcase > .site-container,
        .mission-showcase > .site-container,
        .hub-section > .site-container,
        .sponsor-showcase > .site-container,
        .vods-inner {
          padding-left: var(--page-gutter, 60px) !important;
          padding-right: var(--page-gutter, 60px) !important;
        }

        .impact-layout,
        .vod-layout,
        .mission-rail,
        .hub-panels,
        .sponsor-grid {
          gap: clamp(14px, 1.8vw, 24px) !important;
        }

        .impact-stats-shell .impact-card {
          min-height: 150px !important;
          padding: 20px 18px 16px !important;
        }

        .impact-bottom-grid .impact-reel-section {
          align-self: stretch !important;
          height: auto !important;
          min-height: 320px !important;
          max-height: none !important;
        }

        .impact-bottom-grid .impact-feature-card,
        .impact-bottom-grid .impact-feature-media,
        .impact-bottom-grid .impact-reel-viewport {
          height: auto !important;
          min-height: 0 !important;
          max-height: none !important;
        }

        .impact-bottom-grid .impact-reel-slide {
          height: 100% !important;
          min-height: 100% !important;
        }

        .mission-rail {
          padding-top: 0 !important;
        }
      }

      @media (max-width: 980px) {
        .speaker-showcase,
        .impact-showcase,
        .vods,
        .mission-showcase,
        .hub-section,
        .sponsor-showcase {
          padding-top: clamp(28px, 7vw, 48px) !important;
          padding-bottom: clamp(28px, 7vw, 48px) !important;
        }

        .speaker-showcase > .site-container,
        .impact-showcase > .site-container,
        .mission-showcase > .site-container,
        .hub-section > .site-container,
        .sponsor-showcase > .site-container,
        .vods-inner {
          padding-left: 0 !important;
          padding-right: 0 !important;
        }

        .impact-layout,
        .impact-bottom-grid,
        .vod-layout,
        .mission-rail,
        .hub-panels,
        .sponsor-grid {
          gap: 16px !important;
        }

        .impact-stats-shell .impact-card {
          min-height: 0 !important;
          padding: 18px 16px !important;
        }

        .impact-bottom-grid .impact-reel-section {
          min-height: 360px !important;
        }

        .mission-rail {
          padding-top: 0 !important;
        }
      }

      /* Hero visibility fix: keep title clear of the fixed navigation */
      .brand-hero {
        min-height: auto !important;
        padding-top: calc(var(--header-height, 74px) + clamp(28px, 4vh, 52px)) !important;
        padding-bottom: clamp(24px, 4vh, 48px) !important;
        overflow: visible !important;
      }

      .brand-hero-shell {
        gap: clamp(20px, 3vh, 34px) !important;
        position: relative !important;
        z-index: 1 !important;
      }

      .brand-hero-top,
      .brand-hero-top > div {
        gap: clamp(12px, 2vh, 18px) !important;
        position: relative !important;
        z-index: 4 !important;
      }

      .brand-hero-title {
        margin: 0 auto !important;
        max-width: min(100%, 68rem) !important;
        line-height: 1.02 !important;
      }

      .brand-hero-title .title-line:first-child {
        font-size: clamp(24px, 2.6vw, 40px) !important;
      }

      .brand-hero-title .muted {
        font-size: clamp(34px, 4vw, 54px) !important;
      }

      .brand-hero-copy {
        margin-top: 0 !important;
      }

      .brand-hero-cta {
        margin-top: 0 !important;
      }

      .brand-marquee-viewport {
        padding-top: 0.25rem !important;
      }

      .brand-marquee-shell {
        position: relative !important;
        z-index: 1 !important;
      }

      @media (max-width: 980px) {
        .brand-hero {
          padding-top: calc(var(--header-height, 64px) + 24px) !important;
        }

        .brand-hero-title .title-line:first-child {
          font-size: clamp(22px, 6vw, 30px) !important;
        }

        .brand-hero-title .muted {
          font-size: clamp(28px, 8vw, 38px) !important;
        }
      }

      @media (max-height: 760px) and (min-width: 981px) {
        .brand-hero {
          padding-top: calc(var(--header-height, 74px) + 18px) !important;
          padding-bottom: 24px !important;
        }

        .brand-hero-shell {
          gap: 16px !important;
        }

        .brand-hero-top,
        .brand-hero-top > div {
          gap: 10px !important;
        }

        .brand-hero-title .title-line:first-child {
          font-size: clamp(22px, 2.2vw, 32px) !important;
        }

        .brand-hero-title .muted {
          font-size: clamp(30px, 3.4vw, 46px) !important;
        }

        .brand-hero-copy {
          font-size: 14px !important;
          line-height: 1.35 !important;
        }

        .brand-primary-cta,
        .brand-secondary-cta {
          min-height: 46px !important;
          padding-inline: 22px !important;
        }

        .brand-marquee-viewport {
          padding-bottom: 0.75rem !important;
        }

        .brand-marquee-track .event-journey-card {
          flex-basis: clamp(23rem, 31vw, 31rem) !important;
        }

        .ev-ticket-card {
          transform: none !important;
        }
      }

      @media (max-height: 620px) and (min-width: 981px) {
        .brand-hero {
          padding-top: calc(var(--header-height, 74px) + 12px) !important;
        }

        .brand-hero-title .title-line:first-child {
          font-size: clamp(20px, 2vw, 28px) !important;
        }

        .brand-hero-title .muted {
          font-size: clamp(28px, 3vw, 40px) !important;
        }

        .brand-hero-copy {
          display: none !important;
        }

        .brand-marquee-track .event-journey-card {
          flex-basis: clamp(20rem, 28vw, 28rem) !important;
        }
      }

      @media (max-height: 620px) and (max-width: 980px) {
        .brand-hero {
          padding-top: calc(var(--header-height, 64px) + 14px) !important;
          padding-bottom: 20px !important;
        }

        .brand-hero-shell {
          gap: 14px !important;
        }

        .brand-hero-top,
        .brand-hero-top > div {
          gap: 8px !important;
        }

        .brand-hero-title .title-line:first-child {
          font-size: clamp(18px, 5vw, 24px) !important;
        }

        .brand-hero-title .muted {
          font-size: clamp(24px, 7vw, 32px) !important;
        }

        .brand-hero-copy {
          display: none !important;
        }

        .brand-hero-cta {
          gap: 8px !important;
        }

        .brand-primary-cta,
        .brand-secondary-cta {
          min-height: 40px !important;
        }
      }

      /* Hero carousel: standardize every event card to the simple poster card size */
      .brand-hero .brand-marquee-track {
        align-items: stretch !important;
      }

      .brand-hero .brand-marquee-card,
      .brand-hero .brand-marquee-track .event-journey-card,
      .brand-hero .ev-ticket-card,
      .brand-hero .ev-current-card,
      .brand-hero .event-future-card {
        aspect-ratio: 3 / 2 !important;
        flex: 0 0 clamp(24rem, 31vw, 30rem) !important;
        height: auto !important;
        min-height: 0 !important;
        transform: none !important;
        width: clamp(24rem, 31vw, 30rem) !important;
      }

      .brand-hero .brand-marquee-track .ev-recap-card {
        aspect-ratio: 3 / 2 !important;
        flex: 0 0 clamp(24rem, 31vw, 30rem) !important;
        height: auto !important;
        min-height: 0 !important;
        transform: none !important;
        width: clamp(24rem, 31vw, 30rem) !important;
      }

      /* ── Active-state ring: consistent across ALL hero carousel cards ── */
      /* City / future cards already get ring on .brand-marquee-media from base CSS.
         Recap card has no .brand-marquee-media, so apply outline to the card itself. */
      .brand-hero .brand-marquee-track .ev-recap-card.is-active {
        outline: 3px solid rgba(16, 32, 111, 0.95) !important;
        outline-offset: 0 !important;
      }

      /* Block the lift-translate on ALL city cards in hero (ring only, no lift) */
      .brand-hero .brand-marquee-card--city.is-active {
        transform: none !important;
      }

      .brand-hero .ev-recap-card {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
          #f8fbff !important;
        display: grid !important;
        position: relative !important;
        box-shadow: 0 0.8rem 1.8rem rgba(15, 27, 109, 0.1) !important;
      }

      .brand-hero .ev-recap-video {
        background: #050711 !important;
        border: 0 !important;
        border-radius: 0.75rem !important;
        box-shadow:
          0 1rem 2.4rem rgba(15, 27, 109, 0.24),
          0 0 0 1px rgba(255, 255, 255, 0.62) !important;
        cursor: pointer !important;
        display: block !important;
        height: min(86%, 18rem) !important;
        left: 50% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: min(42%, 12.5rem) !important;
        z-index: 7 !important;
      }

      .brand-hero .ev-recap-video:hover .ev-recap-play {
        transform: translate(-50%, -50%) scale(1.05) !important;
      }

      .brand-hero .ev-recap-video video {
        display: block !important;
        height: 100% !important;
        object-fit: cover !important;
        width: 100% !important;
      }

      .brand-hero .ev-recap-video::after {
        background:
          linear-gradient(180deg, rgba(7, 10, 24, 0), rgba(7, 10, 24, 0.72)),
          linear-gradient(90deg, rgba(255, 79, 163, 0.12), transparent 48%) !important;
        content: "" !important;
        inset: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: 1 !important;
      }

      .brand-hero .ev-recap-play {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 2px solid rgba(255, 255, 255, 0.72) !important;
        color: #ff4fa3 !important;
        display: inline-flex !important;
        height: 3.6rem !important;
        transition: transform 180ms var(--ease-out) !important;
        width: 3.6rem !important;
        z-index: 3 !important;
      }

      .brand-hero .ev-recap-duration {
        background: rgba(15, 27, 109, 0.78) !important;
        display: inline-flex !important;
        left: auto !important;
        right: 0.6rem !important;
        top: 0.6rem !important;
        z-index: 4 !important;
      }

      .brand-hero .ev-agenda-cta {
        align-items: center !important;
        background: rgba(255, 255, 255, 0.94) !important;
        border: 1px solid rgba(16, 32, 111, 0.12) !important;
        border-radius: 999px !important;
        bottom: auto !important;
        box-shadow: 0 0.7rem 1.4rem rgba(15, 27, 109, 0.14) !important;
        color: #10206f !important;
        display: inline-flex !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.82rem !important;
        font-weight: 900 !important;
        gap: 0.4rem !important;
        left: auto !important;
        line-height: 1 !important;
        min-height: 2.35rem !important;
        padding: 0 0.85rem !important;
        position: absolute !important;
        right: 0.85rem !important;
        text-decoration: none !important;
        top: 0.85rem !important;
        transition: transform 160ms var(--ease-out), background 160ms var(--ease-out) !important;
        z-index: 8 !important;
      }

      .brand-hero .ev-agenda-cta:hover {
        background: #ffffff !important;
        transform: translateY(-2px) !important;
      }

      .brand-hero .ev-agenda-cta:active {
        transform: scale(0.97) !important;
      }

      .brand-hero .ev-agenda-cta .material-symbols-outlined {
        font-size: 1rem !important;
        font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 20 !important;
      }

      .video-lightbox-frame video {
        background: #000 !important;
        display: block !important;
        height: 100% !important;
        object-fit: contain !important;
        width: 100% !important;
      }

      @media (max-width: 900px) {
        .video-lightbox {
          padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom)) !important;
        }

        .video-lightbox.is-file-video .video-lightbox-panel {
          background: transparent !important;
          border-radius: 0 !important;
          box-shadow: none !important;
          max-height: calc(100svh - 1.5rem) !important;
          max-width: calc(100vw - 1.5rem) !important;
          overflow: visible !important;
          width: min(calc(100vw - 1.5rem), calc((100svh - 1.5rem) * 9 / 16)) !important;
        }

        .video-lightbox.is-file-video .video-lightbox-frame {
          aspect-ratio: 9 / 16 !important;
          background: transparent !important;
          border-radius: 0 !important;
          height: min(88svh, calc((100vw - 1.5rem) * 16 / 9)) !important;
          max-height: calc(100svh - 1.5rem) !important;
          overflow: visible !important;
          width: 100% !important;
        }

        .video-lightbox.is-file-video .video-lightbox-frame video {
          background: #000000 !important;
          display: block !important;
          height: 100% !important;
          object-fit: contain !important;
          width: 100% !important;
        }

        .video-lightbox.is-file-video .video-lightbox-tap-layer {
          -webkit-tap-highlight-color: transparent !important;
          appearance: none !important;
          background: transparent !important;
          border: 0 !important;
          border-radius: 0 !important;
          bottom: 4.75rem !important;
          box-shadow: none !important;
          cursor: pointer !important;
          display: block !important;
          left: 0 !important;
          outline: none !important;
          padding: 0 !important;
          position: absolute !important;
          right: 0 !important;
          top: 0 !important;
          z-index: 1 !important;
        }

        .video-lightbox.is-file-video .video-lightbox-close {
          right: 0.55rem !important;
          top: 0.55rem !important;
          z-index: 2 !important;
        }
      }

      .brand-hero .brand-marquee-media,
      .brand-hero .ev-current-card .brand-marquee-media,
      .brand-hero .event-future-card .brand-marquee-media {
        aspect-ratio: auto !important;
        flex: none !important;
        height: 100% !important;
        width: 100% !important;
      }

      .brand-hero .brand-marquee-card--main-poster .brand-marquee-media img,
      .brand-hero .brand-marquee-media img {
        height: 100% !important;
        object-fit: contain !important;
        width: 100% !important;
      }

      .brand-hero .ev-recap-location,
      .brand-hero .ev-recap-title {
        position: absolute !important;
        z-index: 4 !important;
      }

      .brand-hero .ev-recap-location {
        align-items: center !important;
        background: #ff4fa3 !important;
        border-radius: 999px !important;
        bottom: 3.05rem !important;
        color: #ffffff !important;
        display: inline-flex !important;
        font-size: 0.68rem !important;
        font-weight: 900 !important;
        gap: 0.24rem !important;
        left: 0.75rem !important;
        min-height: 1.55rem !important;
        padding: 0 0.56rem !important;
      }

      .brand-hero .ev-recap-location .material-symbols-outlined {
        font-size: 0.88rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20 !important;
      }

      .brand-hero .ev-recap-title {
        bottom: 0.78rem !important;
        color: #ffffff !important;
        font-family: "Manrope", "Inter", system-ui, sans-serif !important;
        font-size: clamp(0.88rem, 1.25vw, 1.05rem) !important;
        font-weight: 900 !important;
        left: 0.78rem !important;
        line-height: 1.16 !important;
        margin: 0 !important;
        max-width: calc(100% - 1.5rem) !important;
        text-align: left !important;
        text-shadow: 0 0.25rem 0.8rem rgba(0, 0, 0, 0.36) !important;
      }

      .brand-hero .ev-info-panel {
        border-bottom-left-radius: 0.75rem !important;
        padding: 0.5rem 0.7rem !important;
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        width: auto !important;
      }

      .brand-hero .ev-current-card {
        border: 2px solid rgba(16, 32, 111, 0.95) !important;
        box-shadow:
          0 0 0 3px rgba(255, 255, 255, 0.92),
          0 1rem 2.4rem rgba(16, 32, 111, 0.18) !important;
      }

      .brand-hero .event-future-card,
      .brand-hero .brand-marquee-card--city:not(.event-future-card) {
        border: 1px solid rgba(16, 32, 111, 0.1) !important;
        box-shadow: 0 0.7rem 1.6rem rgba(16, 32, 111, 0.08) !important;
      }

      .brand-hero .event-future-card .brand-marquee-media img,
      .brand-hero .brand-marquee-card--city:not(.event-future-card) .brand-marquee-media img {
        filter: saturate(0.92) contrast(0.98) !important;
      }

      .brand-hero .journey-badge {
        min-height: 2rem !important;
        padding: 0.55rem 0.72rem !important;
      }

      .brand-hero .journey-badge--recap {
        background: #ff4fa3 !important;
        box-shadow: 0 0.6rem 1.4rem rgba(255, 79, 163, 0.24) !important;
        left: 0.85rem !important;
        top: 0.85rem !important;
      }

      /* Countdown: compact "45 HARI LAGI" layout */
      .brand-hero .ev-cdown-block {
        align-items: center !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: flex-start !important;
      }

      .brand-hero .ev-cdown-label {
        display: none !important;
      }

      .brand-hero .ev-cdown-units {
        display: none !important;
      }

      .brand-hero .ev-cdown-num {
        color: #ffffff !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 2.4rem !important;
        font-weight: 900 !important;
        letter-spacing: -0.04em !important;
        line-height: 1 !important;
        min-width: 0 !important;
      }

      .brand-hero .ev-cdown-suffix {
        color: rgba(255, 255, 255, 0.82) !important;
        display: flex !important;
        flex-direction: column !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.68rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.07em !important;
        line-height: 1.3 !important;
        text-transform: uppercase !important;
      }

      /* "Terima kasih" text in recap left panel */
      .brand-hero .ev-recap-thanks {
        color: rgba(255, 255, 255, 0.78) !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.7rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        margin: 0 !important;
        text-align: center !important;
      }

      .brand-hero .ev-recap-thanks strong {
        color: #ffffff !important;
        display: block !important;
        font-size: 0.82rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.01em !important;
      }

      /* ══ RECAP CARD: 35/65 split — official event archive ══════════════ */

      /* Card shell — same 3/2 aspect ratio + width as sibling cards */
      .brand-hero .brand-marquee-track .ev-recap-card {
        align-self: flex-start !important;
        aspect-ratio: 3 / 2 !important;
        background: #ffffff !important;
        border: 1px solid rgba(255, 79, 163, 0.2) !important;
        border-radius: 22px !important;
        box-shadow: 0 8px 32px rgba(16, 32, 111, 0.12), 0 2px 8px rgba(16, 32, 111, 0.06) !important;
        display: grid !important;
        flex: 0 0 clamp(24rem, 31vw, 30rem) !important;
        flex-direction: unset !important;
        gap: 0 !important;
        grid-template-columns: 35% 65% !important;
        grid-template-rows: 1fr !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: relative !important;
        transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out) !important;
        width: clamp(24rem, 31vw, 30rem) !important;
      }

      /* ── LEFT PANEL: navy-to-pink gradient ──────────────────────────── */

      .brand-hero .ev-recap-left {
        background: linear-gradient(155deg, #0d1960 0%, #10206f 45%, #3a0f50 100%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        justify-content: space-between !important;
        overflow: hidden !important;
        padding: 1.1rem 1rem !important;
        position: relative !important;
      }

      /* Soft radial glows */
      .brand-hero .ev-recap-left::before {
        background: radial-gradient(ellipse at 15% 20%, rgba(255, 79, 163, 0.3) 0%, transparent 60%) !important;
        content: "" !important;
        inset: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: 0 !important;
      }

      .brand-hero .ev-recap-left::after {
        background: radial-gradient(ellipse at 80% 90%, rgba(255, 79, 163, 0.16) 0%, transparent 50%) !important;
        content: "" !important;
        inset: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: 0 !important;
      }

      /* Inner: centered */
      .brand-hero .ev-recap-left-inner {
        align-items: center !important;
        display: flex !important;
        flex: 1 1 0 !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        min-height: 0 !important;
        position: relative !important;
        text-align: center !important;
        z-index: 1 !important;
      }

      /* Pink circular icon badge — centered, slightly larger as the focal point */
      .brand-hero .ev-recap-status-icon {
        align-items: center !important;
        background: #ff4fa3 !important;
        border-radius: 999px !important;
        box-shadow: 0 4px 16px rgba(255, 79, 163, 0.5) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        height: 2.5rem !important;
        justify-content: center !important;
        margin-bottom: 0.1rem !important;
        width: 2.5rem !important;
      }

      .brand-hero .ev-recap-status-icon .material-symbols-outlined {
        font-size: 1.35rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24 !important;
      }

      /* Bold uppercase heading */
      .brand-hero .ev-recap-heading {
        color: #ffffff !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: clamp(0.78rem, 1vw, 0.95rem) !important;
        font-weight: 900 !important;
        letter-spacing: 0.09em !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        text-transform: uppercase !important;
      }

      .brand-hero .ev-recap-heading span {
        display: block !important;
      }

      /* Location */
      .brand-hero .ev-recap-city-info {
        margin-top: 0.05rem !important;
        position: relative !important;
        z-index: 1 !important;
      }

      .brand-hero .ev-recap-city-name {
        align-items: center !important;
        color: rgba(255, 255, 255, 0.88) !important;
        display: flex !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        gap: 0.2rem !important;
        letter-spacing: 0.02em !important;
      }

      .brand-hero .ev-recap-city-name .material-symbols-outlined {
        color: #ff4fa3 !important;
        flex-shrink: 0 !important;
        font-size: 0.82rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20 !important;
      }

      .brand-hero .ev-recap-venue {
        color: rgba(255, 255, 255, 0.52) !important;
        display: block !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.65rem !important;
        font-weight: 500 !important;
        margin-top: 0.1rem !important;
        padding-left: 1.02rem !important;
      }

      /* Lihat Agenda CTA — white bg, pink border, full width */
      .brand-hero .ev-recap-left .ev-agenda-cta {
        align-items: center !important;
        background: #ffffff !important;
        border: 1.5px solid #ff4fa3 !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        color: #ff4fa3 !important;
        display: flex !important;
        flex-direction: row !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        gap: 0.32rem !important;
        height: auto !important;
        justify-content: center !important;
        letter-spacing: 0.01em !important;
        min-height: 34px !important;
        padding: 0 0.65rem !important;
        position: relative !important;
        text-decoration: none !important;
        transition: background 160ms var(--ease-out), box-shadow 160ms var(--ease-out) !important;
        width: 100% !important;
        z-index: 1 !important;
      }

      .brand-hero .ev-recap-left .ev-agenda-cta:hover {
        background: rgba(255, 79, 163, 0.08) !important;
        box-shadow: 0 4px 14px rgba(255, 79, 163, 0.18) !important;
        transform: none !important;
      }

      .brand-hero .ev-recap-left .ev-agenda-cta .material-symbols-outlined {
        flex-shrink: 0 !important;
        font-size: 0.9rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20 !important;
        margin-bottom: 0 !important;
      }

      /* ── RIGHT PANEL: video thumbnail ───────────────────────────────── */

      .brand-hero .ev-recap-video {
        aspect-ratio: unset !important;
        background: #071026 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        cursor: default !important;
        display: block !important;
        flex: unset !important;
        height: 100% !important;
        left: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        pointer-events: auto !important;
        position: relative !important;
        top: auto !important;
        transform: none !important;
        -webkit-user-drag: none !important;
        width: 100% !important;
        z-index: 2 !important;
      }

      /* Override external stylesheet's cursor: grab on the hero marquee */
      .brand-hero .brand-marquee-viewport {
        cursor: default !important;
      }

      .brand-hero .ev-recap-card {
        cursor: pointer !important;
        -webkit-user-drag: none !important;
        user-select: none !important;
      }

      /* Portrait video fills panel via cover-crop */
      .brand-hero .ev-recap-video iframe,
      .brand-hero .ev-recap-video video,
      .brand-hero .ev-recap-video img {
        border: 0 !important;
        display: block !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        pointer-events: none !important;
        -webkit-user-drag: none !important;
        transition: transform 240ms var(--ease-out) !important;
        width: 100% !important;
      }

      /* All overlaid elements non-interactive */
      .brand-hero .ev-recap-video .journey-badge,
      .brand-hero .ev-recap-video .ev-recap-location,
      .brand-hero .ev-recap-video .ev-recap-play,
      .brand-hero .ev-recap-video .ev-recap-duration {
        pointer-events: none !important;
      }

      /* Subtle dark gradient from bottom */
      .brand-hero .ev-recap-video::after {
        background: linear-gradient(180deg, transparent 40%, rgba(7, 10, 24, 0.58) 100%) !important;
        content: "" !important;
        inset: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        transition: background 200ms var(--ease-out) !important;
        z-index: 1 !important;
      }

      /* RECAP badge — top left */
      .brand-hero .journey-badge--recap {
        background: #ff4fa3 !important;
        border-radius: 8px !important;
        color: #ffffff !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.68rem !important;
        font-weight: 800 !important;
        left: 10px !important;
        letter-spacing: 0.07em !important;
        min-height: 26px !important;
        padding: 0 0.65rem !important;
        pointer-events: none !important;
        position: absolute !important;
        text-transform: uppercase !important;
        top: 10px !important;
        z-index: 4 !important;
      }

      /* Large floating play button — centered */
      .brand-hero .ev-recap-play {
        align-items: center !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: none !important;
        border-radius: 999px !important;
        box-shadow: 0 8px 28px rgba(16, 32, 111, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12) !important;
        color: #ff4fa3 !important;
        display: inline-flex !important;
        height: 3.5rem !important;
        justify-content: center !important;
        left: 50% !important;
        pointer-events: none !important;
        position: absolute !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out) !important;
        width: 3.5rem !important;
        z-index: 4 !important;
      }

      .brand-hero .ev-recap-play .material-symbols-outlined {
        font-size: 1.9rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24 !important;
        margin-left: 0.1rem !important;
      }

      /* Location label — bottom-left overlay */
      .brand-hero .ev-recap-location {
        align-items: center !important;
        background: transparent !important;
        border-radius: 0 !important;
        bottom: 0.7rem !important;
        color: rgba(255, 255, 255, 0.92) !important;
        display: inline-flex !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        gap: 0.22rem !important;
        left: 0.7rem !important;
        letter-spacing: 0.02em !important;
        line-height: 1 !important;
        min-height: 0 !important;
        padding: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55) !important;
        z-index: 4 !important;
      }

      .brand-hero .ev-recap-location .material-symbols-outlined {
        color: #ff4fa3 !important;
        font-size: 0.85rem !important;
        font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 20 !important;
      }

      /* Duration badge — bottom-right */
      .brand-hero .ev-recap-duration {
        background: rgba(0, 0, 0, 0.52) !important;
        border-radius: 6px !important;
        bottom: 0.7rem !important;
        color: #ffffff !important;
        font-family: "Inter", "Manrope", system-ui, sans-serif !important;
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.03em !important;
        padding: 0.18rem 0.5rem !important;
        pointer-events: none !important;
        position: absolute !important;
        right: 0.7rem !important;
        top: auto !important;
        z-index: 4 !important;
      }

      /* Card hover: lift + video scale + overlay darkens + play grows */
      @media (hover: hover) and (pointer: fine) {
        .brand-hero .ev-recap-card:hover {
          border-color: rgba(255, 79, 163, 0.38) !important;
          box-shadow: 0 16px 52px rgba(16, 32, 111, 0.18), 0 4px 16px rgba(16, 32, 111, 0.08) !important;
          transform: translateY(-3px) !important;
        }

        .brand-hero .ev-recap-video:hover iframe,
        .brand-hero .ev-recap-video:hover video,
        .brand-hero .ev-recap-video:hover img,
        .brand-hero .ev-recap-card:hover .ev-recap-video iframe,
        .brand-hero .ev-recap-card:hover .ev-recap-video video,
        .brand-hero .ev-recap-card:hover .ev-recap-video img {
          transform: scale(1.03) !important;
        }

        .brand-hero .ev-recap-video:hover::after,
        .brand-hero .ev-recap-card:hover .ev-recap-video::after {
          background: linear-gradient(180deg, transparent 28%, rgba(7, 10, 24, 0.72) 100%) !important;
        }

        .brand-hero .ev-recap-video:hover .ev-recap-play,
        .brand-hero .ev-recap-card:hover .ev-recap-play {
          box-shadow: 0 12px 36px rgba(16, 32, 111, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
          transform: translate(-50%, -50%) scale(1.09) !important;
        }
      }

      /* Recap card: inline video player */
      .brand-hero .ev-recap-video .video-wrapper {
        inset: 0 !important;
        overflow: hidden !important;
        pointer-events: auto !important;
        position: absolute !important;
        touch-action: none !important;
      }
      .brand-hero .ev-recap-video .video-wrapper video {
        background: #000 !important;
        border: 0 !important;
        display: block !important;
        height: 100% !important;
        inset: 0 !important;
        object-fit: cover !important;
        pointer-events: auto !important;
        position: absolute !important;
        width: 100% !important;
      }
      .brand-hero .ev-recap-video .rcc-overlay {
        align-items: center;
        background: linear-gradient(transparent 0%, rgba(5,7,17,.82) 100%);
        bottom: 0;
        display: flex;
        gap: .4rem;
        left: 0;
        opacity: 0;
        padding: .8rem .6rem .48rem;
        pointer-events: none;
        position: absolute;
        right: 0;
        touch-action: none;
        transition: opacity .22s;
        z-index: 6;
      }
      .brand-hero .ev-recap-video .video-wrapper:hover .rcc-overlay,
      .brand-hero .ev-recap-video .video-wrapper.rcc-active .rcc-overlay {
        opacity: 1;
        pointer-events: auto;
      }
      @media (hover: none) {
        .brand-hero .ev-recap-video .rcc-overlay { opacity: 1; pointer-events: auto; }
      }
      @media (max-width: 900px) {
        .brand-hero .ev-recap-video .rcc-overlay {
          display: grid !important;
          gap: .38rem .55rem !important;
          grid-template-columns: auto minmax(0, 1fr) auto auto !important;
          padding: .75rem .7rem .58rem !important;
          opacity: 1 !important;
          pointer-events: auto !important;
        }
        .brand-hero .ev-recap-video .rcc-bar {
          grid-column: 1 / -1 !important;
          grid-row: 1 !important;
          min-width: 100% !important;
          padding: .25rem 0 !important;
        }
        .brand-hero .ev-recap-video .rcc-track {
          height: 4px !important;
        }
        .brand-hero .ev-recap-video .rcc-play {
          grid-column: 1 !important;
          grid-row: 2 !important;
        }
        .brand-hero .ev-recap-video .rcc-time {
          align-self: center !important;
          font-size: .62rem !important;
          grid-column: 2 !important;
          grid-row: 2 !important;
          min-width: 0 !important;
          overflow: hidden !important;
          text-overflow: ellipsis !important;
        }
        .brand-hero .ev-recap-video .rcc-mute {
          grid-column: 3 !important;
          grid-row: 2 !important;
        }
        .brand-hero .ev-recap-video .rcc-fs {
          grid-column: 4 !important;
          grid-row: 2 !important;
        }
        .brand-hero .ev-recap-video .rcc-overlay {
          display: none !important;
        }
        .brand-hero .ev-recap-video .video-wrapper {
          cursor: pointer !important;
        }
      }
      .brand-hero .ev-recap-video .rcc-btn {
        align-items: center;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        padding: .15rem;
        pointer-events: auto;
        touch-action: manipulation;
        transition: opacity .14s;
      }
      .brand-hero .ev-recap-video .rcc-btn:hover { opacity: .75; }
      .brand-hero .ev-recap-video .rcc-btn .material-symbols-outlined { font-size: 1.35rem; line-height: 1; }
      .brand-hero .ev-recap-video .rcc-bar {
        cursor: pointer;
        flex: 1;
        padding: .3rem 0;
        pointer-events: auto;
        touch-action: none;
      }
      .brand-hero .ev-recap-video .rcc-track {
        background: rgba(255,255,255,.28);
        border-radius: 999px;
        height: 3px;
        overflow: hidden;
      }
      .brand-hero .ev-recap-video .rcc-fill {
        background: #ff4fa3;
        border-radius: 999px;
        height: 100%;
        pointer-events: none;
        width: 0%;
      }
      .brand-hero .ev-recap-video .rcc-time {
        color: rgba(255,255,255,.78);
        flex-shrink: 0;
        font-family: "Inter", system-ui, sans-serif;
        font-size: .58rem;
        font-weight: 700;
        letter-spacing: .025em;
        white-space: nowrap;
      }

      /* Mobile: restore aspect-ratio on video panel (single-column grid, no row height from parent) */
      @media (max-width: 900px) {
        .brand-hero .ev-recap-video {
          aspect-ratio: 9 / 12 !important;
          height: auto !important;
        }
      }

      /* Hero event navigation: one selected card = one active highlight */
      .brand-hero .brand-marquee-viewport {
        scroll-padding-inline: 50% !important;
        scroll-snap-type: x mandatory !important;
      }

      .brand-hero .brand-marquee-track::before,
      .brand-hero .brand-marquee-track::after {
        content: "" !important;
        display: block !important;
        flex: 0 0 max(16px, calc((100vw - clamp(24rem, 31vw, 30rem)) / 2)) !important;
        pointer-events: none !important;
      }

      .brand-hero .brand-marquee-track .brand-marquee-card {
        cursor: pointer !important;
        opacity: 0.86 !important;
        pointer-events: auto !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        transform: none !important;
        transition:
          border-color 200ms var(--ease-out),
          box-shadow 200ms var(--ease-out),
          opacity 200ms var(--ease-out),
          transform 200ms var(--ease-out) !important;
      }

      .brand-hero .brand-marquee-track .ev-current-card,
      .brand-hero .brand-marquee-track .event-future-card,
      .brand-hero .brand-marquee-track .brand-marquee-card--city:not(.event-future-card) {
        border: 1px solid rgba(16, 32, 111, 0.1) !important;
        box-shadow: 0 0.7rem 1.6rem rgba(16, 32, 111, 0.08) !important;
      }

      .brand-hero .brand-marquee-track .brand-marquee-card.is-active {
        border-color: rgba(16, 32, 111, 0.95) !important;
        box-shadow:
          0 0 0 3px rgba(16, 32, 111, 0.95),
          0 1rem 2.4rem rgba(16, 32, 111, 0.18) !important;
        opacity: 1 !important;
        outline: 0 !important;
        transform: none !important;
      }

      .brand-hero .brand-marquee-track .brand-marquee-card.is-active .brand-marquee-media {
        box-shadow: none !important;
      }

      @media (hover: hover) and (pointer: fine) {
        .brand-hero .brand-marquee-track .brand-marquee-card:not(.is-active):hover {
          border-color: rgba(255, 79, 163, 0.26) !important;
          box-shadow: 0 1rem 2rem rgba(16, 32, 111, 0.12) !important;
          opacity: 1 !important;
          transform: translateY(-2px) !important;
        }
      }

      @media (max-width: 520px) {
        .brand-hero .ev-recap-buttons {
          grid-template-columns: 1fr !important;
        }
      }

      @media (max-height: 760px) and (min-width: 981px) {
        .brand-hero .brand-marquee-card,
        .brand-hero .brand-marquee-track .event-journey-card,
        .brand-hero .ev-ticket-card,
        .brand-hero .ev-recap-card,
        .brand-hero .ev-current-card,
        .brand-hero .event-future-card {
          flex-basis: clamp(21rem, 28vw, 27rem) !important;
          width: clamp(21rem, 28vw, 27rem) !important;
        }
      }

      @media (max-width: 900px) {
        .brand-hero .brand-marquee-track::before,
        .brand-hero .brand-marquee-track::after {
          flex-basis: max(16px, calc((100vw - min(calc(100vw - 32px), 30rem)) / 2)) !important;
        }

        .brand-hero .brand-marquee-card,
        .brand-hero .brand-marquee-track .event-journey-card,
        .brand-hero .ev-ticket-card,
        .brand-hero .ev-recap-card,
        .brand-hero .ev-current-card,
        .brand-hero .event-future-card {
          flex-basis: min(calc(100vw - 32px), 30rem) !important;
          order: 0 !important;
          width: min(calc(100vw - 32px), 30rem) !important;
        }
      }

/* ── Agenda KL page ──────────────────────────────────── */
  .ms { font-family:"Material Symbols Outlined"; font-variation-settings:'FILL' 0,'wght' 600,'GRAD' 0,'opsz' 24; user-select:none; }
  .ms.fill { font-variation-settings:'FILL' 1,'wght' 600,'GRAD' 0,'opsz' 24; }
  .glass { background:rgba(255,255,255,.82); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); }
  .fade-in { opacity:0; transform:translateY(20px); transition:opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
  .fade-in.in { opacity:1; transform:none; }

  /* Category pills */
  .pill { display:inline-flex; align-items:center; border-radius:999px; font-size:11px; font-weight:700; letter-spacing:.08em; padding:4px 12px; text-transform:uppercase; }
  .pill-utama    { background:#fce7f0; color:#c2185b; border:1px solid rgba(255,79,163,.25); }
  .pill-podcast  { background:#e8edff; color:#10206f; border:1px solid rgba(47,75,230,.18); }
  .pill-aktiviti { background:#e6faf0; color:#1a6b45; border:1px solid rgba(26,107,69,.18); }
  .pill-vendor   { background:#fff3e0; color:#b45309; border:1px solid rgba(180,83,9,.18); }
  .pill-hiburan  { background:#f3e8ff; color:#6b21a8; border:1px solid rgba(107,33,168,.18); }
  .pill-penutup  { background:#e5e7eb; color:#374151; border:1px solid rgba(55,65,81,.15); }

  /* Speaker modal */
  #speaker-modal {
    display:none;
    inset:0;
    overscroll-behavior:contain;
    position:fixed;
    touch-action:none;
    z-index:200;
  }
  #speaker-modal.open { display:flex; }
  #speaker-modal-backdrop { position:absolute; inset:0; background:rgba(16,32,111,.45); backdrop-filter:blur(6px); }
  #speaker-modal-card {
    position:relative; z-index:1; margin:auto; background:#fff;
    border-radius:1.75rem; box-shadow:0 2rem 6rem rgba(16,32,111,.24);
    max-width:38rem; width:calc(100% - 2rem); max-height:90dvh; overflow-y:auto;
    animation:popIn .28s cubic-bezier(.2,.8,.2,1);
    overscroll-behavior:contain;
    touch-action:pan-y;
    -webkit-overflow-scrolling:touch;
  }
  html.modal-scroll-lock,
  body.modal-scroll-lock {
    overflow:hidden !important;
    overscroll-behavior:none;
  }
  @keyframes popIn { from{opacity:0;transform:scale(.95) translateY(1rem)} to{opacity:1;transform:none} }

  /* Moving glow sweep on Daftar Sekarang button */
  .nav-register-cta {
    position: relative;
    overflow: hidden;
    animation: none !important; /* kill any pulse */
  }
  .nav-register-cta::before {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0) 20%,
      rgba(255,255,255,0.45) 50%,
      rgba(255,255,255,0) 80%,
      transparent 100%
    );
    animation: btnGlowSweep 2.4s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes btnGlowSweep {
    0%   { left: -75%; opacity: 0; }
    10%  { opacity: 1; }
    60%  { left: 130%; opacity: 1; }
    61%  { opacity: 0; }
    100% { left: 130%; opacity: 0; }
  }

  ::-webkit-scrollbar{width:5px}
  ::-webkit-scrollbar-track{background:#fbf8ff}
  ::-webkit-scrollbar-thumb{background:#10206f33;border-radius:5px}

  /* FAQ accordion */
  .faq-item { border:1px solid rgba(16,32,111,.12); border-radius:1rem; overflow:hidden; background:#fff; }
  .faq-summary {
    list-style:none; cursor:pointer; padding:1.1rem 1.25rem;
    font-weight:700; font-size:.95rem; color:#10206f;
    display:flex; justify-content:space-between; align-items:center; gap:1rem;
    user-select:none;
  }
  .faq-summary::-webkit-details-marker { display:none; }
  .faq-summary::after {
    content:"add"; font-family:"Material Symbols Outlined"; font-size:1.2rem;
    color:#767682; flex-shrink:0; transition:transform .2s;
  }
  details[open] .faq-summary::after { content:"remove"; }
  .faq-body { padding:.1rem 1.25rem 1.1rem; font-size:.875rem; color:#49494f; line-height:1.65; }

  /* Fix: overflow-x:hidden on html/body from style.css breaks position:sticky.
     overflow-x:clip is visually identical but does not create a scroll container. */
  html, body { overflow-x: clip !important; }

  /* Agenda filter pills */
  .agenda-filter {
    border:1px solid rgba(16,32,111,.12); border-radius:999px; color:#10206f; cursor:pointer;
    font:inherit; font-size:.74rem; font-weight:900; min-height:2.25rem; padding:.48rem .78rem;
    transition:background .18s, color .18s, border-color .18s, transform .15s; white-space:nowrap; background:transparent;
  }
  .agenda-filter:hover, .agenda-filter.is-active {
    background:#10206f; border-color:#10206f; color:#fff; transform:translateY(-1px);
  }
  /* Mobile filter dropdown */
  /* Custom filter dropdown */
  #cfd-trigger {
    display:flex; align-items:center; justify-content:space-between; gap:.5rem;
    width:100%; padding:.65rem 1rem; border-radius:999px;
    background:#10206f; border:none; cursor:pointer;
    font-family:inherit; font-size:.82rem; font-weight:900; color:#fff; letter-spacing:.04em;
    box-shadow:0 2px 12px rgba(16,32,111,.2); user-select:none;
  }
  #cfd-trigger .cfd-arrow {
    transition:transform .25s cubic-bezier(.2,.8,.2,1); flex-shrink:0;
  }
  #cfd-trigger.open .cfd-arrow { transform:rotate(180deg); }
  #cfd-panel {
    display:none; position:absolute; left:0; right:0; top:calc(100% + 6px); z-index:100;
    background:#fff; border-radius:1.25rem;
    box-shadow:0 8px 32px rgba(16,32,111,.16); overflow:hidden;
    animation:popIn .2s cubic-bezier(.2,.8,.2,1);
  }
  #cfd-panel.open { display:block; }
  .cfd-option {
    display:flex; align-items:center; justify-content:space-between;
    padding:.75rem 1.1rem; font-family:inherit; font-size:.85rem; font-weight:700;
    color:#10206f; cursor:pointer; transition:background .15s; border:none; background:none; width:100%; text-align:left;
  }
  .cfd-option:hover { background:#f0f3ff; }
  .cfd-option.selected { background:#10206f; color:#fff; font-weight:900; }
  .cfd-option .cfd-check { opacity:0; }
  .cfd-option.selected .cfd-check { opacity:1; }
  /* Fade-edge wrapper for filter strip */
  .filter-strip-wrap {
    position:relative;
  }
  .filter-strip-wrap::after {
    content:"";
    position:absolute; top:0; right:0; bottom:0; width:3rem;
    background:linear-gradient(to right, transparent, var(--color-background,#f8f7ff));
    pointer-events:none;
  }
  #agenda-filters { scrollbar-width:none; }
  #agenda-filters::-webkit-scrollbar { display:none; }

  /* Share icon buttons */
  /* Share buttons — rounded square style */
  .shr-btn {
    width:46px; height:46px; border-radius:12px; border:none;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:transform .15s, opacity .15s;
    flex-shrink:0; text-decoration:none; color:#fff;
  }
  .shr-btn:hover { transform:scale(1.08); opacity:.9; }
  .shr-btn.shr-plus  { background:#10206f; color:#fff; }
  .shr-btn.shr-fb    { background:#e8edff; color:#10206f; }
  .shr-btn.shr-wa    { background:#e8edff; color:#10206f; }
  .shr-btn.shr-li    { background:#e8edff; color:#10206f; }
  .shr-btn.shr-copy  { background:#fde8e8; color:#E5302A; }
  .shr-btn.shr-copy.copied { background:#E5302A; color:#fff; }
  /* Share popup */
  #shr-popup {
    display:none; position:absolute; bottom:calc(100% + 10px); left:0; right:0; z-index:200;
    background:#fff; border-radius:1.25rem;
    box-shadow:0 8px 32px rgba(16,32,111,.18); padding:1rem;
    animation:popIn .2s cubic-bezier(.2,.8,.2,1);
  }
  #shr-popup.open { display:block; }
  .shr-popup-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:.75rem; }
  .shr-popup-item {
    display:flex; flex-direction:column; align-items:center; gap:.4rem;
    cursor:pointer; text-decoration:none;
    border:none; background:none; padding:.25rem; border-radius:.75rem;
    transition:background .15s;
  }
  .shr-popup-item:hover { background:#f5f5fa; }
  .shr-popup-icon {
    width:44px; height:44px; border-radius:12px;
    display:flex; align-items:center; justify-content:center; color:#fff;
    flex-shrink:0;
  }
  .shr-popup-label { font-size:.62rem; font-weight:700; color:#49494f; text-align:center; line-height:1.2; }
  @media (max-width:767px) {
    .footer-section {
      padding:2.5rem 1.25rem max(2rem, env(safe-area-inset-bottom)) !important;
    }
    .footer-section .site-container {
      padding-left:0 !important;
      padding-right:0 !important;
    }
    .footer-content {
      gap:1.6rem !important;
    }
    .footer-brand-row {
      align-items:flex-start;
      flex-direction:column;
      gap:.55rem !important;
    }
    .footer-divider {
      display:none;
    }
    .footer-columns {
      gap:1.4rem !important;
    }
    .footer-bottom {
      margin-left:1.25rem;
      margin-right:1.25rem;
      padding-bottom:max(.75rem, env(safe-area-inset-bottom));
      text-align:center;
    }
    #shr-popup {
      bottom:calc(100% + 8px);
      left:0;
      max-height:min(72vh, 420px);
      overflow-y:auto;
      right:0;
      -webkit-overflow-scrolling:touch;
    }
    .shr-popup-grid {
      grid-template-columns:repeat(3,1fr);
      gap:.7rem .55rem;
    }
  }
  @keyframes live-pulse { 0%,100%{opacity:1} 50%{opacity:.2} }

  /* Podcast rail */
  #podcast-rail {
    display:flex;
    gap:1rem;
    margin-left:-.25rem;
    margin-right:-.25rem;
    overflow-x:auto;
    overflow-y:hidden;
    padding:.25rem .25rem 1rem;
    scroll-padding-left:.25rem;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    touch-action:pan-x;
    -webkit-overflow-scrolling:touch;
  }
  #podcast-rail::-webkit-scrollbar {
    display:none;
  }
  .podcast-rail-wrap {
    position:relative;
  }
  .podcast-rail-wrap::after {
    display:none;
  }
  .podcast-card {
    background:#fff;
    border:1px solid rgba(16,32,111,.1);
    border-radius:1.45rem;
    box-shadow:0 .9rem 2.1rem rgba(16,32,111,.08);
    color:inherit;
    display:grid;
    flex:0 0 clamp(17rem, 27vw, 20.5rem);
    overflow:hidden;
    scroll-snap-align:start;
    text-decoration:none;
    transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  }
  .podcast-card:hover {
    border-color:rgba(255,79,163,.26);
    box-shadow:0 1.25rem 2.7rem rgba(16,32,111,.14);
    transform:translateY(-5px);
  }
  .podcast-thumb {
    aspect-ratio:16/9;
    background:#10206f;
    border:0;
    cursor:pointer;
    display:block;
    font:inherit;
    overflow:hidden;
    padding:0;
    position:relative;
    text-align:left;
    width:100%;
  }
  .podcast-thumb::after {
    background:linear-gradient(180deg, rgba(16,32,111,.02), rgba(16,32,111,.6));
    content:"";
    inset:0;
    position:absolute;
  }
  .podcast-thumb img {
    display:block;
    height:100%;
    object-fit:cover;
    transition:transform .36s cubic-bezier(.2,.8,.2,1);
    width:100%;
  }
  .podcast-card:hover .podcast-thumb img {
    transform:scale(1.045);
  }
  .podcast-play {
    align-items:center;
    background:rgba(255,255,255,.96);
    border-radius:999px;
    box-shadow:0 .8rem 1.8rem rgba(16,32,111,.18);
    color:#FF4FA3;
    display:flex;
    height:3.1rem;
    justify-content:center;
    left:50%;
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    transition:transform .22s ease;
    width:3.1rem;
    z-index:2;
  }
  .podcast-card:hover .podcast-play {
    transform:translate(-50%,-50%) scale(1.07);
  }
  .podcast-badge {
    align-items:center;
    background:rgba(16,32,111,.88);
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    color:#fff;
    display:inline-flex;
    font-size:.62rem;
    font-weight:900;
    gap:.28rem;
    left:.8rem;
    letter-spacing:.08em;
    line-height:1;
    padding:.45rem .64rem;
    position:absolute;
    text-transform:uppercase;
    top:.8rem;
    z-index:2;
  }
  .podcast-card-body {
    display:grid;
    gap:.45rem;
    padding:.9rem .95rem 1rem;
  }
  .podcast-meta {
    align-items:center;
    display:flex;
    gap:.45rem;
  }
  .podcast-day {
    background:#e8edff;
    border-radius:999px;
    color:#10206f;
    font-size:.62rem;
    font-weight:900;
    padding:.34rem .55rem;
    text-transform:uppercase;
  }
  .podcast-date {
    color:#767682;
    font-size:.68rem;
    font-weight:800;
  }
  .podcast-title {
    color:#10206f;
    font-size:.96rem;
    font-weight:900;
    line-height:1.22;
    margin:0;
  }
  .podcast-watch {
    align-items:center;
    color:#FF4FA3;
    display:flex;
    font-size:.78rem;
    font-weight:900;
    gap:.25rem;
    margin-top:.1rem;
    text-decoration:none;
    width:max-content;
  }
  .podcast-watch:hover {
    color:#10206f;
  }
  .podcast-embed-frame {
    aspect-ratio:16/9;
    background:#000;
    display:none;
    overflow:hidden;
    position:relative;
    touch-action:auto;
    width:100%;
  }
  .podcast-card.is-playing .podcast-open {
    display:none;
  }
  .podcast-card.is-playing .podcast-embed-frame {
    display:block;
  }
  .podcast-card.is-playing {
    scroll-snap-align:center;
  }
  .podcast-embed-frame iframe {
    border:0;
    display:block;
    height:100%;
    touch-action:auto;
    width:100%;
  }
  @media (max-width:767px) {
    #podcast-rail {
      margin-left:0;
      margin-right:0;
      padding-left:.25rem;
      padding-right:.25rem;
      scroll-padding-left:.25rem;
    }
    .podcast-card {
      flex-basis:min(82vw, 21rem);
    }
    .podcast-card.is-playing {
      flex-basis:min(88vw, 24rem);
    }
    .podcast-card.is-playing:hover {
      transform:none;
    }
  }

  .recap-panel {
    background:transparent;
    border:0;
    box-shadow:none;
    overflow:visible;
    position:relative;
  }
  .recap-panel--mobile {
    display:none;
  }
  .recap-panel-media {
    aspect-ratio:9/16;
    background:#050711;
    border:1px solid rgba(16,32,111,.1);
    border-radius:1.5rem;
    box-shadow:0 .9rem 2.1rem rgba(16,32,111,.08);
    overflow:hidden;
    position:relative;
    width:100%;
  }
  .video-wrapper {
    inset:0;
    overflow:hidden;
    position:absolute;
  }
  .video-wrapper video {
    background:#000;
    border:0;
    display:block;
    height:100%;
    inset:0;
    object-fit:cover;
    position:absolute;
    width:100%;
  }
  .recap-embed-frame {
    background:#fff;
    display:none;
    height:100%;
    inset:0;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    touch-action:manipulation;
    pointer-events:auto;
    position:absolute;
    z-index:7;
    width:100%;
  }
  .recap-embed-frame > .instagram-media {
    margin:0 !important;
    min-width:100% !important;
    width:100% !important;
  }
  .recap-embed-frame iframe.instagram-media {
    margin:0 !important;
    min-width:100% !important;
    width:100% !important;
    pointer-events:auto;
    touch-action:manipulation;
    border:0;
  }
  .recap-panel-controls {
    position:static !important;
    inset:auto !important;
    align-items:center;
    display:flex !important;
    justify-content:flex-end;
    gap:.45rem;
    padding:0 .1rem .65rem;
    z-index:auto;
  }
  .recap-panel-nav {
    box-shadow:0 .25rem .75rem rgba(16,32,111,.14);
  }
  .recap-panel-nav {
    align-items:center;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(16,32,111,.14);
    border-radius:999px;
    color:#10206f;
    cursor:pointer;
    display:inline-flex;
    height:2rem;
    justify-content:center;
    transition:background .16s, color .16s, transform .16s;
    width:2rem;
  }
  .recap-panel-nav:hover {
    background:#10206f;
    color:#fff;
    transform:translateY(-1px);
  }
  .recap-panel-nav:active {
    transform:scale(.97);
  }
  .rcc-overlay {
    align-items:center;
    background:linear-gradient(transparent 0%, rgba(5,7,17,.82) 100%);
    bottom:0;
    display:flex;
    gap:.4rem;
    left:0;
    opacity:0;
    padding:.8rem .6rem .48rem;
    pointer-events:none;
    position:absolute;
    right:0;
    transition:opacity .22s;
    z-index:6;
  }
  .video-wrapper:hover .rcc-overlay,
  .video-wrapper.rcc-active .rcc-overlay {
    opacity:1;
    pointer-events:auto;
  }
  @media (hover:none) {
    .rcc-overlay { opacity:1; pointer-events:auto; }
  }
  .rcc-btn {
    align-items:center;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
    display:flex;
    flex-shrink:0;
    justify-content:center;
    padding:.15rem;
    transition:opacity .14s;
  }
  .rcc-btn:hover { opacity:.75; }
  .rcc-btn .ms { font-size:1.35rem; line-height:1; }
  .rcc-bar {
    cursor:pointer;
    flex:1;
    padding:.3rem 0;
  }
  .rcc-track {
    background:rgba(255,255,255,.28);
    border-radius:999px;
    height:3px;
    overflow:hidden;
  }
  .rcc-fill {
    background:#ff4fa3;
    border-radius:999px;
    height:100%;
    pointer-events:none;
    width:0%;
  }
  .rcc-time {
    color:rgba(255,255,255,.78);
    flex-shrink:0;
    font-family:"Inter",system-ui,sans-serif;
    font-size:.58rem;
    font-weight:700;
    letter-spacing:.025em;
    white-space:nowrap;
  }
  @media (max-width:1023px) {
    .recap-panel--mobile {
      background:transparent;
      border:0;
      border-radius:0;
      box-shadow:none;
      display:block;
      margin-left:auto;
      margin-right:auto;
      max-width:none;
      width:100%;
    }
    .recap-panel--sidebar {
      display:none;
    }
    .recap-panel--mobile .recap-panel-media {
      aspect-ratio:3/5;
    }
    /* Mobile: no nested scrolling inside the Instagram embed — swipes over it
       chain up and scroll the page instead. Taps still reach the iframe. */
    .recap-panel--mobile .recap-embed-frame {
      overflow:hidden;
      touch-action:pan-y;
    }
  }
  @media (max-width:480px) {
    .recap-panel--mobile {
      max-width:none;
    }
  }
  /* Agenda page speaker cards: override global .speaker-card min-height from style.css */
  #speakers-grid {
    align-items:flex-start;
    display:flex !important;
    flex-wrap:nowrap !important;
    max-width:100%;
    min-width:0;
    overflow-x:auto !important;
    overflow-y:hidden;
    overscroll-behavior-x:contain;
    padding-bottom:.9rem;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    touch-action:pan-x;
    -webkit-overflow-scrolling:touch;
  }
  #speakers-grid::-webkit-scrollbar {
    display:none;
  }
  #speakers-grid .speaker-card {
    background:#fff !important;
    border:1px solid rgba(16,32,111,.08) !important;
    border-radius:1.35rem !important;
    box-shadow:0 .8rem 1.8rem rgba(16,32,111,.08) !important;
    display:block !important;
    flex:0 0 auto !important;
    height:auto !important;
    min-height:0 !important;
    overflow:hidden !important;
    padding:0 !important;
    scroll-snap-align:start;
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
    width:clamp(148px,18vw,172px) !important;
    -webkit-user-select:none;
    user-select:none;
  }
  #speakers-grid .speaker-card:hover {
    border-color:rgba(255,79,163,.24) !important;
    box-shadow:0 1rem 2.2rem rgba(16,32,111,.12) !important;
    transform:translateY(-3px);
  }
  #speakers-grid .speaker-card-media {
    aspect-ratio:3/4;
    background:#eef0f9;
    overflow:hidden;
    position:relative;
  }
  #speakers-grid .speaker-card-media img {
    display:block;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transition:transform .45s cubic-bezier(.2,.8,.2,1);
    width:100%;
  }
  #speakers-grid .speaker-card:hover .speaker-card-media img {
    transform:scale(1.045);
  }
  #speakers-grid .speaker-card-body {
    align-content:start;
    display:grid;
    gap:.14rem;
    min-height:7.35rem;
    padding:.68rem .72rem .78rem;
  }
  #speakers-grid .speaker-role-text,
  #speakers-grid .speaker-org-text {
    display:-webkit-box;
    -webkit-box-orient:vertical;
    margin:0;
    overflow:hidden;
  }
  #speakers-grid .speaker-name {
    color:#10206f;
    display:block;
    font-size:.78rem;
    font-weight:900;
    letter-spacing:-.015em;
    line-height:1.18;
    margin:0;
    overflow:visible;
  }
  #speakers-grid .speaker-role-text {
    -webkit-line-clamp:2;
    color:#FF4FA3;
    font-size:.68rem;
    font-weight:800;
    line-height:1.22;
  }
  #speakers-grid .speaker-org-text {
    -webkit-line-clamp:1;
    color:#454651;
    font-size:.66rem;
    font-weight:650;
    line-height:1.22;
    opacity:.84;
  }
  @media (max-width:767px) {
    #speakers-grid {
      margin-left:-1.5rem;
      margin-right:-1.5rem;
      padding-left:1.5rem;
      padding-right:1.5rem;
      scroll-padding-left:1.5rem;
    }
    #speakers-grid .speaker-card {
      width:min(62vw,190px) !important;
    }
    #speakers-grid .speaker-card-body {
      min-height:7.2rem;
      padding:.64rem .68rem .74rem;
    }
  }

/* ── Impact reel: non-video embed slide (e.g. Google Drive, Instagram post) ──── */
.impact-reel-slide--embed .impact-reel-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow-y: auto;
}
.impact-reel-slide--embed .impact-reel-video {
  position: static;
  width: 100%;
  height: auto;
}
.impact-reel-slide--embed .impact-reel-video--linkedin {
  aspect-ratio: 504 / 399;
}
.impact-reel-slide--embed .impact-reel-video--instagram {
  aspect-ratio: 345 / 639;
}
/* Blurred same-video backdrop for the embed slide — mobile only */
.impact-reel-embed-bg {
  display: none;
}
@media (max-width: 900px) {
  .impact-reel-slide--embed .impact-reel-media {
    position: relative;
    overflow: hidden;
    background: #000;
  }
  .impact-reel-embed-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: blur(26px) brightness(0.85) saturate(1.35);
    transform: scale(1.15);
    pointer-events: none;
    z-index: 0;
  }
  .impact-reel-slide--embed .impact-reel-video--linkedin {
    position: relative;
    z-index: 1;
  }
  /* ≤900px: impact section stacks in one column; reel keeps its own
     vertical aspect instead of stretching to a side column. */
  .impact-bottom-grid {
    grid-template-columns: 1fr;
  }
  .impact-bottom-grid .impact-reel-section {
    width: min(100%, 420px);
    justify-self: center;
    min-height: 0;
  }
  .impact-bottom-grid .impact-reel-slide::before,
  .impact-bottom-grid .impact-reel-slide::after {
    display: none;
  }
  .impact-bottom-grid .impact-reel-video {
    opacity: 1;
    border: 0;
  }
  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport,
  .impact-bottom-grid .impact-reel-slide {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
  }
}

/* ── Sorotan video modal (agendaKL) ─────────────────────────── */
.sorotan-cta {
  background: #ff4fa3;
  color: #fff;
  letter-spacing: .05em;
  border: 0;
  cursor: pointer;
}
.sorotan-cta .ms {
  font-size: 1.2rem;
}
#sorotan-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#sorotan-modal.is-open {
  display: flex;
}
.sorotan-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 17, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.sorotan-panel {
  position: relative;
  width: min(386px, calc(100vw - 32px), calc((100vh - 150px) * 9 / 16));
}
.sorotan-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #10206f;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 6, 23, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sorotan-close .ms {
  font-size: 1.3rem;
}
.sorotan-frame {
  aspect-ratio: 9 / 16;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(2, 6, 23, .5);
}
.sorotan-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.sorotan-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin-top: .8rem;
}
.sorotan-nav-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #10206f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(2, 6, 23, .3);
  transition: background .16s, color .16s, transform .16s;
}
.sorotan-nav-btn:hover {
  background: #10206f;
  color: #fff;
  transform: translateY(-1px);
}
.sorotan-nav-btn .ms {
  font-size: 1.25rem;
}
.sorotan-dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.sorotan-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, .4);
  transition: transform .2s, background .2s;
}
.sorotan-dot.is-active {
  background: #ff4fa3;
  transform: scale(1.25);
}
.sorotan-yt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .7rem;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .16s;
}
.sorotan-yt-link:hover {
  opacity: .85;
}
.sorotan-yt-link .ms {
  font-size: 1rem;
}
