/* ══════════════════════════════════════════════
   home.css  —  Video Strip · Hero · Stats
                Goals · Timeline · Themes
                Program · Speakers · Partners
                Press & Contact
   ══════════════════════════════════════════════ */

/* ── Video Strip ── */
.video-strip {
  display: flex;
  height: 100vh;
  max-height: 820px;
  min-height: 420px;
  background: #000;
  padding-top: 80px; /* clear fixed nav */
}

.video-cell {
  position: relative;
  overflow: hidden;
}
.video-landscape { flex: 3; }
.video-portrait  { flex: 1.25; }

.video-cell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
}

.video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--r-full);
}

.video-divider {
  width: 3px;
  background: #000;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .video-strip { flex-direction: column; height: 70vw; max-height: 500px; }
  .video-portrait { display: none; }
  .video-divider  { display: none; }
}

/* ── Hero ── */
.hero {
  background: var(--grad-hero);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image:
    radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .05s ease both;
}
.badge-pulse { animation: fadeUp .6s .05s ease both, pulseRing 2.2s ease-out .7s infinite; }

/* Title */
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  animation: fadeUp .6s .18s ease both;
}
.hero-sub {
  display: block;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-top: .25rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .32s ease both;
}

/* Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
  animation: fadeUp .6s .32s ease both;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .45rem .9rem;
  border-radius: var(--r-md);
}

/* Countdown */
.countdown-lbl {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: .65rem;
  animation: fadeUp .6s .46s ease both;
}
.countdown {
  display: flex;
  gap: .6rem;
  margin-bottom: 2rem;
  animation: fadeUp .6s .46s ease both;
}
.cd-box {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  min-width: 72px;
  padding: .9rem .6rem .65rem;
  text-align: center;
}
.cd-num {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-lbl {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-top: .4rem;
}

/* Buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
  animation: fadeUp .6s .6s ease both;
}

/* Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  animation: fadeUp .6s .74s ease both;
}
.pill {
  font-size: .75rem;
  color: var(--gray-500);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .9rem;
  border-radius: var(--r-full);
}
.pill-link {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pill-link:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

/* ── Photo Collage ── */
.hero-collage {
  position: relative;
  flex-shrink: 0;
  /* Outer size – gives breathing room for rotated photos */
  width:  clamp(380px, 46vw, 560px);
  height: clamp(460px, 56vw, 640px);
  /* Allow photos to spill slightly outside */
  overflow: visible;
}

/* Individual photo tiles */
.collage-photo {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  /* White polaroid border */
  box-shadow: 0 0 0 3px rgba(255,255,255,.18), 0 10px 30px rgba(0,0,0,.55);
  transition: transform .28s ease, box-shadow .28s ease, z-index 0s;
}
.collage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.collage-photo:hover {
  z-index: 20 !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.5), 0 20px 50px rgba(0,0,0,.7);
}

/* Logo card – centered, always on top */
.collage-center {
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 20px 55px rgba(0,0,0,.6);
  width: 200px;
  animation: float 6s ease-in-out infinite;
}
.collage-center img { width: 100%; height: auto; display: block; }

/* ── Photo positions (7 photos orbiting the logo) ── */
/*    cp1 · top-left     */
.cp1 {
  width: 210px; height: 155px;
  top: 3%; left: 2%;
  transform: rotate(-6deg);
  z-index: 3;
}
.cp1:hover { transform: rotate(-6deg) scale(1.06); }

/*    cp2 · top-right    */
.cp2 {
  width: 198px; height: 147px;
  top: 1%; right: 2%;
  transform: rotate(5deg);
  z-index: 3;
}
.cp2:hover { transform: rotate(5deg) scale(1.06); }

/*    cp3 · mid-left     */
.cp3 {
  width: 192px; height: 143px;
  top: 34%; left: -4%;
  transform: rotate(-4deg);
  z-index: 4;
}
.cp3:hover { transform: rotate(-4deg) scale(1.06); }

/*    cp4 · mid-right    */
.cp4 {
  width: 200px; height: 149px;
  top: 32%; right: -4%;
  transform: rotate(6deg);
  z-index: 4;
}
.cp4:hover { transform: rotate(6deg) scale(1.06); }

/*    cp5 · bottom-left  */
.cp5 {
  width: 215px; height: 160px;
  bottom: 3%; left: 1%;
  transform: rotate(-5deg);
  z-index: 3;
}
.cp5:hover { transform: rotate(-5deg) scale(1.06); }

