*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #C8102E;
  --blue:   #002868;
  --white:  #FFFFFF;
  --gold:   #D4A017;
  --ink:    #0D0D0D;
  --slate:  #3A3A4A;
  --mist:   #F2F1EE;
  --rule:   #E0DDD6;
  --mono:   'DM Mono', monospace;
}

/* Shared API media lifecycle */
.site-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(212,160,23,0.22), transparent 34%),
    linear-gradient(135deg, #0a1d45 0%, #07142f 58%, #300b18 100%);
}
.site-media > img {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.24s ease;
}
.site-media--cover > img { object-fit: cover; }
.site-media--contain > img { object-fit: contain; }
.site-media.is-loading > img { opacity: 0; }
.site-media.is-loaded > img { opacity: 1; }
.site-media.is-failed > img { display: none; }
.site-media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  color: rgba(255,255,255,0.9);
  background:
    linear-gradient(rgba(7,20,47,0.84), rgba(7,20,47,0.94)),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255,255,255,0.07) 24px);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.03em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.site-media.is-failed .site-media-fallback { opacity: 1; }
.site-media.is-loading::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(105deg, transparent 34%, rgba(255,255,255,0.14) 48%, transparent 62%);
  transform: translateX(-100%);
  animation: media-loading-sweep 1.35s ease-in-out infinite;
}
@keyframes media-loading-sweep { to { transform: translateX(100%); } }
.speaker-media-frame { width: 100%; height: 100%; border-radius: inherit; }
.speaker-media-frame .site-media-fallback { font-size: 21px; }
.flyer-media-frame { width: 100%; height: min(88vh, 1100px); background: #fff; }
.flyer-media-frame .flyer-image { width: 100%; height: 100%; max-height: none; }
.hero-logo-media-frame { width: 100%; height: 88px; background: #fff; }
.hero-logo-media-frame .site-media-fallback,
.sponsor-logo-media-frame .site-media-fallback,
.partners-logo-media-frame .site-media-fallback {
  color: #151b29;
  background: #f4f2ed;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.startup-logo-media-frame { width: min(320px, 75vw); height: 72px; background: #fff; }
.video-thumbnail-media-frame { position: absolute; inset: 0; z-index: 0; }
.gallery-cover-media-frame { width: 100%; height: 100%; }
.gallery-modal-media-frame { width: 100%; height: min(70vh, 720px); }
.gallery-thumb-media-frame { width: 100%; height: 100%; }
.sponsor-logo-media-frame { width: 100%; height: 74px; background: transparent; }
.partners-logo-media-frame { width: 100%; height: 108px; background: transparent; }

@media (prefers-reduced-motion: reduce) {
  .site-media.is-loading::after { animation: none; }
  .site-media > img,
  .site-media-fallback { transition: none; }
}

@media (max-width: 768px) {
  .flyer-media-frame { height: auto; aspect-ratio: 2 / 3; }
  .hero-logo-media-frame { height: 82px; }
  .gallery-modal-media-frame { height: min(56vh, 560px); min-height: 280px; }
  .partners-logo-media-frame { height: 98px; }
}

@media (max-width: 520px) {
  .hero-logo-media-frame { height: 100px; }
  .gallery-modal-media-frame { height: 48vh; min-height: 240px; }
  .partners-logo-media-frame { height: 90px; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.app-loading {
  overflow: hidden;
}
.app-loader {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background:
    radial-gradient(circle at 80% 12%, rgba(212,160,23,0.2), transparent 40%),
    linear-gradient(145deg, #05070f 0%, #0a1330 42%, #2f0813 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.app-loader-card {
  width: min(460px, 96%);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.26);
  backdrop-filter: blur(5px);
  padding: 26px 24px;
  text-align: center;
}
.app-loader-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 4px;
}
.app-loader-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 0.95;
  margin-bottom: 10px;
}
.app-loader-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.app-loader-bars {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.app-loader-bars span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  animation: loaderPulse 1s ease-in-out infinite;
}
.app-loader-bars span:nth-child(2) { animation-delay: 0.15s; }
.app-loader-bars span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderPulse {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-5px); opacity: 1; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 74px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo > span {
  letter-spacing: 0.06em;
}
.brand-logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.32);
  padding: 3px;
}
.nav-logo-badge {
  background: var(--red);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: 4px;
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.7vw, 26px);
  list-style: none;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: flex; gap: 10px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  background: rgba(13,13,13,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 20px;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 20px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a50d24; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #001d4a; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #b8891a; }

/* ── LANDING FLYER ── */
#landing-flyer {
  position: relative;
  overflow: hidden;
  background: #f3f0e9;
  color: var(--ink);
  border-top: 5px solid var(--red);
  border-bottom: 1px solid #d7d1c5;
}
#landing-flyer::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 5px;
  content: '';
  background: var(--blue);
}
.landing-flyer-shell {
  width: min(100%, 1380px);
  margin: 0 auto;
}
.landing-flyer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}
#landing-flyer .section-eyebrow { color: var(--red); }
#landing-flyer .section-eyebrow::before { background: var(--red); }
#landing-flyer .section-title {
  max-width: 900px;
  color: #111522;
  font-size: clamp(34px, 4.5vw, 62px);
}
#landing-flyer .section-sub {
  max-width: 760px;
  margin-bottom: 0;
  color: #555966;
}
.landing-flyer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.landing-flyer-open {
  border: 1px solid #9ca0aa;
  background: transparent;
  color: #171b28;
}
.landing-flyer-open:hover { border-color: var(--blue); color: var(--blue); }
.landing-flyer-details {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.15fr;
  margin-bottom: 18px;
  border-top: 1px solid #cbc5ba;
  border-left: 1px solid #cbc5ba;
  background: rgba(255,255,255,0.55);
}
.landing-flyer-detail {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid #cbc5ba;
  border-bottom: 1px solid #cbc5ba;
}
.landing-flyer-detail span {
  display: block;
  margin-bottom: 6px;
  color: #777984;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.landing-flyer-detail strong {
  display: block;
  color: #151927;
  font-size: 15px;
  line-height: 1.4;
}
.landing-flyer-artwork {
  display: block;
  padding: 10px;
  border: 1px solid #c9c3b8;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19,25,43,0.12);
  text-decoration: none;
}
.landing-flyer-artwork:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}
.landing-flyer-media-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 571;
  background: #fff;
}
.landing-flyer-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.landing-flyer-mobile-note {
  display: none;
  margin-top: 12px;
  color: #656874;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 900px) {
  .landing-flyer-heading { grid-template-columns: 1fr; gap: 22px; }
  .landing-flyer-actions { justify-content: flex-start; }
  .landing-flyer-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .landing-flyer-detail:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  #landing-flyer { padding-left: 18px; padding-right: 18px; }
  .landing-flyer-heading { margin-bottom: 22px; }
  #landing-flyer .section-title { font-size: clamp(32px, 10vw, 44px); }
  .landing-flyer-actions,
  .landing-flyer-actions .btn { width: 100%; }
  .landing-flyer-actions .btn { text-align: center; }
  .landing-flyer-details { grid-template-columns: 1fr; }
  .landing-flyer-detail:last-child { grid-column: auto; }
  .landing-flyer-artwork { padding: 4px; box-shadow: 0 10px 24px rgba(19,25,43,0.1); }
  .landing-flyer-mobile-note { display: block; }
}

/* ── FLYER SPOTLIGHT ── */
#flyer-highlight {
  background: #07090f;
  padding: 64px 48px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.flyer-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.flyer-media {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flyer-image {
  width: auto;
  max-width: 100%;
  height: min(88vh, 1100px);
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}
.flyer-content {
  background:
    radial-gradient(circle at 84% 16%, rgba(212,160,23,0.2), transparent 44%),
    linear-gradient(150deg, rgba(8,21,48,0.9), rgba(59,10,19,0.9));
  border: 1px solid rgba(255,255,255,0.14);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#flyer-highlight .section-title {
  margin-bottom: 12px;
}
#flyer-highlight .section-title .accent { color: var(--gold); }
#flyer-highlight .section-sub {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.84);
}
.flyer-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 18px;
}
.flyer-meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.flyer-meta-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.flyer-meta-item .value {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255,255,255,0.96);
}
.flyer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 72px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,40,104,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,16,46,0.3) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-flag {
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--red) 0px, var(--red) 11.1%,
    var(--white) 11.1%, var(--white) 22.2%,
    var(--red) 22.2%, var(--red) 33.3%,
    var(--white) 33.3%, var(--white) 44.4%,
    var(--red) 44.4%, var(--red) 55.5%,
    var(--white) 55.5%, var(--white) 66.6%,
    var(--red) 66.6%, var(--red) 77.7%,
    var(--white) 77.7%, var(--white) 88.8%,
    var(--red) 88.8%, var(--red) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .red { color: var(--red); }
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px; line-height: 1.6;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-meta-item .value { font-size: 15px; font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-logo-strip {
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  max-width: 840px;
}
.hero-logo-strip-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
}
.hero-logo-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.hero-logo-chip {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.38);
  min-height: 96px;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-logo-chip-img {
  width: 100%;
  height: 100%;
  max-height: 88px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  filter: contrast(1.04) saturate(1.03);
}
.hero-logo-chip-text {
  font-size: 11px;
  color: #1b1b24;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.hero-stats {
  position: absolute; right: 48px; bottom: 72px;
  display: flex; flex-direction: column; gap: 24px; z-index: 2;
  text-align: right;
}
.stat-item { }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  line-height: 1; color: var(--white);
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.countdown-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; padding: 14px 48px;
  z-index: 2;
}
.countdown-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.countdown-units { display: flex; gap: 24px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; line-height: 1;
}
.countdown-unit-label {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 2px;
}
.countdown-sep {
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 800;
  opacity: 0.4; align-self: flex-start; margin-top: 2px;
}

