/* ============================================================
   FEM. Female Leadership at WHU
   Design system: "Editorial Bold" (2026 rebuild)
   ============================================================ */

:root {
  --ink: #150410;
  --ink-2: #1f0a18;
  --ink-3: #2a0f20;
  --pink: #e5006a;
  --pink-hot: #ff2e83;
  --pink-soft: #ff8ab8;
  --cream: #fff3ea;
  --cream-2: #ffe9e0;
  --paper: #fffdfb;
  --white: #ffffff;
  --t-hi: rgba(255, 240, 248, 0.96);
  --t-mid: rgba(255, 226, 240, 0.62);
  --t-low: rgba(255, 226, 240, 0.38);
  --ink-mid: rgba(30, 6, 22, 0.68);
  --ink-low: rgba(30, 6, 22, 0.45);
  --sans: 'Montserrat', -apple-system, sans-serif;
  --sans-2: 'Be Vietnam Pro', -apple-system, sans-serif;
  --pill: 100px;
  --r: 22px;
  --r-lg: 32px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --glow: 0 10px 44px rgba(229, 0, 106, 0.42);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--t-hi);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--pink); color: #fff; }

/* grain texture over everything */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- utilities ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--pink-hot);
}
.eyebrow .spark { font-size: 0.85em; }

.display {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display em { font-style: normal; color: var(--pink-hot); }

.lede { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--t-mid); max-width: 54ch; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--pill);
  cursor: pointer; border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-solid { background: linear-gradient(120deg, var(--pink), var(--pink-hot)); color: #fff; box-shadow: var(--glow); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 16px 54px rgba(229, 0, 106, 0.55); }
.btn-ghost { border: 1.5px solid rgba(255, 190, 218, 0.35); color: var(--t-hi); }
.btn-ghost:hover { border-color: var(--pink-hot); color: var(--pink-hot); transform: translateY(-3px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(21, 4, 16, 0.4); }
.btn .arr { font-size: 1rem; line-height: 1; transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; } .rv-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem var(--pad-x);
  background: rgba(21, 4, 16, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 46, 131, 0.14);
}
.nav-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t-low); text-decoration: none; transition: color 0.2s;
  padding: 0.4rem 0;
}
.nav-links a:hover { color: var(--t-hi); }
.nav-links a.on { color: var(--pink-hot); }
.nav-cta {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  padding: 0.6rem 1.3rem; border-radius: var(--pill);
  background: linear-gradient(120deg, var(--pink), var(--pink-hot));
  box-shadow: 0 4px 18px rgba(229, 0, 106, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(229, 0, 106, 0.55); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 130;
}
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.x span:nth-child(2) { opacity: 0; }
.burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: linear-gradient(160deg, var(--ink) 20%, #3d0022 140%);
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: 0 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--sans-2); font-size: 2.6rem; font-weight: 700; font-style: normal;
  color: var(--t-hi); text-decoration: none; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 46, 131, 0.15);
}
.mobile-menu a.on { color: var(--pink-hot); }
.mobile-menu .mm-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-hot); font-weight: 700; margin-bottom: 1rem; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(100deg, var(--pink) 0%, var(--pink-hot) 55%, var(--pink) 100%);
  padding: 0.95rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 12px 50px rgba(229, 0, 106, 0.35);
  position: relative; z-index: 5;
}
.marquee-track { display: inline-block; animation: mq 30s linear infinite; }
.marquee span {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase; color: #fff;
  padding: 0 1.6rem;
}
.marquee .dot { color: rgba(21, 4, 16, 0.8); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section scaffolding ---------- */
.sec { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.sec-head .display { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-top: 1.1rem; }

.sec-cream { background: var(--cream); color: var(--ink); }
.sec-cream .lede { color: var(--ink-mid); }
.sec-cream .eyebrow { color: var(--pink); }

.sec-pink {
  background:
    radial-gradient(140% 160% at 90% -20%, var(--pink-hot) 0%, var(--pink) 55%, #b80056 100%);
  color: #fff;
}

/* glow blobs for dark sections */
.glow-tr::before, .glow-bl::after {
  content: ''; position: absolute; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
}
.glow-tr::before { top: -25%; right: -18%; background: radial-gradient(circle, rgba(229, 0, 106, 0.28) 0%, transparent 62%); }
.glow-bl::after { bottom: -30%; left: -20%; background: radial-gradient(circle, rgba(255, 100, 60, 0.12) 0%, transparent 62%); }
.sec > .wrap { position: relative; z-index: 2; }

/* ---------- placeholder (photo slot) ---------- */
.ph {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem;
  border-radius: var(--r);
  border: 1.5px dashed rgba(255, 46, 131, 0.5);
  background:
    linear-gradient(150deg, rgba(229, 0, 106, 0.10), rgba(229, 0, 106, 0.03));
  color: var(--t-low);
  min-height: 100%;
}
.ph svg { width: 30px; height: 30px; opacity: 0.75; }
.ph .ph-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.sec-cream .ph { color: var(--ink-low); border-color: rgba(229, 0, 106, 0.35); }

/* ---------- footer ---------- */
footer {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--ink) 0%, #2b0219 120%);
  border-top: 1px solid rgba(255, 46, 131, 0.16);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 4.5rem; }
.foot-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.foot-brand p { font-size: 0.82rem; color: var(--t-low); max-width: 34ch; }
.foot-h { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink-hot); margin-bottom: 1.1rem; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-links a { font-size: 0.85rem; color: var(--t-mid); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--pink-hot); }
.foot-word {
  font-family: var(--sans); font-weight: 800; line-height: 0.8;
  font-size: clamp(6rem, 19vw, 17rem);
  text-align: center; user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 46, 131, 0.35);
  margin-bottom: 1.5rem;
}
.foot-word b { color: var(--pink-hot); -webkit-text-stroke: 0; font-weight: 700; }
.foot-base {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.7rem; color: var(--t-low);
  border-top: 1px solid rgba(255, 46, 131, 0.12); padding-top: 1.6rem;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ============================================================
   HOME
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem 0 4.5rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 65% at 12% 90%, rgba(229, 0, 106, 0.32) 0%, transparent 60%),
    radial-gradient(55% 50% at 92% 8%, rgba(255, 46, 131, 0.16) 0%, transparent 65%),
    radial-gradient(40% 45% at 75% 80%, rgba(255, 120, 70, 0.08) 0%, transparent 65%);
}
.hero-title { font-size: clamp(3.4rem, 10.5vw, 9.5rem); }
.hero-sub { margin-top: 1.6rem; font-size: clamp(0.95rem, 1.4vw, 1.15rem); color: var(--t-mid); max-width: 52ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-detail {
  display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--t-hi);
}
.hero-detail-rule { width: 2.6rem; height: 1px; background: var(--pink-hot); }

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.6rem, 13.5vw, 4rem); }
  .hero-detail { font-size: 0.62rem; letter-spacing: 0.18em; gap: 0.7rem; margin-top: 1.1rem; }
  .hero-detail-rule { width: 1.4rem; }
  .count { gap: 0.55rem; }
  .count-cell { min-width: 0; flex: 1 1 calc(25% - 0.75rem); padding: 0.75rem 0.35rem 0.65rem; }
  .count-num { font-size: 1.7rem; }
  .count-lab { letter-spacing: 0.18em; font-size: 0.54rem; }
}

