/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09101b;
  --bg-light: #f5f7f8;
  --fg: #0d1827;
  --fg-light: #f0f2f4;
  --white: #ffffff;
  --gold: #d6ac75;
  --gold-dark: #7f5d3b;
  --border-dark: rgba(255,255,255,0.12);
  --border-light: rgba(13,24,39,0.1);
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-light: rgba(255,255,255,0.9);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-light);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(9,16,27,0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.nav-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.nav-cta:hover { background: rgba(255,255,255,0.12); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== HERO ===== */
.hero-section {
  background: var(--bg);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-copy {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.stat-value {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-top: 12px;
}
.stat-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  line-height: 1.5;
}
.hero-image-wrap {
  position: relative;
}
.image-frame {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  padding: 12px;
  box-shadow: 0 40px 120px rgba(5,10,18,0.45);
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}
.hero-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  max-width: 300px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,18,30,0.82);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}
.hero-badge-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.icon-gold { color: var(--gold); }
.hero-badge-text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.dark-section { background: var(--bg); }

.section-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(13,24,39,0.5);
  margin-bottom: 20px;
}
.section-kicker.light { color: rgba(255,255,255,0.45); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-copy {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(13,24,39,0.65);
}
.section-copy.light { color: rgba(255,255,255,0.6); }

/* ===== OVERVIEW ===== */
.overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.editorial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 4px 40px rgba(13,24,39,0.06);
}
.overview-layers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.layer-tile {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
}
.layer-tile.active-layer {
  background: var(--fg);
  border-color: var(--fg);
}
.layer-tile.active-layer .layer-num,
.layer-tile.active-layer .layer-title { color: var(--white); }
.layer-num {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(13,24,39,0.45);
  margin-bottom: 6px;
}
.layer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.overview-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(13,24,39,0.7);
  margin-bottom: 16px;
}
.overview-text:last-child { margin-bottom: 0; }