/* ── SECTION COMMONS ── */
section { padding: 96px 48px; }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 560px; margin-bottom: 56px;
}

/* ── ABOUT ── */
#about { background: var(--blue); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-body p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.8;
  margin-bottom: 24px;
}
.about-pillars { display: flex; flex-direction: column; gap: 2px; }
.pillar-card {
  background: rgba(255,255,255,0.07);
  padding: 20px 24px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  cursor: default;
}
.pillar-card:hover { background: rgba(255,255,255,0.12); border-left-color: var(--gold); }
.pillar-icon { font-size: 20px; margin-bottom: 8px; }
.pillar-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.pillar-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PROGRAM ── */
#program {
  background:
    radial-gradient(circle at 90% 0%, rgba(15, 45, 114, 0.08), transparent 36%),
    radial-gradient(circle at 12% 22%, rgba(212, 160, 23, 0.08), transparent 40%),
    var(--mist);
  color: var(--ink);
}
#program .section-eyebrow { color: var(--red); }
#program .section-eyebrow::before { background: var(--red); }
#program .section-title { color: var(--ink); }
#program .section-sub { color: var(--slate); }
.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  position: sticky;
  top: 78px;
  z-index: 35;
  background: linear-gradient(180deg, rgba(236,234,230,0.98) 0%, rgba(236,234,230,0.92) 100%);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 10px;
}
.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  background: rgba(255,255,255,0.84);
  color: var(--slate);
  transition: all 0.2s;
  border-radius: 8px;
}
.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 45, 114, 0.24);
}
.tab-btn:hover:not(.active) { background: rgba(255,255,255,1); border-color: rgba(0,0,0,0.2); }
.program-day { display: none; }
.program-day.active { display: block; }
.day-header-bar {
  background: linear-gradient(130deg, #0d2b6f 0%, #0b1f4a 60%, #3e0b14 100%);
  color: var(--white);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
}
.day-header-bar h3 {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
}
.day-header-bar span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; opacity: 0.86;
}
.program-items { display: flex; flex-direction: column; gap: 10px; }
.program-item {
  background: linear-gradient(180deg, #fff 0%, #fcfbf8 100%);
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  padding: 18px 20px;
  align-items: center;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  border: 1px solid #d8d2c8;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.program-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(15, 45, 114, 0.3);
}
.program-item:hover {
  background: #f8f6f1;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24, 45, 85, 0.09);
}
.program-item.featured { border-left: 4px solid var(--red); }
.program-item.special { border-left: 4px solid var(--gold); }
.program-item.closed { border-left: 4px solid var(--blue); }
.program-item.panel-session { border-left: 4px solid var(--blue); background: #f7f9fd; }
.prog-time {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #0e2f78;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  padding: 8px 10px;
  border: 1px solid rgba(15,45,114,0.16);
  background: #f2f6ff;
  border-radius: 8px;
  justify-self: start;
}
.prog-body {}
.prog-title {
  font-size: 16px;
  font-weight: 700;
  color: #17233a;
  margin-bottom: 6px;
  line-height: 1.35;
}
.prog-desc {
  font-size: 13px;
  color: #4e5561;
  line-height: 1.62;
}
.program-panel-link {
  display: inline-flex;
  margin-top: 9px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.program-panel-link::after { content: ' ->'; }
.program-panel-link:hover { color: var(--red); }
.program-panel-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.prog-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  white-space: nowrap;
  border-radius: 999px;
}
.badge-red { background: var(--red); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--ink); }
.badge-blue { background: var(--blue); color: var(--white); }
.badge-slate { background: var(--slate); color: var(--white); }

/* ── PANELS ── */
#panels { background: var(--ink); }
.panels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.panel-card {
  background: rgba(255,255,255,0.05);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s;
  cursor: default;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 96px;
}
.panel-card:hover { background: rgba(255,255,255,0.08); border-top-color: var(--gold); }
.panel-day-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,40,104,0.26);
  border-radius: 999px;
  line-height: 1;
}
.panel-day-tag strong {
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
}
.panel-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}
.panel-theme {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.panel-topic {
  font-size: 11px;
  color: rgba(255,255,255,0.56);
  display: flex; gap: 8px; align-items: flex-start;
}
.panel-topic::before { content: '→'; color: var(--red); flex-shrink: 0; }
.panel-topics { display: flex; flex-direction: column; gap: 8px; }
.panel-card-participants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
  color: rgba(255,255,255,0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-card-avatars { display: flex; padding-left: 8px; }
.panel-card-avatars span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid #171719;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}
.panel-card-avatars span.is-pending { background: #35353a; color: rgba(255,255,255,0.72); }
.panel-view-btn {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.18s, border-color 0.18s;
}
.panel-view-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.1); }
.panel-view-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

body.panel-modal-open { overflow: hidden; }
.panel-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
}
.panel-modal[hidden] { display: none; }
.panel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,16,0.86);
  backdrop-filter: blur(4px);
}
.panel-modal-card {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #d1cbc0;
  border-top: 5px solid var(--red);
  background: #f5f2eb;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0,0,0,0.42);
  animation: panel-modal-enter 0.22s ease both;
}
.panel-modal-card:focus { outline: none; }
.panel-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #c7c1b6;
  background: #fff;
  color: #181b24;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.panel-modal-close:hover { border-color: var(--red); color: var(--red); }
