﻿/* 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 mandatory;
  scroll-behavior: smooth;

  overscroll-behavior: contain;
  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: always;
  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.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 246, 255, 0.96)
  );
  color: #0f1b6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.speaker-filter-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}
.speaker-filter-toggle.is-open {
  border-color: rgba(15, 27, 109, 0.18);
  box-shadow: 0 18px 34px rgba(15, 27, 109, 0.16);
}
.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: #ffffff;
  border: 1px solid rgba(15, 27, 109, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  scroll-snap-align: start;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14);
}
.speaker-media {
  aspect-ratio: 1 / 1;
  background: #dbe4f5;
  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: initial;
}

.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: 300px;
  min-height: 300px;
  max-height: 300px;
}

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

.impact-bottom-grid .impact-reel-slide {
  height: 300px;
  min-height: 300px;
}

.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: 769px) {
  .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: 300px;
    min-height: 300px;
    max-height: 300px;
  }

  .impact-bottom-grid .impact-reel-slide {
    height: 300px;
    min-height: 300px;
  }

  .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: 769px) {
  .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: start;
    width: 480px;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }

  .impact-bottom-grid .impact-feature-card,
  .impact-bottom-grid .impact-feature-media,
  .impact-bottom-grid .impact-reel-viewport {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }

  .impact-bottom-grid .impact-reel-slide {
    height: 420px;
    min-height: 420px;
  }

  .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) {
  .mission-showcase .section-header,
  .mission-showcase .section-stack {
    justify-items: center;
    text-align: center;
  }

  .mission-showcase h2.mission-heading {
    width: 100%;
    max-width: 19ch;
    margin-inline: auto;
    font-size: clamp(27px, 7.4vw, 36px);
    line-height: 1.14;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .mission-showcase .mission-copy {
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.62;
    text-align: center;
    text-align-last: center;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .vods-header,
  .vods-header .section-stack {
    justify-items: center;
    text-align: center;
  }

  .vods-header .mission-heading,
  .vods-header .mission-copy,
  .vods-header .section-description {
    margin-inline: auto;
    text-align: center;
    text-align-last: center;
  }

  .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 mandatory;
    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 mandatory;
    touch-action: pan-y;
  }

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

  .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-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 72rem;
  margin: 0 0 38px;
  justify-items: start;
  text-align: left;
  text-wrap: balance;
}

.mission-header .section-stack {
  width: 100%;
  max-width: 72rem;
}

.mission-header h2.mission-heading {
  margin: 0;
  width: 100%;
  max-width: 72rem;
  font-size: clamp(24px, 2.55vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  word-spacing: 0.03em;
  text-align: left;
  text-wrap: balance;
}

.mission-header .mission-copy {
  margin: 0;
  width: 100%;
  max-width: 100rem;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--color-muted);
  text-align: justify;
  text-align-last: left;
  text-wrap: balance;
}

@media (max-width: 780px) {
  .mission-header {
    margin-bottom: 38px;
    justify-items: center;
    text-align: center;
  }

  .mission-header h2.mission-heading {
    max-width: min(100%, 22ch);
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-align: center;
  }

  .mission-header .mission-copy {
    max-width: 36rem;
    font-size: 14px;
    line-height: 1.62;
    text-align: center;
    text-align-last: center;
  }
}

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

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