*, *::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;
}

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; }

/* ── 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); }
.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;
}
.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;
}
.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;
  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-num {
  font-family: 'Syne', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.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; }

/* ── 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-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-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::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 { background: #090b13; }
#gallery .section-sub { color: rgba(255,255,255,0.72); max-width: 760px; }
.gallery-grid-albums {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  text-align: left;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
}
.gallery-item-card:hover .gallery-overlay { opacity: 1; }
.gallery-item-card:hover .gallery-photo { transform: scale(1.04); }
.gallery-item-media {
  position: relative;
  aspect-ratio: 16/11;
  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.85;
  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.84);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 6px 8px;
}
.gallery-item-meta {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-item-title {
  font-size: 17px;
  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: rgba(255,255,255,0.66);
}
.gallery-item-date {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.gallery-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.gallery-no-results {
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 26px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}
.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(5,7,12,0.78);
  backdrop-filter: blur(2px);
}
.gallery-modal-card {
  position: relative;
  width: min(1120px, calc(100vw - 30px));
  margin: 4vh auto 0;
  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: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.72);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.gallery-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.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-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: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}
.gallery-thumb {
  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 {
  margin-top: 32px; text-align: center;
}

/* ── 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; }

/* ── 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; }

/* ── 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-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; }
  #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; }
  .panels-grid { grid-template-columns: 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; }
  .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; }
  .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-head { flex-direction: column; }
  .gallery-modal-counter { align-self: flex-start; }
  .gallery-nav { width: 36px; height: 36px; font-size: 24px; }
  .gallery-modal-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .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; }
}