/*    cp6 · bottom-right */
.cp6 {
  width: 196px; height: 146px;
  bottom: 2%; right: 0%;
  transform: rotate(4deg);
  z-index: 3;
}
.cp6:hover { transform: rotate(4deg) scale(1.06); }

/*    cp7 · bottom-center */
.cp7 {
  width: 188px; height: 140px;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  z-index: 2;
}
.cp7:hover { transform: translateX(-50%) rotate(2deg) scale(1.06); }

@media (max-width: 900px) {
  .hero-collage { display: none; }
  .hero { padding: 4rem 0 3rem; }
}

/* ── Stats Strip ── */
.stats-strip { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.06); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}
.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.stat-n { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-l { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-top: .2rem; }

/* ── Goals & Why ── */
.goal-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1.75rem; }

.goal-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.goal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.goal-icon svg { width: 20px; height: 20px; }
.gi-blue { background: rgba(37,99,235,.12); color: var(--blue); }
.gi-red  { background: rgba(220,38,38,.1);  color: var(--red); }
.gi-gold { background: rgba(245,158,11,.12); color: var(--gold); }

.goal-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.goal-item p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.why-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--navy); }

.check-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--gray-700); }
.check-mark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(16,185,129,.12);
  color: #059669;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700;
  margin-top: .1rem;
}
.why-desc { font-size: .82rem; color: var(--gray-400); line-height: 1.7; border-top: 1px solid var(--gray-100); padding-top: 1.25rem; }

/* ── Timeline ── */
.timeline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3.5rem;
  padding: 1rem 0 2rem;
}
.tl-track {
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  z-index: 0;
}
.tl-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: default;
  background: none;
  border: none;
}
button.tl-node { cursor: pointer; }
button.tl-node:hover .tl-dot { box-shadow: 0 0 0 6px rgba(37,99,235,.15); }

.tl-dot {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: .6rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
  background: var(--gray-100);
  color: var(--gray-500);
}
button.tl-node:hover .tl-dot { transform: scale(1.08); }

.tl-past .tl-dot  { background: var(--gray-100); color: var(--gray-500); }
.tl-current .tl-dot {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(37,99,235,.18);
  transform: scale(1.12);
}

.tl-place { font-size: .82rem; font-weight: 600; color: var(--navy); }
.tl-note  { font-size: .72rem; color: var(--gray-400); margin-top: .15rem; }
.tl-note-now { color: var(--blue); font-weight: 600; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .founders-grid { grid-template-columns: 1fr; } }

.founder-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.founder-av {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-hover));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.founder-av-photo {
  position: relative;
  overflow: hidden;
  background: none;
  width: 72px; height: 72px;
}
.founder-av-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-full);
  display: block;
}
.founder-photo-credit {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .55rem;
  color: var(--gray-400);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.founder-card:hover .founder-photo-credit { opacity: 1; bottom: -18px; }

.founder-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.founder-role { font-size: .8rem; font-weight: 500; color: var(--blue); margin: .2rem 0 .6rem; }
.founder-bio  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* ── Themes Accordion ── */
.accordion { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; margin-inline: auto; }

/* ── Agenda ── */
.agenda-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .agenda-days { grid-template-columns: 1fr; }
}

.agenda-day {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.agenda-day-hd {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--navy);
  color: var(--white);
}
.agenda-day-label {
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.agenda-day-info strong { display: block; font-size: .9rem; font-weight: 600; }
.agenda-day-info span  { font-size: .75rem; color: rgba(255,255,255,.5); }

.agenda-rows { padding: .25rem 0; }

.agenda-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .4rem .6rem;
  align-items: start;
  padding: .6rem 1.2rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-fast);
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row:hover { background: var(--gray-50); }

.ag-time {
  font-size: .7rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
  padding-top: .18rem;
  display: none;
}