/* ===== RESEARCH ===== */
.research-header {
  max-width: 820px;
  margin-bottom: 32px;
}
.research-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.research-metric-card {
  border-radius: 20px;
  padding: 24px;
}
.research-metric-card .stat-label {
  color: rgba(13,24,39,0.48);
}
.research-metric-card .stat-note {
  color: rgba(13,24,39,0.58);
}
.research-metric-value {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-top: 10px;
}
.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.research-list {
  margin-top: 14px;
  padding-left: 20px;
  color: rgba(13,24,39,0.72);
}
.research-list li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.65;
}
.research-ranking {
  list-style: none;
  margin-top: 8px;
}
.research-ranking li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(13,24,39,0.08);
  font-size: 14px;
  color: rgba(13,24,39,0.75);
}
.research-ranking li span:last-child {
  font-family: var(--font-mono);
  color: rgba(13,24,39,0.55);
}
.research-ranking li:last-child { border-bottom: none; }
.research-conclusion {
  margin-top: 18px;
}
.research-grid-long {
  margin-top: 18px;
}
.research-source-list {
  margin-top: 14px;
  border: 1px solid rgba(13,24,39,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.research-source-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(13,24,39,0.72);
  border-bottom: 1px solid rgba(13,24,39,0.08);
}
.research-source-item span:last-child {
  font-family: var(--font-mono);
  color: rgba(13,24,39,0.55);
}
.research-source-item:last-child { border-bottom: none; }
.cohort-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cohort-item {
  background: var(--bg-light);
  border: 1px solid rgba(13,24,39,0.08);
  border-radius: 14px;
  padding: 14px;
}
.cohort-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.cohort-size {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.cohort-note {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(13,24,39,0.54);
}
.research-correlation {
  margin-top: 18px;
}
.correlation-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(13,24,39,0.08);
  border-radius: 14px;
}
.correlation-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}
.correlation-table th,
.correlation-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(13,24,39,0.08);
  text-align: left;
}
.correlation-table th {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(13,24,39,0.45);
}
.correlation-table td {
  color: rgba(13,24,39,0.72);
}
.correlation-table td:first-child {
  font-weight: 500;
  color: var(--fg);
}
.correlation-table tr:last-child td { border-bottom: none; }
.research-quote {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(13,24,39,0.1);
  background: var(--bg-light);
  font-size: 14px;
  color: rgba(13,24,39,0.7);
  line-height: 1.7;
}
.research-priority-extended {
  margin-top: 18px;
}
.research-ranking.extended li {
  padding: 11px 0;
}
.research-ranking.extended strong {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: rgba(13,24,39,0.5);
  margin-right: 8px;
}
.mustcover-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.mustcover-item {
  border: 1px solid rgba(13,24,39,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fbfcfd;
}
.mustcover-title {
  font-weight: 600;
  color: var(--fg);
  font-size: 14px;
}
.mustcover-meta {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(13,24,39,0.52);
}
.mustcover-item p {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(13,24,39,0.7);
  line-height: 1.6;
}

/* ===== TRACKS ===== */
.tracks-header {
  margin-bottom: 48px;
  max-width: 680px;
}
.tracks-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}
.tracks-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.track-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
}
.track-btn:hover { background: rgba(255,255,255,0.08); }
.track-btn.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.track-num {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.38);
  flex-shrink: 0;
  min-width: 90px;
}
.track-btn.secondary .track-num { color: rgba(255,255,255,0.3); }
.track-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.track-score {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.track-detail {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  min-height: 400px;
}
.track-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.track-detail-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.track-detail-summary {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.score-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px; height: 90px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.score-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.score-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
}
.track-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.track-sub-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.track-questions { list-style: none; }
.track-questions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.track-questions li::before {
  content: '○';
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 2px;
}
.track-sections { list-style: none; }
.track-sections li {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.track-sections li:hover { background: rgba(255,255,255,0.09); }
.section-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.section-format {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin-top: 3px;
}
.track-speaker-profile {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.tracks-image-row {
  margin-top: 48px;
}
.tracks-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.tracks-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== FORMATS ===== */
.formats-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.formats-img-wrap {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.formats-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.formats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.format-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 20px rgba(13,24,39,0.05);
  transition: box-shadow 0.2s;
}
.format-card:hover { box-shadow: 0 8px 40px rgba(13,24,39,0.1); }
.format-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--fg);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.format-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.format-areas {
  font-size: 12px;
  color: rgba(13,24,39,0.45);
  margin-bottom: 10px;
}
.format-why {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(13,24,39,0.68);
}

/* ===== LAYERS ===== */
.layers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.layers-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.layer-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(13,24,39,0.04);
}
.layer-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-light);
  margin-bottom: 14px;
  color: rgba(13,24,39,0.6);
}
.layer-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.layer-card-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(13,24,39,0.6);
}
.layers-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(13,24,39,0.08);
}
.layers-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===== COMMITTEE ===== */
.committee-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 48px;
  align-items: start;
}
.balance-card { margin-top: 28px; }
.panel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(13,24,39,0.45);
  margin-bottom: 20px;
}
.balance-bars { display: flex; flex-direction: column; gap: 16px; }
.balance-row {}
.balance-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(13,24,39,0.68);
  margin-bottom: 8px;
}
.balance-pct {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  font-weight: 600;
}
.balance-track {
  height: 8px;
  border-radius: 100px;
  background: #e7ebef;
  overflow: hidden;
}
.balance-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #0d1827, #7c9365, #d6ac75);
}
.committee-right { display: flex; flex-direction: column; gap: 20px; }
.actions-card {}
.actions-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.action-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-light);
}
.action-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.action-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(13,24,39,0.75);
  padding-top: 6px;
}
.speakers-card {}
.speakers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}
.speakers-table th {
  text-align: left;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(13,24,39,0.4);
  border-bottom: 1px solid var(--border-light);
}
.speakers-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(13,24,39,0.06);
  color: rgba(13,24,39,0.75);
  line-height: 1.5;
}
.speakers-table tr:last-child td { border-bottom: none; }
.speakers-table td:first-child {
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--fg);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.footer-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .overview-grid { grid-template-columns: 1fr; }
  .research-metrics { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .cohort-grid { grid-template-columns: 1fr; }
  .tracks-layout { grid-template-columns: 1fr; }
  .tracks-sidebar { flex-direction: row; flex-wrap: wrap; }
  .track-btn { flex: 1; min-width: 140px; }
  .formats-grid { grid-template-columns: 1fr; }
  .layers-grid { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-section { padding-top: 100px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .formats-cards { grid-template-columns: 1fr; }
  .layers-cards { grid-template-columns: 1fr; }
  .track-two-col { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .overview-layers { grid-template-columns: 1fr; }
  .research-metrics { grid-template-columns: 1fr; }
}

/* ===== GLOBAL DARK THEME OVERRIDE ===== */
body {
  background: var(--bg);
  color: rgba(255,255,255,0.9);
}

.section:not(.dark-section) {
  background: var(--bg);
}

.editorial-card,
.format-card,
.layer-card,
.action-item,
.cohort-item,
.mustcover-item,
.research-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.section-kicker,
.section-title,
.section-copy,
.panel-label,
.overview-text,
.layer-title,
.layer-card-title,
.layer-card-note,
.format-title,
.format-areas,
.format-why,
.action-text,
.research-list,
.research-list li,
.research-ranking li,
.research-source-item,
.cohort-name,
.cohort-note,
.mustcover-title,
.mustcover-meta,
.mustcover-item p,
.correlation-table th,
.correlation-table td,
.speakers-table th,
.speakers-table td,
.balance-label-row,
.balance-pct {
  color: rgba(255,255,255,0.78);
}

.research-metric-card .stat-label,
.research-metric-card .stat-note,
.research-source-item span:last-child,
.research-ranking li span:last-child,
.cohort-note,
.mustcover-meta {
  color: rgba(255,255,255,0.55);
}

.research-metric-value,
.cohort-size,
.mustcover-title,
.section-title,
.speakers-table td:first-child {
  color: rgba(255,255,255,0.95);
}

.overview-layers .layer-tile {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.overview-layers .layer-tile.active-layer {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
}

.overview-layers .layer-num,
.overview-layers .layer-title {
  color: rgba(255,255,255,0.8);
}

.research-source-list,
.correlation-table-wrap {
  border-color: rgba(255,255,255,0.14);
}

.research-source-item,
.correlation-table th,
.correlation-table td,
.research-ranking li,
.speakers-table th,
.speakers-table td {
  border-bottom-color: rgba(255,255,255,0.1);
}

.balance-track {
  background: rgba(255,255,255,0.18);
}