.panel-modal-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.panel-modal-session {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-right: 54px;
}
.panel-modal-session span,
.panel-modal-session strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid #c9c3b8;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.panel-modal-session strong { border-color: var(--blue); background: var(--blue); color: #fff; }
.panel-modal-card > div > h3 {
  max-width: 850px;
  padding-right: 30px;
  color: #111522;
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.panel-modal-theme {
  max-width: 820px;
  margin-top: 14px;
  color: #785c08;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}
.panel-modal-section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #cbc5ba;
}
.panel-modal-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.panel-modal-section-head span {
  display: block;
  margin-bottom: 4px;
  color: #777984;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.panel-modal-section-head h4 {
  color: #171a22;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
}
.panel-modal-section-head > strong {
  color: #676974;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.panel-person-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  min-height: 126px;
  padding: 16px;
  border: 1px solid #d4cec3;
  background: #fff;
}
.panel-person-card.is-moderator { max-width: 620px; border-left: 4px solid var(--blue); }
.panel-person-card.is-pending { border-style: dashed; background: rgba(255,255,255,0.45); }
.panel-person-avatar { width: 66px; height: 66px; border-radius: 50%; overflow: hidden; }
.panel-person-media-frame { width: 100%; height: 100%; border-radius: inherit; }
.panel-person-media-frame .site-media-fallback { font-size: 20px; }
.panel-person-image { object-position: center 22%; }
.panel-pending-avatar {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: #dedbd4;
  color: #777984;
  font-family: var(--mono);
  font-size: 11px;
}
.panel-person-label {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.panel-person-copy h4 { color: #181b23; font-size: 15px; line-height: 1.3; }
.panel-person-title { margin-top: 5px; color: #444854; font-size: 12px; line-height: 1.45; }
.panel-person-org { margin-top: 4px; color: var(--blue); font-size: 11px; font-weight: 600; line-height: 1.4; }
.panel-person-note {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 7px;
  background: #f3ead1;
  color: #6f5506;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-moderator-pending {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 620px;
  padding: 18px;
  border: 1px dashed #aaa59c;
  background: rgba(255,255,255,0.45);
}
.panel-moderator-pending span {
  color: #777984;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.panel-moderator-pending strong { color: #30333e; font-size: 14px; }
@keyframes panel-modal-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .panel-modal { align-items: end; padding: 0; }
  .panel-modal-card {
    width: 100%;
    max-height: 92vh;
    padding: 28px 18px 34px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
  .panel-modal-card > div > h3 { padding-right: 0; font-size: clamp(28px, 9vw, 40px); }
  .panel-modal-theme { font-size: 13px; }
  .panel-modal-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .panel-people-grid { grid-template-columns: 1fr; }
  .panel-person-card { grid-template-columns: 56px minmax(0, 1fr); min-height: 110px; padding: 14px; }
  .panel-person-avatar { width: 56px; height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .panel-modal-card { animation: none; }
}

/* ── KEYNOTE SPEAKER ── */
#keynote-speakers {
  background: #f4f1ea;
  color: var(--ink);
  border-top: 5px solid var(--red);
  border-bottom: 1px solid #d8d2c6;
}
#keynote-speakers .section-eyebrow { color: var(--red); }
#keynote-speakers .section-eyebrow::before { background: var(--red); }
#keynote-speakers .section-title { color: #11131a; }
#keynote-speakers .section-sub {
  color: #565866;
  max-width: 680px;
  margin-bottom: 36px;
}
.keynote-intro,
.keynote-publication,
.keynote-list,
.keynote-state,
.keynote-loading,
.keynote-service-note {
  width: min(100%, 1380px);
  margin-left: auto;
  margin-right: auto;
}
.keynote-publication {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 210px;
  margin-bottom: 28px;
  border-top: 4px solid var(--red);
  background: #071a3e;
  color: #fff;
  box-shadow: 0 18px 46px rgba(12,25,54,0.14);
  scroll-margin-top: 96px;
}
.keynote-publication:target {
  border-color: rgba(241,191,56,0.78);
  box-shadow: 0 0 0 4px rgba(241,191,56,0.14), 0 18px 46px rgba(12,25,54,0.14);
}
.keynote-publication:focus { outline: none; }
.keynote-publication-mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 244px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(160deg, rgba(203,17,47,0.96), rgba(103,7,25,0.98)),
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(255,255,255,0.06) 20px);
  font-family: var(--mono);
  text-transform: uppercase;
}
.keynote-publication-mark span,
.keynote-publication-mark small {
  font-size: 8px;
  letter-spacing: 0.2em;
}
.keynote-publication-mark strong {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 0.95;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.keynote-publication-copy {
  padding: 30px clamp(26px, 4vw, 52px);
}
.keynote-publication-eyebrow {
  margin-bottom: 11px;
  color: #f1bf38;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.keynote-publication-copy h3 {
  max-width: 820px;
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(25px, 3vw, 43px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.keynote-publication-subtitle {
  margin-top: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.keynote-publication-description {
  max-width: 780px;
  margin-top: 15px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.65;
}
.keynote-publication-source {
  position: relative;
  max-width: 820px;
  margin-top: 22px;
  padding: 18px 20px 18px 24px;
  border: 1px solid rgba(241,191,56,0.28);
  border-left: 3px solid #f1bf38;
  background: rgba(255,255,255,0.055);
}
.keynote-publication-source-eyebrow {
  margin-bottom: 8px;
  color: #f1bf38;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.keynote-publication-source h4 {
  margin: 0;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.25;
}
.keynote-publication-source p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  line-height: 1.6;
}
.keynote-publication-source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.keynote-publication-source a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.keynote-publication-source a:hover { color: #f1bf38; }
.keynote-publication-source a:focus-visible { outline: 3px solid #f1bf38; outline-offset: 4px; }
.keynote-publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 22px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.keynote-publication-meta dt {
  margin-bottom: 3px;
  color: rgba(255,255,255,0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.keynote-publication-meta dd {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.keynote-publication-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.keynote-publication-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.36);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.keynote-publication-action.is-primary {
  border-color: #fff;
  background: #fff;
  color: #071a3e;
}
.keynote-publication-action:hover { border-color: #f1bf38; }
.keynote-publication-action:focus-visible { outline: 3px solid #f1bf38; outline-offset: 3px; }
.keynote-list { display: grid; gap: 24px; }
.keynote-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  background: var(--white);
  border: 1px solid #cec8bb;
  overflow: hidden;
  animation: keynote-enter 0.55s ease both;
}
.keynote-portrait {
  min-width: 0;
  background: #071a3e;
  border-right: 1px solid #cec8bb;
}
.keynote-portrait-media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 5;
}
.keynote-portrait-media .site-media-fallback {
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: 0.05em;
}
.keynote-portrait-image { object-position: 58% 50%; }
.keynote-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 5vw, 76px);
}
.keynote-identity-rule {
  width: 72px;
  height: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--red) 0 64%, var(--gold) 64% 100%);
}
.keynote-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 6px 11px;
  border: 1px solid rgba(0,40,104,0.2);
  background: #edf2fa;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.keynote-name {
  max-width: 850px;
  margin-bottom: 18px;
  color: #10131a;
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.keynote-title {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.3;
}
.keynote-company {
  margin-top: 9px;
  color: #656775;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.keynote-bio {
  max-width: 760px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #ddd8ce;
  color: #424551;
  font-size: 15px;
  line-height: 1.75;
}
.keynote-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid #ddd8ce;
  border-left: 1px solid #ddd8ce;
}
.keynote-highlight {
  min-height: 88px;
  padding: 16px;
  border-right: 1px solid #ddd8ce;
  border-bottom: 1px solid #ddd8ce;
}
.keynote-highlight span {
  color: #181b23;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.keynote-highlight p {
  margin-top: 5px;
  color: #626471;
  font-size: 12px;
  line-height: 1.5;
}
.keynote-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.keynote-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid #aeb1ba;
  color: #1d2230;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.keynote-link-primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.keynote-link:hover { border-color: var(--red); }
.keynote-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.keynote-service-note {
  margin-top: -18px;
  margin-bottom: 18px;
  color: #6b5a31;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.keynote-state {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid #cec8bb;
  background: #fff;
}
.keynote-state-label {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.keynote-state h3 {
  color: #171920;
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
}
.keynote-state > p:last-child { margin-top: 10px; color: #626471; line-height: 1.6; }
.keynote-loading {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 520px;
  border: 1px solid #d4cec2;
  background: #fff;
  overflow: hidden;
}
.keynote-loading-portrait,
.keynote-loading-copy span {
  background: #e3dfd6;
  background-image: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.7) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: keynote-loading 1.4s ease-in-out infinite;
}
.keynote-loading-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(32px, 5vw, 76px);
}
.keynote-loading-copy span { display: block; width: 32%; height: 18px; }
.keynote-loading-copy span:nth-child(2) { width: 82%; height: 54px; }
.keynote-loading-copy span:nth-child(3) { width: 60%; height: 24px; }
.keynote-loading-copy p { color: #6b6d76; font-size: 13px; }
@keyframes keynote-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes keynote-loading { to { background-position: -220% 0; } }

@media (max-width: 1050px) {
  .keynote-publication { grid-template-columns: 118px minmax(0, 1fr); }
  .keynote-publication-actions {
    grid-column: 2;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 32px 28px;
    border-left: 0;
  }
  .keynote-card,
  .keynote-loading { grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); }
  .keynote-portrait-media { min-height: 450px; }
  .keynote-content { padding: 36px; }
}
@media (max-width: 760px) {
  .keynote-publication { grid-template-columns: 1fr; }
  .keynote-publication-mark {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .keynote-publication-mark strong { font-size: 18px; writing-mode: initial; transform: none; }
  .keynote-publication-copy { padding: 25px 20px; }
  .keynote-publication-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .keynote-publication-actions {
    grid-column: 1;
    flex-direction: column;
    padding: 0 20px 24px;
  }
  .keynote-card,
  .keynote-loading { grid-template-columns: 1fr; }
  .keynote-portrait { border-right: 0; border-bottom: 1px solid #cec8bb; }
  .keynote-portrait-media {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }
  .keynote-portrait-image { object-position: 58% 42%; }
  .keynote-loading { min-height: 600px; }
  .keynote-loading-portrait { min-height: 330px; }
  .keynote-content { padding: 30px 24px 34px; }
  .keynote-name { font-size: clamp(32px, 10vw, 48px); }
}
@media (max-width: 520px) {
  #keynote-speakers { padding-left: 18px; padding-right: 18px; }
  .keynote-publication-meta { grid-template-columns: 1fr; gap: 12px; }
  .keynote-highlights { grid-template-columns: 1fr; }
  .keynote-links,
  .keynote-link { width: 100%; }
  .keynote-link { justify-content: center; }
  .keynote-service-note { margin-top: -12px; line-height: 1.55; }
}
@media (prefers-reduced-motion: reduce) {
  .keynote-card,
  .keynote-loading-portrait,
  .keynote-loading-copy span { animation: none; }
}

/* ── SPEAKERS ── */
#speakers { background: var(--blue); }
.speakers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.speaker-card {
  background: rgba(255,255,255,0.06);
  padding: 28px 24px;
  transition: all 0.2s; cursor: pointer;
  position: relative; overflow: hidden;
}
.speaker-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.speaker-card:hover { background: rgba(255,255,255,0.12); }
.speaker-card:hover::after { transform: scaleX(1); }
.speaker-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue));
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  overflow: hidden;
}
.speaker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker-role {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.speaker-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.speaker-org { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ── STARTUP WORLD CUP ── */
#startup { background: var(--ink); position: relative; overflow: hidden; }
#startup::before {
  content: 'SWC';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Syne', sans-serif; font-size: 300px; font-weight: 800;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
}
.startup-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}
.startup-intro .section-sub { margin-bottom: 0; }
.startup-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.startup-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 16px;
  border-radius: 6px;
}
.startup-brand-logo {
  display: block;
  width: min(320px, 75vw);
  max-height: 72px;
  object-fit: contain;
}
.startup-winner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 4px solid var(--gold);
  background: #071b3a;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}
.startup-winner-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  background: #050b15;
  overflow: hidden;
}
.startup-winner-media-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #050b15;
}
.startup-winner-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.startup-winner-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(5,15,32,0.84);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.startup-winner-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 20px 16px;
  background: linear-gradient(transparent, rgba(3,9,19,0.88));
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  line-height: 1.5;
}
.startup-winner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
  background:
    linear-gradient(145deg, rgba(11,54,116,0.98), rgba(4,20,49,0.99)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.03) 40px);
}
.startup-winner-eyebrow,
.startup-recap-eyebrow {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.startup-winner-copy h3 {
  margin: 14px 0 18px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.02;
}
.startup-winner-copy > p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}
.startup-winner-facts {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.startup-winner-facts > div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.startup-winner-facts dt {
  margin-bottom: 4px;
  color: rgba(255,255,255,0.46);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.startup-winner-facts dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.startup-directory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  margin-top: 24px;
}
.startup-finalists,
.startup-judges {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.035);
}
.startup-directory-heading {
  padding: 28px 30px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.startup-directory-eyebrow {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.startup-directory-heading h3 {
  margin: 10px 0 7px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.08;
}
.startup-directory-heading p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.6;
}
.startup-finalist-list,
.startup-judge-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.startup-finalist {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.startup-finalist:last-child,
.startup-judge-list li:last-child { border-bottom: 0; }
.startup-finalist-number,
.startup-judge-list li > span {
  color: rgba(255,255,255,0.34);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.startup-finalist-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.startup-finalist-identity strong,
.startup-judge-list strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}
.startup-finalist-identity small {
  color: rgba(255,255,255,0.46);
  font-size: 11px;
}
.startup-finalist.is-winner {
  position: relative;
  background: linear-gradient(90deg, rgba(212,160,23,0.24), rgba(9,50,107,0.5));
  box-shadow: inset 4px 0 0 var(--gold);
}
.startup-finalist.is-winner .startup-finalist-number,
.startup-finalist.is-winner .startup-finalist-identity small { color: rgba(255,255,255,0.72); }
.startup-finalist.is-winner .startup-finalist-identity strong { font-size: 16px; }
.startup-finalist-winner {
  padding: 7px 9px;
  border: 1px solid rgba(255,226,153,0.55);
  color: #ffe299;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.startup-judge-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.startup-judge-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.startup-judge-identity small {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  line-height: 1.35;
}
.startup-judge-identity .startup-judge-organization {
  color: rgba(255,226,153,0.74);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.startup-recap-layout {
  position: relative;
  z-index: 1;
  margin-top: 72px;
}
.startup-recap-title {
  margin: 12px 0 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
}
.startup-recap-sub {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.65;
}
.startup-prize {
  background: var(--red);
  padding: 40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.prize-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.prize-amount {
  font-family: 'Syne', sans-serif;
  font-size: 72px; font-weight: 800; line-height: 1;
}
.prize-sub { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-top: 8px; }
.startup-info {}
.startup-criteria { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.criteria-item {
  background: rgba(255,255,255,0.05);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
}
.criteria-icon { font-size: 18px; flex-shrink: 0; }
.criteria-text {}
.criteria-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.criteria-desc { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── VIDEO ── */
#video-section { background: var(--mist); color: var(--ink); padding: 72px 48px; }
#video-section .section-eyebrow { color: var(--red); }
#video-section .section-eyebrow::before { background: var(--red); }
#video-section .section-title { color: var(--ink); }
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
}
.video-card {
  border: 1px solid #d8d2c8;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}
.video-card:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.video-card-featured { grid-column: span 1; }
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(140deg, #031235 0%, #17213f 45%, #530e1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(212,160,23,0.27), transparent 35%),
    linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 65%);
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: 0;
}
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,6,17,0.15) 0%, rgba(4,6,17,0.82) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  z-index: 1;
}
.video-thumb.is-preview-ready .video-thumb-preview,
.video-thumb.is-preview-ready .video-thumb-img {
  opacity: 1;
}
.video-thumb.is-preview-ready .video-thumbnail-media-frame.is-failed { opacity: 0; }
.video-thumb.is-preview-failed .video-thumb-preview { opacity: 0; }
.video-thumb.is-preview-ready::before { opacity: 0; }
.video-thumb.is-fallback::before { opacity: 1; }
.video-thumb.is-fallback .video-thumb-preview,
.video-thumb.is-fallback .video-thumb-img { opacity: 0; }
.video-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-card:hover .video-play-icon {
  transform: scale(1.06);
  background: rgba(255,255,255,0.24);
}
.video-play-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.video-label {
  padding: 14px 16px;
  background: var(--white);
}
.video-label strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.video-label span {
  display: block;
  font-size: 10px;
  color: #6f6a60;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.video-label p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}
body[data-page="videos"] #video-section {
  min-height: calc(100vh - 64px);
  padding-top: 110px;
}
body[data-page="videos"] .video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}
.video-modal.is-open { display: block; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,6,12,0.72);
  backdrop-filter: blur(2px);
}
.video-modal-card {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  margin: 6vh auto 0;
  background: #0f1119;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 25px 65px rgba(0,0,0,0.45);
  padding: 22px;
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.video-modal-kicker {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.video-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.94;
  margin-bottom: 8px;
}
.video-modal-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.video-player-host {
  border: 1px solid rgba(255,255,255,0.18);
  background: #06080f;
  min-height: 280px;
}
.video-player-host iframe,
.video-player-host video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 280px;
  border: 0;
}
.video-player-empty {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

/* ── SPONSORS ── */
#sponsors { background: var(--white); color: var(--ink); }
#sponsors .section-eyebrow { color: var(--red); }
#sponsors .section-eyebrow::before { background: var(--red); }
#sponsors .section-title { color: var(--ink); }
#sponsors .section-sub { color: var(--slate); }
.sponsor-tiers { display: flex; flex-direction: column; gap: 40px; }
.sponsor-tier-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #999; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.sponsor-tier-label::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}
.sponsor-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.sponsor-logo {
  background: var(--mist); padding: 28px 34px;
  display: flex; align-items: center; justify-content: center;
  min-width: 200px; flex: 1;
  font-size: 13px; font-weight: 600; color: var(--slate);
  text-align: center; line-height: 1.3;
  border: 1px solid var(--rule);
  transition: background 0.15s;
}
.sponsor-logo-img {
  width: 100%;
  max-width: 210px;
  max-height: 74px;
  object-fit: contain;
}
.sponsor-logo-text { text-align: center; }
.sponsor-logo-fallback { display: none; }
.sponsor-logo:hover { background: #ebe9e4; }
.sponsor-logo.featured { min-width: 260px; font-size: 15px; }
.sponsor-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.package-card {
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-top: 5px solid var(--rule);
  border-radius: 10px;
}
.package-card.exhibitor-plus {
  border-top-color: #002868;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}
.package-card.startup-sme {
  border-top-color: #198754;
  background: linear-gradient(180deg, #f2fff8 0%, #ffffff 100%);
}
.package-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 8px;
}
.package-price {
  font-family: 'Syne', sans-serif;
  font-size: 31px; font-weight: 800; color: var(--ink);
  margin-bottom: 12px; line-height: 1;
}
.package-benefits { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.package-benefits li {
  font-size: 13px; color: var(--slate);
  display: flex; gap: 8px;
  line-height: 1.4;
}
.package-benefits li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.exhibitor-benefits,
.exhibitor-addons {
  margin-top: 22px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.exhibitor-strip-title {
  background: #072a64;
  color: #fff;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
  padding: 12px 14px;
  text-align: center;
}
.exhibitor-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.exhibitor-strip-item {
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 14px 12px;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.45;
}
.exhibitor-strip-item:nth-child(3n) { border-right: none; }
.exhibitor-addons .exhibitor-strip-title { background: var(--red); }
.exhibitor-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.exhibitor-addon-item {
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exhibitor-addon-item:nth-child(3n) { border-right: none; }
.exhibitor-addon-item span {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.35;
}
.exhibitor-addon-item strong {
  color: var(--red);
  font-size: 16px;
  font-family: 'Syne', sans-serif;
}

/* ── DIASPORA ── */
#diaspora { background: var(--blue); }
.diaspora-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.diaspora-body p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 20px;
}
.diaspora-highlights { display: flex; flex-direction: column; gap: 2px; }
.diaspora-card {
  background: rgba(255,255,255,0.07); padding: 24px 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.diaspora-icon { font-size: 24px; flex-shrink: 0; }
.diaspora-card-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.diaspora-card-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── OPPORTUNITIES ── */
#opportunities { background: var(--mist); color: var(--ink); }
#opportunities .section-eyebrow { color: var(--red); }
#opportunities .section-eyebrow::before { background: var(--red); }
#opportunities .section-title { color: var(--ink); }
#opportunities .section-sub { color: var(--slate); }
.opp-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 40px; }
.opp-cat-card {
  background: var(--white); padding: 28px 24px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.opp-cat-card:hover { border-bottom-color: var(--red); }
.opp-cat-icon { font-size: 28px; margin-bottom: 12px; }
.opp-cat-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.opp-cat-desc { font-size: 12px; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }
.opp-cat-count {
  font-family: var(--mono);
  font-size: 11px; color: var(--red); font-weight: 500;
}
.opp-note {
  background: var(--white); padding: 20px 24px;
  border-left: 4px solid var(--gold);
  font-size: 13px; color: var(--slate); line-height: 1.6;
}

/* ── GALLERY ── */
#gallery { padding: 0; background: #090b13; }
#gallery .section-sub { color: rgba(255,255,255,0.72); max-width: 760px; }
.gallery-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 48px 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 22%, rgba(202,15,48,0.3), transparent 26%),
    linear-gradient(122deg, #060811 0%, #092c67 64%, #330713 100%);
}
.gallery-archive-hero::after {
  position: absolute;
  right: -130px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(255,255,255,0.025), 0 0 0 156px rgba(255,255,255,0.015);
  content: "";
}
.gallery-archive-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
}
.gallery-archive-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}
.gallery-archive-hero .section-eyebrow { color: var(--gold); }
.gallery-archive-hero .section-eyebrow::before { background: var(--gold); }
.gallery-archive-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7.3vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.gallery-archive-hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}
.gallery-archive-stats {
  display: flex;
  width: fit-content;
  margin-top: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(4,8,18,0.3);
}
.gallery-archive-stats > div { min-width: 150px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,0.14); }
.gallery-archive-stats > div:last-child { border-right: 0; }
.gallery-archive-stats strong,
.gallery-archive-stats span { display: block; }
.gallery-archive-stats strong { margin-bottom: 4px; font-family: 'Syne', sans-serif; font-size: 27px; }
.gallery-archive-stats span { color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 8px; letter-spacing: 0.13em; text-transform: uppercase; }
.gallery-archive-body { width: min(1420px, 100%); margin: 0 auto; padding: 54px 48px 90px; }
.gallery-api-notice {
  margin-bottom: 22px;
  padding: 15px 18px;
  border-left: 3px solid var(--gold);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.05);
  font-size: 13px;
}
.gallery-api-notice strong { color: var(--white); }
.gallery-year-nav {
  position: static;
  inset: auto;
  z-index: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: auto;
  height: auto;
  gap: 8px;
  margin-bottom: 62px;
  padding: 0 0 14px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-year-nav > span {
  display: flex;
  min-width: 125px;
  align-items: center;
  color: rgba(255,255,255,0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.gallery-year-link {
  display: grid;
  min-width: 126px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  background: rgba(255,255,255,0.035);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.gallery-year-link:hover,
.gallery-year-link:focus-visible { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.08); }
.gallery-year-link span { margin-bottom: 4px; font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; }
.gallery-year-link small { color: rgba(255,255,255,0.52); font-family: var(--mono); font-size: 8px; letter-spacing: 0.09em; text-transform: uppercase; }
.gallery-year-section { padding: 0 0 76px; scroll-margin-top: 92px; }
.gallery-year-section + .gallery-year-section { padding-top: 64px; border-top: 1px solid rgba(255,255,255,0.12); }
.gallery-year-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}
.gallery-year-kicker {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gallery-year-section.is-latest .gallery-year-kicker { color: var(--gold); }
.gallery-year-header h2 {
  margin: 0;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.gallery-year-count { display: flex; align-items: baseline; gap: 9px; color: rgba(255,255,255,0.48); }
.gallery-year-count strong { color: var(--white); font-family: 'Syne', sans-serif; font-size: 28px; }
.gallery-year-count span { font-family: var(--mono); font-size: 8px; letter-spacing: 0.11em; text-transform: uppercase; }
.gallery-grid-albums {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  background: #0e111b;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.gallery-item-card:hover,
.gallery-item-card:focus-visible { transform: translateY(-4px); border-color: rgba(255,255,255,0.34); box-shadow: 0 20px 40px rgba(0,0,0,0.24); }
.gallery-item-card:focus-visible { outline: 3px solid rgba(222,172,17,0.75); outline-offset: 3px; }
.gallery-item-card:hover .gallery-overlay { opacity: 0.68; }
.gallery-item-card:hover .gallery-photo { transform: scale(1.04); }
.gallery-item-card:hover .gallery-open-mark { opacity: 1; transform: translateY(0); }
.gallery-item-card-lead { grid-column: span 2; }
.gallery-item-card-lead .gallery-item-media { aspect-ratio: 2.22/1; }
.gallery-item-media {
  position: relative;
  aspect-ratio: 16/10.5;
  background: linear-gradient(130deg, #091533 0%, #15142c 45%, #4a0d19 100%);
  overflow: hidden;
}
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,3,8,0.02) 0%, rgba(3,3,8,0.66) 100%);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}
.gallery-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(8,12,24,0.9);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 6px 8px;
}
.gallery-open-mark {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery-open-mark span { color: var(--gold); font-size: 16px; }
.gallery-item-meta {
  min-height: 152px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.gallery-item-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-item-meta p { margin: 2px 0 4px; color: rgba(255,255,255,0.58); font-size: 12px; line-height: 1.5; }
.gallery-item-date {
  margin-top: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}
.gallery-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.gallery-no-results {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 26px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}
.gallery-empty-state {
  padding: 70px 28px;
  border: 1px dashed rgba(255,255,255,0.2);
  text-align: center;
}
.gallery-empty-state span { color: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; }
.gallery-empty-state h2 { margin: 13px 0 10px; color: var(--white); font-family: 'Syne', sans-serif; font-size: clamp(28px, 5vw, 46px); }
.gallery-empty-state p { margin: 0; color: rgba(255,255,255,0.62); }
.gallery-modal-open { overflow: hidden; }
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1280;
  display: none;
}
.gallery-modal.is-open { display: block; }
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,10,0.88);
  backdrop-filter: blur(5px);
}
.gallery-modal-card {
  position: relative;
  width: min(1120px, calc(100vw - 30px));
  max-height: 94vh;
  margin: 3vh auto 0;
  overflow-y: auto;
  background: #0d0f19;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 68px rgba(0,0,0,0.5);
  padding: 20px;
  color: var(--white);
}
.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(4,7,14,0.8);
  color: rgba(255,255,255,0.82);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.gallery-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 48px;
}
.gallery-modal-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 8px;
}
.gallery-modal-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 0.95;
}
.gallery-modal-head p {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.gallery-modal-counter {
  align-self: flex-end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.68);
}
.gallery-modal-stage {
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  background: #06080f;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.gallery-modal-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  background: #06080f;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.gallery-modal-loading[hidden] { display: none; }
.gallery-modal-image {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(7,10,19,0.72);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-modal-caption {
  margin: 10px 0 12px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.76);
}
.gallery-modal-thumbs {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
  overflow-x: auto;
}
.gallery-thumb {
  flex: 0 0 106px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4/3;
  overflow: hidden;
  opacity: 0.74;
}
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-link {
  padding-top: 8px; text-align: center;
}
.archive-link .btn { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ── GLOBAL PARTNERS ── */
#partners-showcase {
  background: var(--mist);
  color: var(--ink);
}
#partners-showcase .section-eyebrow { color: var(--red); }
#partners-showcase .section-eyebrow::before { background: var(--red); }
#partners-showcase .section-sub { color: var(--slate); max-width: 820px; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.partner-card {
  position: relative;
  border: 1px solid #d8d2c8;
  background: #fff;
  padding: 12px;
}
.partners-logo-link { text-decoration: none; }
.partners-logo-wrap {
  border: 1px solid #dcd7cd;
  background: #f8f7f4;
  min-height: 130px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partners-logo-img {
  width: 100%;
  height: 100%;
  max-height: 108px;
  object-fit: contain;
  image-rendering: auto;
  filter: contrast(1.04) saturate(1.03);
}
.partners-logo-fallback {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: #2a2530;
  text-align: center;
  line-height: 1.2;
}

/* ── CTA ── */
#cta {
  background: var(--red);
  padding: 96px 48px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
#cta .section-eyebrow { color: rgba(255,255,255,0.6); justify-content: center; }
#cta .section-eyebrow::before { background: rgba(255,255,255,0.4); }
#cta .section-title { font-size: clamp(32px, 5vw, 64px); }
#cta .section-sub { color: rgba(255,255,255,0.75); text-align: center; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #f0f0f0; }
.is-registration-disabled {
  cursor: not-allowed;
  opacity: 0.78;
  pointer-events: none;
  user-select: none;
}
.footer-col .is-registration-disabled {
  display: inline-block;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
}

/* ── WAITING LIST ── */
#registration { background: var(--white); color: var(--ink); }
#registration .section-eyebrow { color: var(--red); }
#registration .section-eyebrow::before { background: var(--red); }
#registration .section-sub { color: var(--slate); max-width: 760px; }
.event-completed-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.event-completed-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(213, 164, 24, 0.28), transparent 28%),
    linear-gradient(135deg, #061c45 0%, #0a3279 58%, #4b0917 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 70px rgba(0, 25, 70, 0.2);
}
.event-completed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.event-completed-card > * { position: relative; z-index: 1; }
.event-completed-card .section-eyebrow { color: #f3c532 !important; }
.event-completed-card .section-eyebrow::before { background: #f3c532 !important; }
.event-completed-card .section-title {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
}
.event-completed-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #071b40;
  background: #f3c532;
  font-size: 28px;
  font-weight: 800;
}
.event-completed-message {
  max-width: 850px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}
.event-completed-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin: 38px 0 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.18);
}
.event-completed-details > div {
  padding: 20px;
  background: rgba(5,19,47,0.72);
}
.event-completed-details span,
.event-completed-details strong { display: block; }
.event-completed-details span {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-completed-details strong { font-size: 15px; line-height: 1.45; }
.event-completed-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── PARTNER WITH LIBERIA ── */
#partner-with-liberia {
  background: var(--white);
  color: var(--ink);
  padding: 0;
}
#partner-with-liberia .section-eyebrow { color: var(--gold); }
#partner-with-liberia .section-eyebrow::before { background: var(--gold); }
#partner-with-liberia .section-sub { color: var(--slate); max-width: 720px; }
.partnerwl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #040b1f 0%, #081f4f 45%, #430a17 100%);
  color: var(--white);
  padding: 124px 48px 74px;
}
.partnerwl-hero-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to right, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 52px);
  pointer-events: none;
}
.partnerwl-hero-content { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; }
.partnerwl-hero .section-eyebrow { color: var(--gold); }
.partnerwl-hero .section-eyebrow::before { background: var(--gold); }
.partnerwl-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.partnerwl-hero-title em { color: var(--gold); font-style: normal; }
.partnerwl-hero-sub {
  max-width: 900px;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.partnerwl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.partnerwl-hero-stats {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.partnerwl-hero-stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 6px;
}
.partnerwl-hero-stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.partnerwl-intro-band {
  background: #10233f;
  color: rgba(255,255,255,0.86);
  padding: 32px 48px;
}
.partnerwl-intro-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.partnerwl-pavilion {
  padding: 74px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.partnerwl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.partnerwl-filter-btn {
  border: 1px solid #d2d0ca;
  background: #fff;
  color: #5b6675;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}
.partnerwl-filter-btn.active,
.partnerwl-filter-btn:hover {
  background: #081f4f;
  color: var(--gold);
  border-color: #081f4f;
}
.partnerwl-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.partnerwl-card {
  border: 1px solid #e1ddd5;
  background: #fff;
  display: flex;
}
.partnerwl-card-inner { padding: 18px; width: 100%; }
.partnerwl-card-sector {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a7686;
  margin-bottom: 8px;
}
.partnerwl-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 4px;
}
.partnerwl-card-full {
  font-size: 13px;
  color: #6e7988;
  margin-bottom: 12px;
}
.partnerwl-card-initiative {
  font-size: 14px;
  color: #283342;
  line-height: 1.7;
  margin-bottom: 12px;
}
.partnerwl-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.partnerwl-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 6px;
  background: #edf2fb;
  color: #0a2d72;
}
.partnerwl-card-opportunity {
  border-top: 1px solid #ebe6dc;
  padding-top: 10px;
}
.partnerwl-card-opportunity strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b88917;
  margin-bottom: 5px;
}
.partnerwl-card-opportunity span {
  font-size: 13px;
  color: #455266;
  line-height: 1.65;
}
.partnerwl-pathways {
  background: #081f4f;
  color: #fff;
  padding: 74px 48px;
}
.partnerwl-pathways .section-header {
  max-width: 1120px;
  margin: 0 auto 34px;
  text-align: center;
}
.partnerwl-pathways .section-title { color: #fff; }
.partnerwl-pathways .section-sub { color: rgba(255,255,255,0.66); margin-bottom: 0; }
.partnerwl-path-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.partnerwl-path-card {
  border: 1px solid rgba(212,160,23,0.34);
  background: rgba(255,255,255,0.03);
  padding: 20px;
}
.partnerwl-path-icon { display: block; font-size: 20px; margin-bottom: 10px; }
.partnerwl-path-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.partnerwl-path-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
}
.partnerwl-path-card p { color: rgba(255,255,255,0.74); font-size: 14px; line-height: 1.65; }
.partnerwl-inquiry {
  background: var(--mist);
  padding: 74px 48px;
}
.partnerwl-inquiry-shell {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #ddd8cf;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 30px;
}
.partnerwl-inquiry-shell p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.partnerwl-contact-line {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.partnerwl-contact-line a {
  color: #0a2d72;
  text-decoration: none;
  font-weight: 600;
}
.partnerwl-contact-line a:hover { text-decoration: underline; }
.partnerwl-inquiry-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partnerwl-inquiry-fields input,
.partnerwl-inquiry-fields select,
.partnerwl-inquiry-fields textarea {
  width: 100%;
  border: 1px solid #d2cec5;
  padding: 12px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: #f7f6f3;
}
.partnerwl-inquiry-fields textarea { min-height: 120px; resize: vertical; }
.partnerwl-inquiry-fields input:focus,
.partnerwl-inquiry-fields select:focus,
.partnerwl-inquiry-fields textarea:focus {
  outline: none;
  border-color: #0a2d72;
}
.partnerwl-message {
  min-height: 18px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--slate);
}
.partnerwl-message.success { color: #1d6e39; }
.partnerwl-message.error { color: #a1192a; }
.partnerwl-response-note {
  margin-top: 8px;
  color: #6c7684;
  font-size: 12px;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 20px;
  align-items: start;
}
.waitlist-shell {
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, #f5f4f1 0%, #f0eeea 100%);
  padding: 28px;
}
.waitlist-aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.waitlist-aside-card {
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 80% 12%, rgba(212,160,23,0.18), transparent 46%),
    linear-gradient(135deg, #04173f 0%, #0f2f72 35%, #3f0914 100%);
  color: var(--white);
  padding: 24px;
}
.waitlist-aside-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.waitlist-aside-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 0.95;
  margin-bottom: 14px;
}
.waitlist-aside-card p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.waitlist-aside-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist-aside-card li {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  display: flex;
  gap: 8px;
}
.waitlist-aside-card li::before {
  content: '◆';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 4px;
}
.waitlist-aside-meta {
  background: var(--mist);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
}
.waitlist-aside-meta > div {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
}
.waitlist-aside-meta > div:last-child { border-bottom: none; }
.waitlist-aside-meta span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #706a60;
  margin-bottom: 5px;
}
.waitlist-aside-meta strong { font-size: 14px; color: var(--ink); }
.waitlist-progress {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.waitlist-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b776f;
}
.waitlist-progress-step span {
  width: 24px;
  height: 24px;
  border: 1px solid #bdb7ab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
}
.waitlist-progress-step.active { color: var(--ink); }
.waitlist-progress-step.active span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.waitlist-progress-step.complete span {
  border-color: #1d6e39;
  background: #1d6e39;
  color: var(--white);
}
.waitlist-progress-divider {
  flex: 1;
  height: 1px;
  background: #c9c4ba;
  margin: 0 12px;
}
.waitlist-card {
  background: var(--mist);
  border: 1px solid var(--rule);
  padding: 24px;
}
.waitlist-pane.is-hidden { display: none; }
.waitlist-pane h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  margin-bottom: 8px;
}
.waitlist-pane p { font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid #d7d2c8;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.waitlist-grid .field { display: flex; flex-direction: column; gap: 8px; }
.waitlist-grid .field-full { grid-column: 1 / -1; }
.waitlist-grid .field.has-error input,
.waitlist-grid .field.has-error select,
.waitlist-grid .field.has-error textarea {
  border-color: #a1192a;
  box-shadow: 0 0 0 1px rgba(161,25,42,0.12);
}
.field-error {
  min-height: 16px;
  font-size: 12px;
  line-height: 1.3;
  color: #a1192a;
}
.waitlist-message {
  margin-top: 14px;
  font-size: 13px;
  color: var(--slate);
  min-height: 20px;
}
.waitlist-message.success { color: #1d6e39; }
.waitlist-message.error { color: #a1192a; }
.waitlist-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.waitlist-back-btn {
  color: var(--ink);
  border-color: #b7b1a6;
}
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}
.waitlist-modal.is-open { display: block; }
.waitlist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(2px);
}
.waitlist-modal-card {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  margin: 14vh auto 0;
  background: #ffffff;
  border: 1px solid #d8d2c8;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}
.waitlist-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #6d6960;
}
.waitlist-modal-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.waitlist-modal-badge.success { color: #1d6e39; }
.waitlist-modal-badge.error { color: #a1192a; }
.waitlist-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  line-height: 0.95;
  margin-bottom: 12px;
}
.waitlist-modal-message {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
}

/* ── TICKET ACCESS ── */
#ticket-access { background: var(--ink); color: var(--white); }
#ticket-access .section-sub { color: rgba(255,255,255,0.72); max-width: 760px; }
.ticket-access-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.ticket-access-shell {
  width: 100%;
}
.ticket-flow {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
}
.ticket-progress {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.ticket-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ticket-progress-step span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.ticket-progress-step.active { color: var(--white); }
.ticket-progress-step.active span {
  background: var(--red);
  border-color: var(--red);
}
.ticket-progress-step.complete span {
  background: #1d6e39;
  border-color: #1d6e39;
}
.ticket-progress-divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 8px;
}
.ticket-pane.is-hidden { display: none; }
.ticket-pane h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1.04;
  margin-bottom: 14px;
}
.ticket-pane p { color: rgba(255,255,255,0.74); margin-bottom: 14px; }
.ticket-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; max-width: 460px; }
.ticket-form label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ticket-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.24);
  color: var(--white);
  padding: 12px;
  font-size: 14px;
}
.ticket-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.ticket-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ticket-access-message { min-height: 20px; font-size: 13px; color: rgba(255,255,255,0.72); }
.ticket-access-message.success { color: #9ee8b7; }
.ticket-access-message.error { color: #ffb8c3; }
.ticket-result.is-empty .ticket-result-card { display: none; }
.ticket-result:not(.is-empty) .ticket-result-placeholder { display: none; }
.ticket-result-placeholder {
  border: 1px dashed rgba(255,255,255,0.24);
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ticket-result-placeholder.is-hidden { display: none; }
.ticket-placeholder-title {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}
.ticket-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.ticket-brand {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
}
.ticket-status-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 8px;
  background: rgba(255,255,255,0.12);
}
.ticket-status-pill.winner { background: rgba(212,160,23,0.3); color: #ffe299; }
.ticket-status-pill.registered { background: rgba(37, 99, 235, 0.28); color: #bfdbfe; }
.ticket-status-pill.approved { background: rgba(22, 163, 74, 0.3); color: #bbf7d0; }
.ticket-status-pill.pending { background: rgba(245, 158, 11, 0.3); color: #fde68a; }
.ticket-status-pill.rejected { background: rgba(220, 38, 38, 0.3); color: #fecaca; }
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.ticket-grid span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.ticket-grid strong { font-size: 15px; }
.ticket-pass-state {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticket-pass-state.paid,
.ticket-pass-state.approved { color: #9ee8b7; }
.ticket-pass-state.pending { color: #ffe299; }
.ticket-pass-state.failed,
.ticket-pass-state.cancelled,
.ticket-pass-state.rejected { color: #ffb8c3; }
.ticket-qr-wrap {
  background: var(--white);
  padding: 16px;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.ticket-qr-image {
  width: min(260px, 100%);
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--white);
}
.ticket-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ticket-actions .btn:disabled {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
}
.ticket-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.pass-legend {
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 12px;
}
.pass-legend-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 8px;
}
.pass-legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pass-legend-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
}
.pass-legend-chip.winner { background: rgba(212,160,23,0.24); color: #ffe299; }
.pass-legend-chip.approved { background: rgba(22,163,74,0.22); color: #bbf7d0; }
.pass-legend-chip.pending { background: rgba(245,158,11,0.22); color: #fde68a; }
.pass-legend-chip.rejected { background: rgba(220,38,38,0.22); color: #fecaca; }
.ticket-aside {
  position: sticky;
  top: 82px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticket-aside-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 85% 15%, rgba(212,160,23,0.18), transparent 40%),
    linear-gradient(145deg, #0f2f72 0%, #05122f 45%, #400a18 100%);
}
.ticket-aside-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  margin-bottom: 10px;
}
.ticket-aside-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  margin-bottom: 12px;
}
.ticket-aside-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ticket-aside-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-aside-card li {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  display: flex;
  gap: 8px;
}
.ticket-aside-card li::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  margin-top: 4px;
}
.ticket-aside-meta {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
}
.ticket-aside-meta > div {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ticket-aside-meta > div:last-child { border-bottom: none; }
.ticket-aside-meta span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 6px;
}
.ticket-aside-meta strong { font-size: 14px; color: rgba(255,255,255,0.95); }
.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: none;
}
.ticket-modal.is-open { display: block; }
.ticket-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(2px);
}
.ticket-modal-card {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  margin: 14vh auto 0;
  border: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(165deg, #0f2f72 0%, #081730 48%, #2f0a12 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 22px 65px rgba(0,0,0,0.36);
}
.ticket-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.ticket-modal-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ticket-modal-badge.error { color: #ffb8c3; }
.ticket-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  line-height: 0.95;
  margin-bottom: 12px;
}
.ticket-modal-message {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

/* ── FOOTER ── */
footer {
  background: #060606;
  padding: 64px 48px 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand {}
.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.footer-logo .brand-logo-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; color: var(--white);
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.15); }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── MOBILE ── */
@media (max-width: 1200px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 1460px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-block; }
  nav.mobile-open .mobile-menu { display: block; }
}

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-block; }
  nav.mobile-open .mobile-menu { display: block; }
}

@media (max-width: 900px) {
  section { padding: 64px 24px; }
  .gallery-archive-hero { padding: 112px 24px 72px; }
  .gallery-archive-body { padding: 44px 24px 72px; }
  .gallery-year-nav { margin-bottom: 48px; }
  .gallery-year-section { padding-bottom: 58px; }
  .gallery-year-section + .gallery-year-section { padding-top: 50px; }
  #program .section-sub { margin-bottom: 20px; }
  .program-tabs {
    top: 72px;
    gap: 6px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .tab-btn {
    font-size: 11px;
    padding: 10px 12px;
  }
  .day-header-bar {
    padding: 16px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .program-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .prog-time { font-size: 10px; }
  .prog-title { font-size: 15px; }
  .prog-desc { font-size: 12px; }
  .prog-badge { justify-self: start; }
  #flyer-highlight { padding: 54px 24px 32px; }
  .flyer-shell { grid-template-columns: 1fr; }
  .flyer-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #fff;
  }
  .hero { min-height: auto; padding: 112px 24px 160px; }
  .flyer-meta-grid { grid-template-columns: 1fr 1fr; }
  .flyer-meta-item .value { font-size: 19px; }
  .hero h1 { font-size: clamp(38px, 12vw, 64px); margin-bottom: 20px; }
  .hero-sub { font-size: 16px; max-width: 100%; margin-bottom: 28px; }
  .hero-meta { gap: 20px; margin-bottom: 30px; padding-bottom: 28px; }
  .hero-stats { display: none; }
  .hero-logo-strip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-logo-chip { min-height: 92px; padding: 7px; }
  .hero-logo-chip-img { max-height: 82px; }
  .countdown-bar { gap: 20px; padding: 12px 24px; flex-wrap: wrap; }
  .countdown-units { width: 100%; justify-content: center; }
  .about-grid, .startup-layout, .diaspora-layout { grid-template-columns: 1fr; gap: 40px; }
  .startup-intro { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .startup-winner { grid-template-columns: 1fr; }
  .startup-winner-copy { padding: 34px; }
  .startup-directory-grid { grid-template-columns: 1fr; }
  .panels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-card[style] { grid-column: span 1 !important; }
  .panel-topics[style] { flex-direction: column !important; gap: 8px !important; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  body[data-page="videos"] .video-grid { grid-template-columns: 1fr 1fr; }
  .video-modal-card {
    width: min(920px, calc(100vw - 20px));
    margin-top: 4vh;
    padding: 16px;
  }
  .sponsor-packages { grid-template-columns: repeat(2, 1fr); }
  .exhibitor-strip-grid,
  .exhibitor-addons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ticket-access-layout { grid-template-columns: 1fr; }
  .ticket-aside { position: static; }
  .ticket-grid { grid-template-columns: 1fr; }
  .partnerwl-hero,
  .partnerwl-intro-band,
  .partnerwl-pavilion,
  .partnerwl-pathways,
  .partnerwl-inquiry { padding-left: 24px; padding-right: 24px; }
  .partnerwl-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partnerwl-grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partnerwl-path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opp-categories { grid-template-columns: 1fr; }
  .gallery-grid-albums { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-modal-card { width: min(1040px, calc(100vw - 20px)); margin-top: 3vh; padding: 14px; }
  .gallery-modal-stage { min-height: 320px; }
  .gallery-modal-thumbs { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-logo-wrap { min-height: 122px; }
  .partners-logo-img { max-height: 98px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .program-item { grid-template-columns: 1fr; }
  .prog-badge { display: inline-flex; }
  .waitlist-layout { grid-template-columns: 1fr; }
  .waitlist-aside { position: static; }
  .waitlist-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 56px 18px; }
  .gallery-archive-hero { padding: 104px 18px 60px; }
  .gallery-archive-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .gallery-archive-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .gallery-archive-stats > div { min-width: 0; padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .gallery-archive-stats > div:nth-child(2) { border-right: 0; }
  .gallery-archive-stats > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .gallery-archive-body { padding: 36px 18px 58px; }
  .gallery-year-nav { margin-right: -18px; margin-bottom: 42px; }
  .gallery-year-nav > span { min-width: 105px; }
  .gallery-year-link { min-width: 116px; }
  .gallery-year-header { align-items: flex-start; flex-direction: column; gap: 13px; }
  .gallery-year-count { align-self: stretch; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); }
  .gallery-item-card-lead { grid-column: span 1; }
  .gallery-item-card-lead .gallery-item-media { aspect-ratio: 16/10.5; }
  .gallery-open-mark { opacity: 1; transform: none; }
  .gallery-item-meta { min-height: 0; }
  .panels-grid { grid-template-columns: 1fr; }
  .program-tabs { top: 66px; }
  .tab-btn {
    width: 100%;
    text-align: left;
  }
  #flyer-highlight { padding: 42px 18px 24px; }
  .flyer-content { padding: 18px; }
  .flyer-actions .btn { width: 100%; text-align: center; }
  .flyer-image {
    width: 100%;
    height: auto;
    max-height: none;
  }
  nav { height: 80px; padding: 0 18px; }
  .flyer-meta-grid { grid-template-columns: 1fr; }
  .flyer-meta-item .value { font-size: 18px; }
  .mobile-menu { top: 80px; }
  .nav-logo { font-size: 16px; gap: 10px; }
  .brand-logo-image { width: 52px; height: 52px; padding: 4px; }
  .nav-logo-badge { font-size: 10px; padding: 3px 8px; }
  .hero { padding: 102px 18px 146px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.14em; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-logo-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-logo-chip {
    min-height: 112px;
    padding: 8px;
    border-radius: 8px;
  }
  .hero-logo-chip-img {
    height: 100%;
    max-height: 100px;
    border-radius: 6px;
  }
  .startup-brand { width: 100%; justify-content: flex-start; }
  .startup-brand-logo { width: min(260px, 90vw); max-height: 64px; }
  .startup-winner { margin-top: 36px; }
  .startup-winner-badge { top: 12px; left: 12px; padding: 8px 10px; }
  .startup-winner-figure figcaption { position: static; padding: 12px 14px; background: #050b15; }
  .startup-winner-copy { padding: 26px 20px; }
  .startup-winner-copy h3 { font-size: 30px; }
  .startup-directory-heading { padding: 24px 20px 20px; }
  .startup-finalist { grid-template-columns: 34px minmax(0, 1fr); padding: 12px 14px; }
  .startup-finalist-winner { grid-column: 2; justify-self: start; }
  .startup-judge-list li { padding: 12px 16px; }
  .startup-recap-layout { margin-top: 50px; }
  .startup-prize { padding: 28px 22px; }
  .prize-amount { font-size: 56px; }
  .countdown-label { width: 100%; text-align: center; }
  .countdown-unit { min-width: 44px; }
  .countdown-num { font-size: 24px; }
  .section-sub { margin-bottom: 34px; font-size: 15px; }
  body[data-page="videos"] .video-grid { grid-template-columns: 1fr; }
  .video-modal-card { margin-top: 3vh; }
  .video-player-host,
  .video-player-host iframe,
  .video-player-host video,
  .video-player-empty {
    min-height: 220px;
  }
  .waitlist-shell { padding: 16px; }
  .waitlist-card { padding: 14px; }
  .waitlist-aside-card { padding: 16px; }
  .waitlist-progress { gap: 8px; }
  .waitlist-progress-step { font-size: 9px; letter-spacing: 0.08em; }
  .waitlist-actions { flex-direction: column; }
  .waitlist-actions .btn { width: 100%; text-align: center; }
  .waitlist-modal-title { font-size: 28px; }
  .waitlist-modal-card { padding: 20px; }
  .ticket-modal-title { font-size: 28px; }
  .ticket-modal-card { padding: 20px; }
  .partnerwl-hero,
  .partnerwl-intro-band,
  .partnerwl-pavilion,
  .partnerwl-pathways,
  .partnerwl-inquiry { padding-left: 18px; padding-right: 18px; }
  .partnerwl-hero { padding-top: 104px; padding-bottom: 56px; }
  .partnerwl-hero-title { font-size: clamp(34px, 12vw, 56px); }
  .partnerwl-hero-sub { font-size: 16px; }
  .partnerwl-hero-stats { grid-template-columns: 1fr; }
  .partnerwl-grid-cards { grid-template-columns: 1fr; }
  .partnerwl-path-grid { grid-template-columns: 1fr; }
  .partnerwl-inquiry-shell { padding: 18px; }
  .speakers-grid { grid-template-columns: 1fr; }
  .sponsor-packages { grid-template-columns: 1fr; }
  .sponsor-logo { min-width: 100%; padding: 22px 18px; }
  .sponsor-logo-img { max-width: 220px; max-height: 64px; }
  .exhibitor-strip-grid,
  .exhibitor-addons-grid { grid-template-columns: 1fr; }
  .exhibitor-strip-item,
  .exhibitor-addon-item { border-right: none; }
  .gallery-grid-albums { grid-template-columns: 1fr; }
  .gallery-modal-card { width: 100vw; max-height: 100vh; min-height: 100vh; margin: 0; border: 0; padding: 14px; }
  .gallery-modal-stage { min-height: 52vh; }
  .gallery-modal-close { top: 10px; right: 10px; }
  .gallery-modal-head { flex-direction: column; }
  .gallery-modal-counter { align-self: flex-start; }
  .gallery-nav { width: 36px; height: 36px; font-size: 24px; }
  .gallery-thumb { flex-basis: 82px; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 12px; }
  .partners-logo-wrap { min-height: 112px; }
  .partners-logo-img { max-height: 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .program-item { grid-template-columns: 1fr; gap: 8px; padding: 12px; }
  .prog-time { font-size: 10px; }
}
