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

:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #0d1424;
  --bg-card: #111a2e;
  --bg-card-hover: #162040;
  --text-primary: #e8edf5;
  --text-secondary: #8a95aa;
  --text-muted: #5a6578;
  --accent: #2E5CF5;
  --accent-glow: rgba(46, 92, 245, 0.15);
  --gold: #F0A830;
  --gold-glow: rgba(240, 168, 48, 0.10);
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-primary); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-top: 28px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 60px;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 92, 245, 0.3);
}
.hero-cta svg { width: 16px; height: 16px; }
.hero-cta.static { animation: none; opacity: 1; }

/* ── MARQUEE ── */
.marquee-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  white-space: nowrap;
  padding: 0 24px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 24px;
}
.marquee-item::after {
  content: '\00b7';
  color: var(--accent);
  font-size: 0.6em;
}
.marquee-item:nth-child(odd) { font-style: italic; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section {
  padding: 120px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── ABOUT ── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-mission {
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.about-mission h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.about-mission p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FORMULA CARDS ── */
.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.formula-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.formula-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}
.formula-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.formula-card .plus {
  font-size: 36px;
  color: var(--accent);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -12px 0;
  position: relative;
  z-index: 2;
}

/* ── CAPITAL PATHWAYS ── */
.pathway-intro {
  max-width: 680px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pathway-staircase {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 60px;
  position: relative;
  min-height: 380px;
  z-index: 2;
}

.pathway-step {
  flex: 1 0 120px;
  min-height: 148px;
  padding: 24px 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: calc(var(--step) * 28px);
  transition: border-color 0.3s, border-radius 0.2s;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.pathway-step:not(.future)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.pathway-step.future {
  border-style: dashed;
  border-color: var(--border-light);
  background: rgba(17, 26, 46, 0.3);
}

.pathway-step:hover {
  z-index: 10;
  border-color: rgba(46, 92, 245, 0.3);
  border-bottom-color: transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.pathway-step.future .step-badge {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.step-stage {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ── Tentacle drawer ── */
.step-drawer {
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100%);
  background: var(--bg-card);
  border: 1px solid rgba(46, 92, 245, 0.3);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 14px 16px 16px;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.4s ease, opacity 0.3s ease;
  pointer-events: none;
}

.pathway-step.future .step-drawer {
  border-style: dashed;
  border-top: none;
}

.pathway-step:hover .step-drawer {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  pointer-events: auto;
}

.tentacle-group {
  margin-bottom: 10px;
}
.tentacle-group:last-child {
  margin-bottom: 0;
}

.tentacle-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 700;
}

.tentacle-list {
  position: relative;
  padding-left: 14px;
}

.tentacle-list::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--border-light);
}

.tentacle-item {
  position: relative;
  padding: 3px 0 3px 10px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.3;
  display: block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tentacle-item::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--border-light);
}

.pathway-step:hover .tentacle-item {
  opacity: 1;
  transform: translateX(0);
}
.pathway-step:hover .tentacle-item:nth-child(1) { transition-delay: 0.05s; }
.pathway-step:hover .tentacle-item:nth-child(2) { transition-delay: 0.1s; }
.pathway-step:hover .tentacle-item:nth-child(3) { transition-delay: 0.15s; }
.pathway-step:hover .tentacle-item:nth-child(4) { transition-delay: 0.2s; }
.pathway-step:hover .tentacle-item:nth-child(5) { transition-delay: 0.25s; }

/* ── Support Networks panel ── */
.org-panel {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.org-panel-header {
  margin-bottom: 16px;
}

.axis-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin-bottom: 16px;
  border-radius: 1px;
}

.axis-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
}

.axis-sublabel {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  column-gap: 14px;
  row-gap: 10px;
  grid-auto-flow: dense;
}

.org-card {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.2s, background 0.3s;
  overflow: hidden;
  min-width: 0;
  position: relative;
}
.org-card:hover {
  border-color: rgba(46, 92, 245, 0.3);
  transform: translateY(-2px);
}
.org-card.expanded {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: none;
  z-index: 3;
}

/* Florida org accent */
.org-card[data-fl] {
  border-left: 2px solid var(--gold);
}
.org-card[data-fl]:hover {
  border-color: rgba(240, 168, 48, 0.4);
  border-left-color: var(--gold);
}
.org-card[data-fl].expanded {
  border-color: var(--gold);
}

.org-fl-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
}
.org-fl-badge svg {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.org-card-summary {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.org-card-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.org-card.expanded .org-card-detail {
  grid-template-rows: 1fr;
}
.org-card-detail > * {
  overflow: hidden;
}

.org-about {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 10px 0 8px;
}

.org-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}

.org-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.org-link::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 3.5a.5.5 0 0 0 0 1H10.793L3.146 11.854a.5.5 0 1 0 .708.708L11.5 4.914V9a.5.5 0 0 0 1 0V3.5H6.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 3.5a.5.5 0 0 0 0 1H10.793L3.146 11.854a.5.5 0 1 0 .708.708L11.5 4.914V9a.5.5 0 0 0 1 0V3.5H6.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.org-link:hover {
  color: var(--gold);
}

/* Org logo */
.org-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.org-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.org-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.org-meta {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.org-funding {
  font-size: 13px;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── EVENTS ── */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 40px;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: var(--border-light); }
.event-date-block {
  text-align: center;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  min-width: 100px;
}
.event-date-block .month {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.event-date-block .day {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.1;
}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.event-info .time {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.event-info .location {
  font-size: 14px;
  color: var(--text-secondary);
}
.event-cta {
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: 60px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.event-cta:hover {
  background: var(--accent);
  color: #fff;
}
.event-cta.coming-soon {
  border-color: var(--text-muted);
  color: var(--text-muted);
  cursor: default;
}
.event-cta.coming-soon:hover {
  background: transparent;
  color: var(--text-muted);
}

.no-events-msg {
  margin-top: 40px;
  padding: 60px 40px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 17px;
}
.past-events-heading {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 80px;
  margin-bottom: 0;
  color: var(--text-secondary);
}
.event-card.past {
  opacity: 0.6;
}
.event-card.past .event-date-block {
  border-color: var(--border);
}
.event-card.past .event-date-block .month {
  color: var(--text-muted);
}

/* ── SPEAKERS GRID ── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.speaker-card {
  display: block;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.speaker-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.speaker-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 92, 245, 0.3);
}
.speaker-card:hover::before { opacity: 1; }
.speaker-card .initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.speaker-card .speaker-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.speaker-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.speaker-card .speaker-title {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ── SPEAKER PROFILE PAGE ── */
.speaker-profile {
  padding: 140px 0 80px;
  min-height: 80vh;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 48px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }
.profile-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card);
}
.profile-initials {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.profile-info h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.profile-role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.profile-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.profile-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.profile-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.profile-social .profile-company-link {
  width: auto;
  border-radius: 60px;
  padding: 0 16px;
  height: 36px;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.profile-bio {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 640px;
}

/* ── PARTNERS GRID (homepage) ── */
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.partner-preview {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.partner-preview:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}
.partner-preview img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.85;
}
.partner-preview h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}
.partner-preview p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.partner-preview .partner-partnership {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0.8;
}

/* ── PARTNERS PAGE ── */
.partners-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.partners-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.partners-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.partner-page-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.partner-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.partner-page-card:hover { border-color: var(--border-light); }
.partner-page-card img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.partner-page-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}
.partner-page-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.partner-page-card .partner-partnership {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}
.partner-page-card .partner-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.partner-page-card .partner-link:hover { gap: 10px; }

.become-partner {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.become-partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.become-partner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}
.become-partner p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ── NEWS ── */
.news-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}
.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.news-card-summary {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.news-card-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card:hover .news-card-link { gap: 10px; }

.news-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  padding: 80px 0;
}

/* News article page */
.news-article {
  padding: 120px 0 80px;
}
.news-article .back-link {
  display: inline-block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.news-article .back-link:hover { color: var(--accent); }
.news-article-header {
  max-width: 760px;
  margin-bottom: 40px;
}
.news-article-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}
.news-article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.news-article-author {
  font-size: 15px;
  color: var(--text-secondary);
}
.news-article-image {
  max-width: 760px;
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.news-article-image img {
  width: 100%;
  display: block;
}
.news-article-content {
  max-width: 760px;
}
.news-article-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 40px 0 16px;
}
.news-article-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 32px 0 12px;
}
.news-article-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.news-article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.news-article-content a:hover {
  color: var(--gold);
}
.news-article-content strong {
  color: var(--text-primary);
}
.news-article-content .callout {
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  margin: 32px 0;
}
.news-article-content .callout h2 {
  margin-top: 0;
}
.news-article-content .callout p:last-child {
  margin-bottom: 0;
}
.news-article-not-found {
  text-align: center;
  padding: 80px 0;
}
.news-article-not-found h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}
.news-article-not-found p {
  color: var(--text-secondary);
}