/* countdown */
.count {
  display: flex; gap: clamp(0.8rem, 2.4vw, 2rem); flex-wrap: wrap;
  margin-top: 2.8rem;
}
.count-cell {
  min-width: clamp(78px, 10vw, 122px);
  padding: 1rem 1.1rem 0.9rem;
  text-align: center;
}
.count-num {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.count-lab { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-soft); margin-top: 0.45rem; }
.count-live { font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 1.6rem; color: var(--pink-hot); }

/* about */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.about-grid h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
.about-copy p { color: var(--ink-mid); font-size: 0.95rem; margin-bottom: 1.2rem; }
.pillars { margin-top: 1rem; counter-reset: pil; }
.pillar {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.4rem; align-items: baseline;
  padding: 1.6rem 0; border-top: 1.5px solid rgba(21, 4, 16, 0.14);
  transition: padding-left 0.3s ease;
}
.pillar:hover { padding-left: 0.8rem; }
.pillar:last-child { border-bottom: 1.5px solid rgba(21, 4, 16, 0.14); }
.pillar-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--pink); }
.pillar-word { font-family: var(--sans); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; font-style: normal; color: var(--ink); line-height: 1.15; }
.pillar-desc { font-size: 0.86rem; color: var(--ink-mid); margin-top: 0.35rem; }
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } }

/* stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.28); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: rgba(184, 0, 86, 0.35); padding: 2.6rem 1.4rem; text-align: center; backdrop-filter: blur(4px); }
.stat-num { font-family: var(--sans); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: #fff; }
.stat-lab { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255, 255, 255, 0.78); margin-top: 0.7rem; }
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* recap */
.recap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.recap-copy p { color: var(--t-mid); font-size: 0.94rem; margin-bottom: 1.2rem; }
.recap-facts { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.chip {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border-radius: var(--pill);
  border: 1.5px solid rgba(255, 46, 131, 0.4); color: var(--pink-soft);
}
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 0 1.5px rgba(255, 46, 131, 0.3);
  transform: rotate(1.2deg);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: clamp(3rem, 5vw, 4.5rem); }
.gal-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item .tag {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; background: rgba(21, 4, 16, 0.55); backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem; border-radius: var(--pill);
}
@media (max-width: 920px) {
  .recap-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }

/* explore bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.bento a {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 2rem;
  border-radius: var(--r-lg); text-decoration: none; overflow: hidden;
  background: linear-gradient(165deg, var(--ink-2), var(--ink-3));
  border: 1.5px solid rgba(255, 46, 131, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.bento a:hover { transform: translateY(-6px); border-color: rgba(255, 46, 131, 0.6); box-shadow: 0 24px 60px rgba(229, 0, 106, 0.25); }
.bento .b-num {
  position: absolute; top: 1.4rem; right: 1.7rem;
  font-family: var(--sans-2); font-style: normal; font-weight: 700; font-size: 1.1rem; color: var(--pink-hot);
}
.bento .b-kick { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 0.6rem; }
.bento h3 { font-family: var(--sans); font-size: 1.7rem; font-weight: 800; color: var(--t-hi); line-height: 1.1; margin-bottom: 0.6rem; }
.bento p { font-size: 0.8rem; color: var(--t-low); }
.bento .b-arr { position: absolute; bottom: 1.6rem; right: 1.7rem; color: var(--pink-hot); font-size: 1.25rem; transition: transform 0.3s; }
.bento a:hover .b-arr { transform: translate(4px, -4px); }
@media (max-width: 1080px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento a { min-height: 220px; } }

/* partner cta */
.cta-band { text-align: center; }
.cta-band .display { font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 1.2rem 0 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 2.4rem; font-size: 0.95rem; }
.cta-band .eyebrow { color: rgba(255,255,255,0.9); }

/* ============================================================
   SUBPAGE HERO
   ============================================================ */
.page-hero {
  position: relative; padding: 11rem 0 5rem; overflow: hidden; isolation: isolate;
}
.page-hero .display { font-size: clamp(3rem, 7.5vw, 6.5rem); margin-top: 1.2rem; }
.page-hero .lede { margin-top: 1.6rem; }
.team-photo-hero { padding-top: 20rem; }
@media (max-width: 820px) { .team-photo-hero { padding-top: 15rem; } }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero-bg + .ph-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(21,4,16,0.72) 0%, rgba(21,4,16,0.5) 50%, var(--ink) 100%);
}

/* ============================================================
   SPEAKERS
   ============================================================ */