.ag-badge {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  align-self: start;
  margin-top: .1rem;
}
.ag-opening    { background: rgba(37,99,235,.12);   color: var(--blue); }
.ag-welcome    { background: rgba(13,148,136,.12);  color: var(--teal); }
.ag-keynote    { background: rgba(220,38,38,.12);   color: var(--red); }
.ag-panel      { background: rgba(245,158,11,.12);  color: #b45309; }
.ag-talk       { background: rgba(59,130,246,.12);  color: #1d4ed8; }
.ag-culture    { background: rgba(139,92,246,.12);  color: #7c3aed; }
.ag-networking { background: rgba(16,185,129,.12);  color: #047857; }
.ag-break      { background: rgba(100,116,139,.12); color: var(--gray-500); }
.ag-film       { background: rgba(236,72,153,.12);  color: #be185d; }
.ag-close      { background: rgba(15,23,42,.08);    color: var(--navy); }

.ag-title {
  font-size: .8rem;
  color: var(--navy);
  line-height: 1.45;
  font-weight: 500;
}
.ag-title em {
  color: var(--gray-400);
  font-style: normal;
  font-size: .75rem;
}
.ag-speakers {
  display: none;
}

.agenda-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: .72rem;
  color: var(--gray-400);
  letter-spacing: .03em;
}

/* ── Audience grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin-inline: auto;
}
.aud-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.aud-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.aud-ico { font-size: 1.2rem; }

/* ── Themes Accordion ── */
.acc-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.acc-item.open {
  border-color: rgba(37,99,235,.5);
  background: rgba(255,255,255,.07);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.acc-num {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  min-width: 24px;
  transition: color var(--t-fast);
}
.acc-item.open .acc-num { color: var(--blue-light); }

.acc-title {
  flex: 1;
  font-size: clamp(.9rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--white);
}
.acc-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  transition: transform var(--t-base), color var(--t-base);
  line-height: 1;
}
.acc-item.open .acc-icon { transform: rotate(45deg); color: var(--blue-light); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.acc-item.open .acc-body { max-height: 200px; }
.acc-body p {
  padding: 0 1.5rem 1.5rem calc(1.5rem + 24px + 1.25rem);
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
  margin: 0 1.5rem;
  padding: 1rem 0 1.5rem;
}

/* ── Program ── */
.program-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}
.prog-badge {
  position: absolute;
  top: 0; right: 0;
  background: rgba(37,99,235,.08);
  color: var(--blue);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: 0 var(--r-xl) 0 var(--r-md);
}
.prog-timeline { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2rem; }

.prog-item {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gray-100);
}
.prog-dot {
  position: absolute;
  left: -5px;
  top: .35rem;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: var(--r-full);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.prog-day   { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.prog-date  { font-size: .8rem; color: var(--blue); font-weight: 500; margin: .2rem 0 .5rem; }
.prog-desc  { display: inline-block; font-size: .8rem; color: var(--gray-500); background: var(--gray-50); padding: .35rem .75rem; border-radius: var(--r-sm); }
.prog-note  { font-size: .8rem; color: var(--gray-400); font-style: italic; margin-bottom: 1rem; }

/* ── Audience ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.25rem;
}
.aud-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.aud-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.aud-ico { font-size: 1.1rem; flex-shrink: 0; }

/* ── Speakers ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.filter-btn {
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 500;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-btn:hover  { background: var(--gray-200); }
.filter-btn.active { background: var(--blue); color: var(--white); }

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.spk-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.spk-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.spk-banner {
  height: 220px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.spk-initials {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.2);
  z-index: 1;
}
.spk-banner-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}
.spk-cat-tag {
  position: absolute;
  bottom: .75rem;
  left: .9rem;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: var(--r-full);
  z-index: 2;
}

/* Category tag colors */
.cat-Journalism    { background: rgba(37,99,235,.15);  color: #1d4ed8; }
.cat-Politics      { background: rgba(220,38,38,.12);  color: #b91c1c; }
.cat-Academia      { background: rgba(124,58,237,.12); color: #6d28d9; }
.cat-Tech          { background: rgba(6,182,212,.12);  color: #0e7490; }
.cat-Civil-Society { background: rgba(16,185,129,.12); color: #047857; }

/* Gradient banners */
.grad-0 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.grad-1 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.grad-2 { background: linear-gradient(135deg, #10b981, #047857); }
.grad-3 { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.grad-4 { background: linear-gradient(135deg, #f43f5e, #be123c); }
.grad-5 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.spk-info { padding: 1.1rem 1.25rem; }
.spk-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.spk-role { font-size: .8rem; font-weight: 500; color: var(--blue); }
.spk-org  { font-size: .78rem; color: var(--gray-400); margin-bottom: .6rem; }
.spk-country {
  display: flex; align-items: center; gap: .35rem;
  font-size: .72rem; color: var(--gray-400);
}

.more-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.07);
  color: var(--blue);
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 500;
}

/* ── Speakers 2026 Grid ── */
.spk-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .spk-grid-2026 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .spk-grid-2026 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .spk-grid-2026 { grid-template-columns: 1fr; } }

.spk-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.spk-card { cursor: pointer; }
.spk-bio-short {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: .5rem;
}

/* ── Bio Modal ── */
.bio-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.bio-modal-overlay.open { display: flex; }
.bio-modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem 2rem 2rem;
  position: relative;
}
.bio-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  width: 2rem; height: 2rem;
  font-size: .9rem;
  cursor: pointer;
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.bio-modal-close:hover { color: var(--navy); border-color: var(--navy); }
.bio-modal-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 1rem;
  display: block;
}
.bio-modal-credit { font-size: .72rem; color: var(--gray-400); margin-bottom: .75rem; }
.bio-modal-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.bio-modal-role { font-size: .85rem; color: var(--blue); font-weight: 500; margin-bottom: 1.1rem; }
.bio-modal-text { font-size: .875rem; color: var(--gray-600); line-height: 1.75; }

/* ── Partners ── */
.marquee-wrap {
  overflow: hidden;
  padding: .75rem 0;
  margin-bottom: 2.5rem;
}
.marquee-inner {
  display: flex;
  gap: .75rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }

.logo-ph {
  flex-shrink: 0;
  width: 140px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  color: var(--gray-300);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.partner-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .partner-cats { grid-template-columns: 1fr; } }

.partner-cat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.pcat-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--gray-100);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.logo-row .logo-ph { width: 200px; height: 110px; }

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  width: 300px;
  height: 150px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--t-base);
}
.logo-item:hover img { filter: grayscale(0%); }

/* ── Press & Contact ── */
.press-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.75rem;
}
.press-link {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--navy-800);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--r-lg);
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--t-fast), transform var(--t-base);
  cursor: pointer;
}
.press-link:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.press-link span { flex: 1; }
.pl-arrow { color: var(--gray-500); transition: color var(--t-fast), transform var(--t-fast); }
.press-link:hover .pl-arrow { color: var(--gray-300); transform: translateX(3px); }
.press-dim { opacity: .35; pointer-events: none; cursor: default; }
.press-dim:hover { background: var(--navy-800); transform: none; }

.accred-note {
  display: inline-block;
  font-size: .75rem;
  color: var(--gray-500);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  margin-top: .35rem;
}

/* Contact form */
.contact-tabs {
  display: flex;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.ctab {
  flex: 1;
  padding: .75rem;
  border-radius: var(--r-lg);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--navy-800);
  color: rgba(255,255,255,.65);
  transition: all var(--t-fast);
}
.ctab.active { background: var(--blue); color: var(--white); }
.ctab:hover:not(.active) { background: rgba(255,255,255,.1); color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.finput {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: .85rem 1rem;
  font-size: .875rem;
  font-family: inherit;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-fast);
}
.finput::placeholder { color: rgba(255,255,255,.3); }
.finput:focus { border-color: var(--blue); }
.fselect { color: rgba(255,255,255,.4); cursor: pointer; }
.fselect option { background: var(--navy-800); color: var(--white); }
.ftextarea { resize: none; }

/* ── YouTube Section ── */
.yt-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}
.yt-featured iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .yt-grid { grid-template-columns: 1fr; } }

.yt-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-decoration: none;
  color: inherit;
}
.yt-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray-100);
}
.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease, filter .3s ease;
  filter: brightness(.9);
}
.yt-card:hover .yt-thumb-wrap img {
  transform: scale(1.04);
  filter: brightness(.7);
}
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .2s, transform .2s;
}
.yt-card:hover .yt-play-btn {
  opacity: 1;
  transform: scale(1.1);
}
.yt-card-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
  margin: 0;
}
.yt-channel-link { display: inline-flex; align-items: center; gap: .4rem; }

/* ── Press Accreditation Section ── */
.sec-accred {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, #0f2d4a 100%);
  color: var(--white);
}

.accred-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .accred-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .accred-right { display: flex; justify-content: center; }
}

.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(59,130,246,.18);
  border: 1px solid rgba(59,130,246,.35);
  color: #93c5fd;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.accred-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.accred-desc {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.accred-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.accred-perks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
.accred-perks li svg { color: #60a5fa; flex-shrink: 0; }

.accred-cta {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .9rem 2rem;
}

/* Press badge card */
.accred-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl, 16px);
  padding: 2rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.accred-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #60a5fa, var(--blue));
}
.accred-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #93c5fd;
}
.accred-card-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: .35rem;
}
.accred-card-event {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.accred-card-date {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.accred-card-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 1.25rem;
}
.accred-card-field {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  border-bottom: 1px dashed rgba(255,255,255,.15);
  padding: .4rem 0;
  text-align: left;
  font-style: italic;
  margin-bottom: .3rem;
}