/* ── EXECUTIVE TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--border-light); }
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  background: var(--bg-secondary);
}
.team-name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* ── CONTACT ── */
#contact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.contact-info a.email-link {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 92, 245, 0.3);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-logo img { height: 28px; }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #about .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .formula-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr 1fr; }
  .partners-logo-grid { grid-template-columns: 1fr 1fr; }
  .partners-page-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-hero { padding: 120px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pathway-staircase {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 12px;
  }
  .pathway-step {
    flex: none;
    min-height: auto;
    margin-bottom: 0 !important;
    margin-left: calc(var(--step) * 8px);
  }
  /* Show drawers inline on mobile — no hover needed */
  .step-drawer {
    position: static;
    clip-path: none;
    opacity: 1;
    padding: 12px 0 0;
    pointer-events: auto;
    border: none;
    background: transparent;
  }
  .tentacle-item {
    opacity: 1;
    transform: none;
  }
  .pathway-step:hover {
    border-radius: var(--radius-sm);
    border-bottom-color: var(--border);
  }
  .pathway-step.future:hover {
    border-bottom-color: var(--border-light);
  }
  .org-panel {
    margin-top: 32px;
  }
  .org-grid {
    grid-template-columns: 1fr;
  }
  .org-card {
    grid-column: 1 / -1 !important;
  }
  .event-card { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .event-date-block { justify-self: center; }
  .event-cta { justify-self: center; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 80px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .profile-layout { flex-direction: column; align-items: center; text-align: center; }
  .profile-bio { max-width: 100%; }
}
@media (max-width: 480px) {
  .speakers-grid { grid-template-columns: 1fr; }
  .partners-logo-grid { grid-template-columns: 1fr; }
}