.spk-list { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3.5rem); }
.spk {
  display: grid; grid-template-columns: 340px 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1.5px solid rgba(255, 46, 131, 0.16);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.spk:hover { border-color: rgba(255, 46, 131, 0.5); box-shadow: 0 24px 70px rgba(229, 0, 106, 0.18); }
.spk:nth-child(even) { grid-template-columns: 1fr 340px; }
.spk:nth-child(even) .spk-photo { order: 2; }
.spk-photo { position: relative; }
.spk-photo img {
  width: 100%; border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(255, 46, 131, 0.5), 0 24px 70px rgba(229, 0, 106, 0.3);
  transition: transform 0.5s ease;
}
.spk:hover .spk-photo img { transform: scale(1.03) rotate(-1deg); }
.spk-name { font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.05; }
.spk-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-hot); margin: 0.8rem 0 1.4rem; }
.spk-bio { font-size: 0.9rem; color: var(--t-mid); }
.spk .chip { margin-top: 1.6rem; display: inline-block; }
@media (max-width: 880px) {
  .spk, .spk:nth-child(even) { grid-template-columns: 1fr; }
  .spk:nth-child(even) .spk-photo { order: 0; }
  .spk-photo { max-width: 260px; margin: 0 auto; }
}
.also-strip { margin-top: clamp(3.5rem, 6vw, 5.5rem); padding-top: 2.6rem; border-top: 1px solid rgba(255, 46, 131, 0.18); }
.also-strip .foot-h { margin-bottom: 1.4rem; }
.also-names { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.also-names .chip { border-color: rgba(255, 46, 131, 0.25); color: var(--t-mid); }

/* ============================================================
   AGENDA
   ============================================================ */
.agenda-layout { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.agenda-side { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.1rem; }
.side-card {
  padding: 1.5rem 1.7rem; border-radius: var(--r);
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1.5px solid rgba(255, 46, 131, 0.18);
}
.side-card .k { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pink-hot); margin-bottom: 0.4rem; }
.side-card .v { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; color: var(--t-hi); }
.side-note { font-size: 0.8rem; color: var(--t-low); padding: 0 0.4rem; }
.ag-block-title {
  font-family: var(--sans-2); font-style: normal; font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--pink-hot);
  margin: 3rem 0 1.4rem;
}
.ag-block-title:first-child { margin-top: 0; }
.ag-item {
  display: grid; grid-template-columns: 96px 1fr; gap: 1.6rem;
  padding: 1.5rem 0; border-top: 1px solid rgba(255, 46, 131, 0.16);
}
.ag-time { font-family: var(--sans); font-size: 1.3rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.ag-venue { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-low); margin-bottom: 0.35rem; }
.ag-title { font-family: var(--sans); font-size: 1.25rem; font-weight: 800; color: var(--t-hi); line-height: 1.25; }
.ag-desc { font-size: 0.84rem; color: var(--t-mid); margin-top: 0.4rem; }
.ag-item .chip { margin-top: 0.9rem; display: inline-block; font-size: 0.58rem; padding: 0.4rem 0.9rem; }
@media (max-width: 920px) {
  .agenda-layout { grid-template-columns: 1fr; }
  .agenda-side { position: static; }
  .ag-item { grid-template-columns: 70px 1fr; gap: 1rem; }
}
.evening { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.evening-card { padding: 2.2rem 2rem; border-radius: var(--r-lg); background: rgba(21, 4, 16, 0.35); border: 1.5px solid rgba(255,255,255,0.35); }
.evening-card .et { font-family: var(--sans); font-style: normal; font-size: 1.5rem; font-weight: 800; color: #fff; }
.evening-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.3rem; margin: 0.6rem 0 0.5rem; color: #fff; }
.evening-card p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }
@media (max-width: 820px) { .evening { grid-template-columns: 1fr; } }

/* ============================================================
   SPONSORS
   ============================================================ */
.tier { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.tier-label {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-hot); margin-bottom: 1.6rem;
}
.tier-label::after { content: ''; height: 1px; flex: 1; background: rgba(255, 46, 131, 0.25); }
.logo-grid { display: grid; gap: 1.2rem; }
.logo-grid.g1 { grid-template-columns: 1fr; }
.logo-grid.g2 { grid-template-columns: repeat(2, 1fr); }
.logo-grid.g4 { grid-template-columns: repeat(4, 1fr); }
.logo-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--paper); border-radius: var(--r);
  padding: 2.4rem 2rem; min-height: 130px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(229, 0, 106, 0.3); }
.logo-card img { max-height: 52px; max-width: 78%; width: auto; object-fit: contain; }
.logo-card.main { min-height: 210px; }
.logo-card.dark { background: linear-gradient(160deg, #241222, #180a16); }
.logo-card.main img { max-height: 66px; }
@media (max-width: 880px) {
  .logo-grid.g4 { grid-template-columns: repeat(2, 1fr); }
  .logo-grid.g2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .logo-grid.g4 { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.tm {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1.5px solid rgba(255, 46, 131, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tm:hover { transform: translateY(-6px); border-color: rgba(255, 46, 131, 0.55); box-shadow: 0 22px 60px rgba(229, 0, 106, 0.22); }
.tm-photo {
  aspect-ratio: 1; display: flex; align-items: flex-end;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(229, 0, 106, 0.55) 0%, rgba(229, 0, 106, 0.14) 55%, transparent 100%),
    linear-gradient(160deg, #33101f, #23091a);
}
.tm-photo img { width: 100%; transition: transform 0.45s ease; }
.tm:hover .tm-photo img { transform: scale(1.05); }
.tm-body { padding: 1.3rem 1.4rem 1.5rem; }
.tm-name { font-family: var(--sans); font-size: 1.25rem; font-weight: 800; color: var(--t-hi); line-height: 1.15; }
.tm-role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-hot); margin: 0.45rem 0 0.9rem; }
.tm-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t-low); text-decoration: none; transition: color 0.2s;
}
.tm-link svg { width: 14px; height: 14px; }
.tm-link:hover { color: var(--pink-hot); }
@media (max-width: 1080px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Report an issue widget (internal review feedback)
   Markup is injected by /assets/app.js. The hidden Netlify
   detection form sits at the bottom of index.html.
   ============================================================ */

.fb-launch {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 2rem);
  bottom: clamp(0.9rem, 2.5vw, 2rem);
  z-index: 2100;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; border: 0; border-radius: var(--pill);
  background: linear-gradient(120deg, var(--pink), var(--pink-hot));
  box-shadow: var(--glow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fb-launch:hover { transform: translateY(-3px); box-shadow: 0 16px 54px rgba(229, 0, 106, 0.55); }
.fb-launch:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
@media (max-width: 560px) {
  .fb-launch { padding: 0.75rem 1.1rem; font-size: 0.58rem; letter-spacing: 0.12em; }
}

.fb-ov {
  position: fixed; inset: 0; z-index: 2200;
  display: none; align-items: flex-end; justify-content: center;
  padding: 1rem;
  background: rgba(10, 2, 8, 0.74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.fb-ov.open { display: flex; }
@media (min-width: 700px) { .fb-ov { align-items: center; } }

.fb-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--ink-2);
  border: 1px solid rgba(255, 190, 218, 0.16);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.fb-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1;
  color: var(--t-mid); background: none;
  border: 1px solid rgba(255, 190, 218, 0.2); border-radius: 50%;
  cursor: pointer; transition: color 0.2s, border-color 0.2s;
}
.fb-close:hover { color: var(--pink-hot); border-color: var(--pink-hot); }

.fb-title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem); line-height: 1.1;
  margin: 0.6rem 0 0.5rem; color: var(--t-hi);
}
.fb-intro { font-family: var(--sans-2); font-size: 0.92rem; color: var(--t-mid); margin-bottom: 1.6rem; }

.fb-field { margin-bottom: 1.15rem; }
.fb-field label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink-soft);
}
.fb-field .fb-opt { color: var(--t-low); letter-spacing: 0.14em; }
.fb-field input[type="text"],
.fb-field select,
.fb-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans-2); font-size: 0.95rem;
  color: var(--t-hi);
  background-color: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 190, 218, 0.2);
  border-radius: 14px;
  transition: border-color 0.2s, background-color 0.2s;
}
.fb-field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.fb-field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.6rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ff8ab8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 12px 8px;
}
.fb-field select option { background: var(--ink-2); color: var(--t-hi); }
.fb-field input[type="text"]:focus,
.fb-field select:focus,
.fb-field textarea:focus {
  outline: none;
  border-color: var(--pink-hot);
  background-color: rgba(255, 255, 255, 0.07);
}
.fb-field input::placeholder, .fb-field textarea::placeholder { color: var(--t-low); }

.fb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .fb-row { grid-template-columns: 1fr; gap: 0; } }

.fb-hp { position: absolute; left: -9999px; opacity: 0; }

.fb-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.fb-submit {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; border: 0; border-radius: var(--pill);
  background: linear-gradient(120deg, var(--pink), var(--pink-hot));
  box-shadow: var(--glow); cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s;
}
.fb-submit:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 16px 54px rgba(229, 0, 106, 0.55); }
.fb-submit:disabled { opacity: 0.55; cursor: default; }
.fb-note { font-family: var(--sans-2); font-size: 0.78rem; color: var(--t-low); }
.fb-error {
  margin-top: 1rem; padding: 0.85rem 1rem;
  font-family: var(--sans-2); font-size: 0.85rem;
  color: #ffc9dd;
  background: rgba(229, 0, 106, 0.14);
  border: 1px solid rgba(255, 46, 131, 0.4);
  border-radius: 14px;
}
.fb-error a { color: var(--pink-soft); }

.fb-done { text-align: center; padding: 1.5rem 0 0.5rem; }
.fb-done .fb-tick {
  width: 62px; height: 62px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff; border-radius: 50%;
  background: linear-gradient(120deg, var(--pink), var(--pink-hot));
  box-shadow: var(--glow);
}
.fb-done p { font-family: var(--sans-2); color: var(--t-mid); margin-bottom: 1.4rem; }

/* ============================================================
   ONE-SCREEN SNAP SEGMENTS (landing page, via <html class="snap">)
   Same pattern as the Clear Connections landing: every block is
   exactly one screen, mandatory snapping with scroll-snap-stop
   so one flick moves exactly one panel, and half a screen of
   travel between panels. Because panels clip their overflow, the
   type and spacing below are compressed so nothing gets cut off.
   Off on narrow or short screens and under reduced motion, where
   the page falls back to normal scrolling.
   ============================================================ */
@media (min-width: 901px) and (min-height: 640px) and (prefers-reduced-motion: no-preference) {
  html.snap { scroll-snap-type: y mandatory; }

  html.snap .snap-seg {
    height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  /* CC puts half a screen of travel between panels; that works there
     because every panel is the same dark. Here the panels are cream,
     pink and ink, so a gap reads as a dark seam between them. The
     panels butt together instead, and scroll-snap-stop still keeps it
     to one panel per flick. */
  html.snap .snap-seg + .snap-seg { margin-top: 0; }

  /* ---- fit each panel into one screen ---- */
  html.snap .sec { padding: clamp(2.5rem, 4vw, 4rem) 0; }
  html.snap .hero { padding: 6rem 0 2.5rem; }

  /* about: the densest panel */
  html.snap .about-grid { gap: clamp(2rem, 4vw, 3.5rem); }
  html.snap .about-grid h2 { font-size: clamp(1.6rem, 2.6vw, 2.5rem); }
  html.snap .about-copy p { font-size: 0.92rem; }
  html.snap .pillars { margin-top: 1.5rem; }
  html.snap .pillar { padding: 0.9rem 0; }
  html.snap .pillar-word { font-size: 1.5rem; }
  html.snap .pillar-desc { font-size: 0.82rem; }

  /* the stats strip shares the about panel and sits along its bottom edge,
     so both halves are trimmed to fit one screen between them */
  html.snap .snap-seg > .sec-cream { padding: 2rem 0 1rem; }
  html.snap .sec-band { padding: 1.75rem 0 !important; }
  html.snap .stat { padding: 1.4rem 1.2rem; }
  html.snap .stat-num { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
  html.snap .stat-lab { margin-top: 0.5rem; }

  /* recap */
  html.snap .recap-grid { gap: clamp(2rem, 4vw, 3.5rem); }
  html.snap .gallery { margin-top: clamp(1.5rem, 3vw, 2.5rem); }

  /* footer as the closing panel */
  html.snap footer { padding: clamp(2.5rem, 4vw, 4rem) 0 1.5rem; }
  html.snap .foot-grid { margin-bottom: 2.5rem; }

  /* laptop screens: the hero is the one panel that still overruns */
  @media (max-height: 800px) {
    html.snap .hero { padding: 5rem 0 1.5rem; }
    html.snap .hero-title { font-size: clamp(2.8rem, 7.5vw, 6rem); }
    html.snap .hero-sub { margin-top: 1.1rem; font-size: 0.95rem; }
    html.snap .hero-ctas { margin-top: 1.6rem; }
    html.snap .count { margin-top: 1.6rem; }
    html.snap .count-num { font-size: clamp(1.8rem, 3vw, 2.6rem); }
    html.snap .gal-item { aspect-ratio: 16 / 10; }
    html.snap .gallery { margin-top: 1.5rem; }

    /* about + stats is the densest panel, so it gets the deepest trim */
    html.snap .snap-seg > .sec-cream { padding: 1.25rem 0 0.5rem; }
    html.snap .about-grid h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
    html.snap .about-copy p { font-size: 0.86rem; }
    html.snap .pillars { margin-top: 1rem; }
    html.snap .pillar { padding: 0.6rem 0; }
    html.snap .pillar-word { font-size: 1.25rem; }
    html.snap .pillar-desc { font-size: 0.78rem; }
    html.snap .sec-band { padding: 1.25rem 0 !important; }
    html.snap .stat { padding: 1rem; }
    html.snap .stat-num { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
  }
}
