:root {
  /* Logo 60-30-10 ? Black / Aqua / Orange (+ lime & pink support) */
  --logo-black: #0A0A0A;
  --logo-black-panel: #161616;
  --logo-black-line: #2C2C2C;
  --logo-aqua: #70CBD1;
  --logo-aqua-hover: #8FD8DD;
  --logo-aqua-dim: #3D9AA3;
  --logo-aqua-soft: rgba(112, 203, 209, 0.16);
  --logo-orange: #F7941D;
  --logo-orange-hover: #FFA83D;
  --logo-orange-soft: rgba(247, 148, 29, 0.16);
  --logo-lime: #C6D42E;
  --logo-pink: #E964A0;

  /* 60% dominant */
  --board-bg: var(--logo-black);
  --board-panel: var(--logo-black-panel);
  --board-line: var(--logo-black-line);
  --trust: var(--logo-black);
  --trust-panel: var(--logo-black-panel);
  --trust-line: var(--logo-black-line);

  /* 30% secondary */
  --cyan: var(--logo-aqua);
  --secondary: var(--logo-aqua);
  --secondary-hover: var(--logo-aqua-hover);
  --secondary-soft: var(--logo-aqua-soft);

  /* 10% accent */
  --indigo: var(--logo-orange);
  --indigo-hover: var(--logo-orange-hover);
  --indigo-dim: #D97706;
  --indigo-soft: var(--logo-orange-soft);
  --amber: var(--logo-orange);
  --amber-dim: var(--logo-orange-hover);

  /* Light content bands (readable islands on the black brand) */
  --paper: #F3F4F2;
  --paper-raised: #FFFFFF;
  --ink: #0A0A0A;
  --slate: #5A6164;
  --slate-light: #9AA3A6;
  --line: #E2E5E2;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--logo-black);
  color: #F5F5F5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.mono { font-family: 'JetBrains Mono', monospace; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--logo-orange); color: #0A0A0A; padding: 10px 16px;
  border-radius: 999px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.wrap, .shell { max-width: 1240px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  font-family: 'Manrope', sans-serif; background: transparent;
}
.btn:active { transform: scale(.97); }
.btn-amber { background: var(--logo-orange); color: #0A0A0A; }
.btn-amber:hover { background: var(--logo-orange-hover); color: #0A0A0A; }
.btn-ghost { background: transparent; color: #E8E8E8; border-color: var(--logo-black-line); }
.btn-ghost:hover { border-color: var(--logo-aqua); color: var(--logo-aqua); }
.btn-danger {
  background: #DC2626; color: #fff; border-color: #DC2626;
}
.btn-danger:hover { background: #B91C1C; border-color: #B91C1C; color: #fff; }
.btn-cyan { background: var(--logo-aqua); color: #0A0A0A; }
.btn-cyan:hover { background: var(--logo-aqua-hover); color: #0A0A0A; }
.btn-outline-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--board-line);
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: #EDEBE4; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 17px; letter-spacing: .2px; text-decoration: none; color: #fff;
}
.brand-logo {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  display: block;
}
.brand-name { line-height: 1.1; }
.primary-nav {
  display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; align-items: center;
}
.primary-nav > a { text-decoration: none; color: #c7cbd1; transition: color .15s; }
.primary-nav > a:hover, .primary-nav > a[aria-current="page"] { color: var(--logo-aqua); }
.nav-more { position: relative; }
.nav-more-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: #c7cbd1; transition: color .15s;
}
.nav-more-toggle:hover,
.nav-more.is-open .nav-more-toggle { color: var(--logo-aqua); }
.nav-more-menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 200px;
  background: #121212; border: 1px solid var(--board-line); border-radius: 12px;
  padding: 8px; box-shadow: 0 16px 40px -20px rgba(0,0,0,.8); z-index: 60;
  display: flex; flex-direction: column; gap: 2px;
}
.nav-more-menu[hidden] { display: none !important; }
.nav-more-menu a {
  text-decoration: none; color: #c7cbd1; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; white-space: nowrap;
}
.nav-more-menu a:hover,
.nav-more-menu a[aria-current="page"] { background: rgba(112, 203, 209, 0.1); color: var(--logo-aqua); }
.nav-cta { display: flex; gap: 10px; align-items: center; margin-left: 8px; }
.menu-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 22px; cursor: pointer; line-height: 1;
}
.primary-nav.is-open {
  display: flex; flex-direction: column; position: absolute;
  left: 0; right: 0; top: 100%; background: var(--board-bg);
  padding: 16px 24px 24px; border-bottom: 1px solid var(--board-line); gap: 16px;
  align-items: stretch;
}
.primary-nav.is-open .nav-more-menu {
  position: static; box-shadow: none; margin-top: 4px; right: auto;
}

/* Hero / board */
.hero {
  background: var(--board-bg); color: #EDEBE4;
  padding: 56px 24px 64px; border-bottom: 1px solid var(--board-line);
}
.hero-inner { max-width: 1240px; margin: 0 auto; }
.hero-top {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: end; margin-bottom: 36px;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--logo-aqua); font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--logo-orange);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.hero h1 {
  font-size: 44px; line-height: 1.12; margin: 0 0 18px; font-weight: 800; letter-spacing: -0.5px;
}
.hero h1 span { color: var(--logo-orange); }
.hero-sub { color: #a9b0b8; font-size: 17px; line-height: 1.6; max-width: 52ch; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; justify-self: end; }
.stat { text-align: right; }
.stat .n { font-family: 'JetBrains Mono', monospace; font-size: 30px; font-weight: 700; color: #fff; }
.stat .l { font-size: 12px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.board {
  background: var(--board-panel); border: 1px solid var(--board-line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.02);
}
.board-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-bottom: 1px solid var(--board-line);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 1.5px;
  color: var(--slate-light); text-transform: uppercase; gap: 12px; flex-wrap: wrap;
}
.board-head b { color: var(--logo-orange); }
.board-cols, .board-row {
  display: grid; grid-template-columns: 110px 1fr 1.6fr 130px;
  align-items: center; padding: 14px 22px;
  font-family: 'JetBrains Mono', monospace;
}
.board-cols {
  padding: 10px 22px; font-size: 11px; color: #5a636c;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-bottom: 1px dashed var(--board-line);
}
.board-row {
  border-bottom: 1px solid var(--board-line);
  animation: flap .5s ease both; text-decoration: none;
}
.board-row:last-child { border-bottom: none; }
.board-row:hover .topic { color: #fff; }
@keyframes flap {
  0% { opacity: 0; transform: translateY(-6px) scaleY(.85); filter: blur(1px); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); filter: blur(0); }
}
.board-row .time { color: var(--logo-aqua); font-weight: 700; font-size: 13px; white-space: nowrap; }
.board-row .grp { color: #fff; font-weight: 700; font-size: 13.5px; letter-spacing: .5px; }
.board-row .topic { color: #c7cbd1; font-size: 13px; font-weight: 400; letter-spacing: .2px; }
.status {
  font-size: 11px; padding: 4px 9px; border-radius: 5px; letter-spacing: 1px;
  text-align: center; font-weight: 700;
}
.status.ontime { background: rgba(198, 212, 46, 0.16); color: var(--logo-lime); }
.status.filling { background: rgba(233, 100, 160, 0.18); color: var(--logo-pink); }
.status.upcoming {
  background: rgba(112, 203, 209, 0.18);
  color: var(--logo-aqua);
  box-shadow: 0 0 12px rgba(112, 203, 209, 0.45), inset 0 0 8px rgba(112, 203, 209, 0.12);
  text-shadow: 0 0 8px rgba(112, 203, 209, 0.55);
}
.board-foot {
  padding: 14px 22px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: #5a636c; gap: 12px; flex-wrap: wrap;
}
.board-foot a { color: var(--logo-aqua); text-decoration: none; }

/* Sections */
.section, .page-section {
  padding: 80px 24px;
  background: var(--paper);
  color: var(--ink);
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow { color: var(--logo-aqua-dim); }
.section-head .eyebrow .pulse { background: var(--logo-orange); }
.section-head h2 { font-size: 32px; margin: 0 0 12px; letter-spacing: -.4px; font-weight: 800; color: var(--ink); }
.section-head p { color: var(--slate); font-size: 16px; line-height: 1.65; margin: 0; }
.section-band {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.bring-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.bring-group-copy {
  flex: 1 1 320px;
  max-width: 560px;
}
.bring-group-copy h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0 0 12px;
  color: var(--ink);
}
.bring-group-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
}
.bring-group .btn {
  flex-shrink: 0;
}

/* Finder */
.finder {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px; margin-bottom: 34px;
  display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 14px;
  box-shadow: 0 12px 30px -20px rgba(20,23,26,.15);
}
.field label {
  display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--slate); margin-bottom: 7px;
}
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=url],
.field select, .field textarea {
  width: 100%; padding: 11px 12px; border-radius: 8px; border: 1.5px solid var(--line);
  font-family: 'Manrope', sans-serif; font-size: 14.5px; background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--logo-aqua); outline-offset: 1px; border-color: var(--logo-aqua);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.topic-filter {
  background: var(--paper-raised); border: 1.5px solid var(--line); border-radius: 12px;
  overflow: hidden; margin-bottom: 30px; max-width: 720px;
}
.topic-filter-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: transparent; border: 0; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--ink); text-align: left;
}
.topic-filter-toggle strong {
  display: inline-block; margin-left: 8px; color: var(--logo-aqua-dim); font-weight: 800;
}
.topic-filter-chevron {
  color: var(--slate); transition: transform .15s ease; font-size: 12px;
}
.topic-filter-toggle.is-open .topic-filter-chevron { transform: rotate(180deg); }
.topic-filter-panel {
  padding: 0 16px 16px; border-top: 1px solid var(--line);
}
.topic-filter-panel[hidden] { display: none !important; }
.topic-filter-panel .chip-row { margin-bottom: 0; padding-top: 12px; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: 13.5px; font-weight: 600; cursor: pointer; background: var(--paper-raised);
  transition: all .12s; user-select: none;
}
.chip:hover { border-color: var(--logo-aqua); }
.chip.active { background: var(--logo-black); color: #fff; border-color: var(--logo-black); }

.group-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.group-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.group-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(20,23,26,.25); }
.group-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.group-name { font-weight: 800; font-size: 17px; }
.group-logo { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; background: var(--paper); flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--line); }
.group-logo img { width: 100%; height: 100%; object-fit: contain; }
.group-logo-fallback {
  font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 18px;
  color: var(--logo-orange); line-height: 1;
}
.tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .5px;
  padding: 4px 8px; border-radius: 5px; text-transform: uppercase; font-weight: 700; white-space: nowrap;
}
.tag.beg { background: rgba(198, 212, 46, 0.18); color: #6B7310; }
.tag.mix { background: var(--logo-aqua-soft); color: var(--logo-aqua-dim); }
.tag.adv { background: rgba(233, 100, 160, 0.16); color: #B8326E; }
.group-desc { font-size: 14px; color: var(--slate); line-height: 1.55; flex-grow: 1; margin: 0; }
.group-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--slate); }
.group-meta b { color: var(--ink); }
.group-actions { display: flex; gap: 10px; margin-top: 6px; }
.group-card .btn { flex: 1; justify-content: center; }
.no-results { display: none; text-align: center; padding: 50px 20px; color: var(--slate); font-size: 15px; }
.no-results.is-visible { display: block; }

.group-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--ink); color: var(--paper); border-radius: 18px; overflow: hidden;
}
.gp-left { padding: 44px; }
.gp-left .tag { background: var(--logo-orange-soft); color: var(--logo-orange); display: inline-block; }
.gp-left h3 { font-size: 26px; margin: 14px 0 10px; font-weight: 800; }
.gp-left p { color: #b8bcc2; line-height: 1.6; font-size: 15px; }
.gp-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.gp-fact .n { font-family: 'JetBrains Mono', monospace; color: var(--logo-aqua); font-weight: 700; font-size: 22px; }
.gp-fact .l { font-size: 12px; color: #8b9199; text-transform: uppercase; letter-spacing: 1px; }
.gp-right {
  background: linear-gradient(160deg,#1a1f24,#0e1114); padding: 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  border-left: 1px solid rgba(255,255,255,.06);
}
.gp-event {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 18px 20px;
}
.gp-event .when { font-family: 'JetBrains Mono', monospace; color: var(--logo-orange); font-size: 12.5px; letter-spacing: 1px; }
.gp-event h4 { margin: 8px 0 6px; font-size: 16.5px; color: #fff; }
.gp-event p { margin: 0; color: #9aa1a8; font-size: 13.5px; }
.gp-share { display: flex; gap: 10px; flex-wrap: wrap; }

.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.proof-card {
  border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #E2E8F0, #CBD5E1);
}
.proof-card img { width: 100%; height: 100%; object-fit: cover; }
.proof-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff; font-size: 12.5px; font-weight: 600;
}

.sponsor-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center; margin-bottom: 50px;
}
.sponsor-story .figures { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.fig { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.fig .n { font-family: 'JetBrains Mono', monospace; font-size: 26px; font-weight: 800; color: var(--ink); }
.fig .l { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.tier-block { margin-bottom: 30px; }
.tier-label {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--slate); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.tier-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.logo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.logo-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 14px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: border-color .15s; text-decoration: none; min-height: 120px; justify-content: center;
}
.logo-card:hover { border-color: var(--logo-aqua); }
.logo-card img { max-height: 40px; width: auto; object-fit: contain; }
.logo-card .lname { font-weight: 800; font-size: 14px; color: #001F5B; }
.logo-card .lwhat { font-size: 11.5px; color: var(--slate); line-height: 1.4; }

/* Sponsors: trust-blue band so white/light partner logos stay readable */
#sponsors.sponsors-band,
.sponsors-band {
  background: var(--trust);
  color: #E2E8F0;
  border-top: 1px solid var(--trust-line);
  border-bottom: 1px solid var(--trust-line);
}
#sponsors .section-head .eyebrow,
.sponsors-band .section-head .eyebrow { color: var(--logo-aqua); }
#sponsors .section-head .eyebrow .pulse,
.sponsors-band .section-head .eyebrow .pulse { background: var(--logo-orange); }
#sponsors .section-head h2,
#sponsors .sponsor-story h2,
#sponsors .sponsor-story h3,
.sponsors-band .section-head h2,
.sponsors-band .sponsor-story h2,
.sponsors-band .sponsor-story h3 { color: #fff; }
#sponsors .section-head p,
#sponsors .sponsor-story > div > p,
.sponsors-band .section-head p,
.sponsors-band .sponsor-story > div > p { color: #94A3B8; }
#sponsors .fig,
.sponsors-band .fig {
  background: var(--trust-panel);
  border-color: var(--trust-line);
}
#sponsors .fig .n,
.sponsors-band .fig .n { color: var(--logo-aqua); }
#sponsors .fig .l,
.sponsors-band .fig .l { color: #94A3B8; }
#sponsors .tier-label,
.sponsors-band .tier-label { color: #94A3B8; }
#sponsors .tier-label::after,
.sponsors-band .tier-label::after { background: var(--trust-line); }
#sponsors .logo-card,
.sponsors-band .logo-card {
  background: var(--trust-panel);
  border-color: var(--trust-line);
  color: #E2E8F0;
}
#sponsors .logo-card:hover,
.sponsors-band .logo-card:hover { border-color: var(--logo-aqua); }
#sponsors .logo-card .lname,
.sponsors-band .logo-card .lname { color: #E2E8F0; }
#sponsors .btn-outline-ink,
.sponsors-band .btn-outline-ink {
  border-color: var(--trust-line);
  color: #E2E8F0;
}
#sponsors .btn-outline-ink:hover,
.sponsors-band .btn-outline-ink:hover {
  background: #fff;
  color: var(--trust);
  border-color: #fff;
}

.cta-center { text-align: center; }
.cta-center .section-head { max-width: 100%; margin-left: auto; margin-right: auto; }
.cta-center .eyebrow { justify-content: center; }

.signup {
  background: var(--ink); color: var(--paper); border-radius: 20px; padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}

.signup h2 { font-size: 28px; margin: 0 0 12px; font-weight: 800; }
.signup > div > p { color: #b8bcc2; font-size: 15px; line-height: 1.6; }
.signup-check { display: flex; gap: 12px; margin-top: 16px; font-size: 13.5px; color: #9aa1a8; }
.signup .contact-form .field input,
.signup .contact-form .field select,
.signup .contact-form .field textarea {
  background: var(--trust-panel); border-color: var(--trust-line); color: #fff;
}
.signup .contact-form .field label,
.signup .contact-form .interest-label { color: #94A3B8; }
.signup .contact-form .consent { color: #94A3B8; }
.signup .contact-form .consent a { color: var(--logo-aqua); }
.signup .form-actions p { color: #787f86; }
.interest-field { position: relative; }
.interest-label {
  display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.interest-chips {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 188px; overflow-y: auto; overflow-x: hidden;
  padding-right: 4px; scrollbar-width: thin; scrollbar-color: #3A3A3A #141414;
}
.interest-chips::-webkit-scrollbar { width: 8px; }
.interest-chips::-webkit-scrollbar-track { background: #141414; border-radius: 999px; }
.interest-chips::-webkit-scrollbar-thumb { background: #3A3A3A; border-radius: 999px; }
.interest-chips::-webkit-scrollbar-thumb:hover { background: #4A4A4A; }
.interest-chip {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  border: 1px solid #2A2A2A; background: #111111; color: #F3F4F2;
  border-radius: 12px; padding: 12px 16px; font-family: 'Manrope', sans-serif;
  font-size: 14.5px; font-weight: 600; cursor: pointer; transition: all .12s ease;
}
.interest-chip input {
  width: 16px; height: 16px; margin: 0; flex-shrink: 0; accent-color: var(--logo-aqua);
}
.interest-chip:hover {
  border-color: #3A3A3A; background: #171717; color: #fff;
}
.interest-chip:has(input:checked) {
  background: #0A0A0A; border-color: var(--logo-aqua); color: #fff;
  box-shadow: inset 3px 0 0 var(--logo-aqua), 0 0 0 1px rgba(112, 203, 209, 0.25);
}
.fine { font-size: 12px; color: #787f86; margin-top: 14px; line-height: 1.5; }
.fine a { color: var(--logo-aqua); text-decoration: underline; }

.contact-form .form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.contact-form .field-wide { grid-column: 1 / -1; }
.contact-form .consent {
  display: flex; gap: 10px; align-items: flex-start; margin: 12px 0;
  font-size: 13px; line-height: 1.5;
}
.contact-form .consent input {
  margin-top: 3px; flex-shrink: 0;
}
.contact-form .form-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 8px;
}
.contact-form .captcha-block {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
}
.contact-form .captcha-image {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.contact-form .captcha-image img {
  width: 200px; max-width: 100%; min-height: 44px; height: auto;
  border-radius: 8px; background: #fff; padding: 6px 10px; object-fit: contain;
}
.contact-form .captcha-image button {
  font-family: inherit; border: 1px solid var(--trust-line); background: transparent;
  color: #E2E8F0; border-radius: 999px; padding: 7px 12px; cursor: pointer;
}
.contact-form .captcha-input {
  width: 100%;
}
.contact-form .captcha-hint {
  margin: 0; text-align: center; font-size: 13px; color: #9aa1a8;
}
.contact-form .form-error {
  margin: 12px 0 0; font-size: 13px; font-weight: 600; color: #c45c5c;
}
.optional { opacity: .7; font-weight: 500; text-transform: none; letter-spacing: 0; }

/* Footer */
.site-footer { background: var(--board-bg); color: #9aa1a8; padding: 56px 24px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand .brand { color: #fff; margin-bottom: 12px; }
.foot-brand p { font-size: 13.5px; line-height: 1.6; max-width: 32ch; }
.foot-col h5 {
  color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px;
}
/* Only column text links ? not icons inside .follow-row */
.foot-col > a {
  display: block; font-size: 13.5px; color: #9aa1a8; text-decoration: none; margin-bottom: 10px;
}
.foot-col > a:hover { color: var(--logo-orange); }
.foot-bottom {
  border-top: 1px solid var(--board-line); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #6b7278; gap: 12px; flex-wrap: wrap;
}
.foot-bottom a { color: #6b7278; text-decoration: none; }
.foot-bottom a:hover { color: var(--logo-orange); }

.follow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.follow-row a {
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1;
  font-size: 12px;
}
.follow-row a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  pointer-events: none;
}
.follow-row a:hover {
  border-color: var(--logo-aqua);
  color: var(--logo-aqua) !important;
  background: rgba(112, 203, 209, 0.14);
}

/* Inner pages */
.page-hero {
  background: var(--board-bg); color: #EDEBE4; padding: 56px 24px 48px;
  border-bottom: 1px solid var(--board-line);
}
.page-hero-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: end;
}
.page-hero h1 { font-size: 40px; margin: 0; font-weight: 800; letter-spacing: -.4px; line-height: 1.15; }
.page-intro { color: #a9b0b8; font-size: 16.5px; line-height: 1.65; margin: 0; }

.directory-list { display: flex; flex-direction: column; gap: 12px; }
.directory-row {
  display: grid; grid-template-columns: 48px 64px 1fr auto; gap: 18px; align-items: center;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; text-decoration: none; transition: border-color .15s, transform .15s;
}
.directory-row:hover { border-color: var(--logo-aqua); transform: translateY(-2px); }
.directory-number { font-family: 'JetBrains Mono', monospace; color: var(--slate); font-weight: 700; }
.directory-logo { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--paper); display: grid; place-items: center; border: 1px solid var(--line); }
.directory-logo img { width: 100%; height: 100%; object-fit: contain; }
.directory-logo .group-logo-fallback { font-size: 20px; }
.directory-copy h2 { margin: 0 0 6px; font-size: 18px; }
.directory-copy p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.5; }
.directory-arrow { color: var(--logo-orange); font-size: 20px; }

.join-panel, .action-grid {
  margin-top: 40px; padding: 32px; border-radius: 16px;
  background: var(--ink); color: #EDEBE4;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center;
}
.join-panel p, .action-grid p { color: #b8bcc2; line-height: 1.6; }
.join-panel .eyebrow, .action-grid .eyebrow { color: var(--logo-aqua); }

.partner-directory {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.partner-tile {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-decoration: none; display: flex; flex-direction: column; gap: 12px;
  min-height: 180px; transition: border-color .15s, transform .15s;
}
.partner-tile:hover { border-color: var(--logo-aqua); transform: translateY(-2px); }
.partner-tile img { max-height: 42px; width: auto; object-fit: contain; }
.partner-tile > div:nth-child(2) {
  background: var(--logo-black-panel); border-radius: 10px; padding: 16px;
  min-height: 72px; display: flex; align-items: center; justify-content: center;
}
.partner-tile > div:nth-child(2) .partner-wordmark { color: #EDEBE4; }
.partner-index { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--slate); }
.partner-tile h2 { margin: 0; font-size: 18px; }
.tile-link { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--logo-orange); }
.partner-wordmark { font-weight: 800; font-size: 18px; }

.detail-hero {
  background: var(--board-bg); color: #EDEBE4; padding: 56px 24px;
  border-bottom: 1px solid var(--board-line);
}
.detail-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: center;
}
.detail-logo {
  width: 140px; height: 140px; border-radius: 16px; overflow: hidden;
  background: #fff; display: flex; align-items: center; justify-content: center; padding: 12px;
}
.detail-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.detail-logo .group-logo-fallback { font-size: 48px; }
.partner-detail-hero .detail-logo {
  background: var(--logo-black-panel);
  border: 1px solid var(--logo-black-line);
}
.partner-detail-hero .detail-logo .partner-wordmark { color: #EDEBE4; }
.detail-summary { color: #a9b0b8; font-size: 17px; line-height: 1.6; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 18px 0 0; }
.tag-list li {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .5px;
  padding: 5px 9px; border-radius: 5px; background: var(--logo-orange-soft); color: var(--logo-orange);
  text-transform: uppercase; font-weight: 700;
}
.detail-body-grid {
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px;
}
.prose p { color: var(--slate); font-size: 16px; line-height: 1.7; }
.detail-aside {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.detail-aside a { font-weight: 700; text-decoration: none; color: var(--ink); }
.detail-aside a:hover { color: var(--logo-orange); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
.text-link { font-weight: 700; text-decoration: none; color: var(--logo-orange); }
.text-link-light { color: var(--logo-aqua); }

.editorial-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.editorial-index { font-family: 'JetBrains Mono', monospace; }
.editorial-index ol { padding-left: 18px; color: var(--slate); line-height: 2; }
.editorial-content article { margin-bottom: 36px; }
.editorial-content span {
  font-family: 'JetBrains Mono', monospace; color: var(--logo-orange); font-size: 13px; font-weight: 700;
}
.editorial-content h2 { font-size: 26px; margin: 8px 0 12px; }
.editorial-content p { color: var(--slate); line-height: 1.7; }

.image-break { position: relative; min-height: 320px; overflow: hidden; background: var(--board-bg); }
.image-break img { width: 100%; height: 420px; object-fit: cover; opacity: .55; }
.image-break-copy {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 40px 24px;
}
.image-break-copy p {
  max-width: 1240px; margin: 0 auto; color: #fff; font-size: 32px; font-weight: 800; line-height: 1.2;
}

.speaker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.speaker-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--line); }
.speaker-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li {
  display: flex; gap: 12px; align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--line); color: var(--slate);
}
.check-list span {
  font-family: 'JetBrains Mono', monospace; color: var(--logo-orange); font-weight: 700; font-size: 12px;
}

.featured-speakers .section-head { margin-bottom: 28px; }

/* Tighten vertical rhythm between speakers page sections (~20% less gap). */
.speaker-section,
.featured-speakers,
.action-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.speaker-section { padding-bottom: 48px; }
.featured-speakers { padding-top: 48px; padding-bottom: 48px; }
.action-section { padding-top: 48px; }

.featured-speakers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.speaker-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--paper-raised); border: 1.5px solid var(--line); border-radius: 18px;
  padding: 28px 24px; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.speaker-card:hover {
  border-color: var(--logo-aqua); transform: translateY(-2px);
  box-shadow: 0 12px 28px -18px rgba(10, 10, 10, 0.45);
}
.speaker-card-photo,
.speaker-card-initials {
  display: block; width: 120px; height: 120px; border-radius: 18px; object-fit: cover;
  margin: 0 0 20px; background: var(--ink); color: #fff;
}
.speaker-card-initials {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 34px;
}
.speaker-card h3 {
  margin: 0 0 8px; font-size: 22px; font-weight: 800; line-height: 1.25;
}
.speaker-card-title {
  margin: 0 0 12px; color: var(--logo-aqua-dim); font-size: 15px; font-weight: 700; line-height: 1.4;
}
.speaker-card-summary {
  margin: 0; color: var(--slate); font-size: 15px; line-height: 1.55;
}
.featured-speakers-empty {
  grid-column: 1 / -1; padding: 28px 22px; border: 1.5px dashed var(--line);
  border-radius: 16px; background: var(--paper-raised); color: var(--slate);
}
.featured-speakers-empty p { margin: 0; }

.speaker-profile { max-width: 960px; }
.speaker-profile-back { display: inline-block; margin-bottom: 20px; }
.speaker-profile-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start;
  background: var(--paper-raised); border: 1.5px solid var(--line); border-radius: 20px; padding: 28px;
}
.speaker-profile-photo,
.speaker-profile-initials {
  width: 100%; aspect-ratio: 1; border-radius: 18px; object-fit: cover; background: var(--ink);
}
.speaker-profile-initials {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'JetBrains Mono', monospace; font-size: 64px; font-weight: 800;
}
.speaker-profile-copy h1 {
  margin: 8px 0 8px; font-size: 34px; font-weight: 800; line-height: 1.15;
}
.speaker-profile-title {
  margin: 0 0 18px; color: var(--logo-aqua-dim); font-size: 16px; font-weight: 700;
}
.speaker-profile-bio {
  margin: 0; color: var(--slate); font-size: 16px; line-height: 1.7;
}
.speaker-profile-bio br {
  content: '';
  display: block;
  margin-top: 0.85em;
}
.speaker-profile-bio p {
  margin: 0 0 0.85em;
}
.speaker-profile-bio p:last-child { margin-bottom: 0; }
.speaker-profile-social { margin-top: 28px; }
.speaker-profile-social h2 {
  margin: 0 0 12px; font-size: 12px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: var(--slate);
}
.speaker-profile-links { display: flex; flex-wrap: wrap; gap: 10px; }

.listing-intro {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  align-items: flex-end; margin-bottom: 28px;
}
.listing-intro p { max-width: 62ch; color: var(--slate); line-height: 1.65; margin: 0; }

.legal-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start;
}
.legal-nav {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.legal-nav p { margin: 0 0 6px; color: var(--ink); font-weight: 800; text-transform: uppercase; letter-spacing: .6px; }
.legal-nav a { color: var(--slate); text-decoration: none; }
.legal-nav a:hover { color: var(--logo-orange); }
.legal-lead { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 28px; }
.legal-copy section { margin-bottom: 32px; scroll-margin-top: 96px; }
.legal-copy section > span {
  font-family: 'JetBrains Mono', monospace; color: var(--logo-orange); font-size: 12px; font-weight: 700;
}
.legal-copy h2 { margin: 6px 0 12px; font-size: 22px; }
.legal-copy p { color: var(--slate); line-height: 1.7; }
.legal-copy a { color: var(--logo-orange); font-weight: 700; }

.partner-story { background: var(--paper); }
.partner-story .shell { max-width: 820px; color: var(--slate); line-height: 1.7; }
.partner-wordmark-large { font-size: 28px; }

.status-page {
  background: var(--board-bg); color: #EDEBE4; min-height: 60vh;
  display: flex; align-items: center; padding: 80px 24px; position: relative; overflow: hidden;
}
.status-orbit {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(112, 203, 209, 0.28); right: -80px; top: 10%;
  box-shadow: 0 0 0 48px rgba(247, 148, 29, 0.06);
}
.status-copy { position: relative; z-index: 1; max-width: 640px; }
.status-copy h1 { font-size: 42px; font-weight: 800; line-height: 1.15; margin: 12px 0 16px; }
.status-copy p { color: #a9b0b8; font-size: 16.5px; line-height: 1.65; }

.thanks-panel {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 16px; padding: 48px 32px;
}

/* Events programme */
.events-toolbar {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px;
  max-width: 640px;
}
.events-toolbar .chip-row { margin-bottom: 0; }
.events-search { width: 100%; }
.events-search-pill {
  display: flex; align-items: center; gap: 10px;
  width: 100%; min-height: 48px; padding: 0 16px 0 18px;
  background: #fff; border: 1.5px solid #D7DCE0; border-radius: 999px;
  box-shadow: 0 8px 24px -16px rgba(10, 10, 10, 0.35);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.events-search-pill:focus-within {
  border-color: var(--logo-aqua);
  box-shadow: 0 0 0 3px var(--logo-aqua-soft), 0 8px 24px -16px rgba(10, 10, 10, 0.35);
}
.events-search-icon {
  display: inline-flex; color: #6B7280; flex-shrink: 0;
}
.events-search-pill input[type="search"] {
  flex: 1; min-width: 0; border: 0 !important; outline: none !important;
  background: transparent !important; box-shadow: none !important;
  padding: 12px 0 !important; border-radius: 0 !important;
  font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink);
}
.events-search-pill input[type="search"]::placeholder { color: #9AA3A6; }
.events-search-pill input[type="search"]::-webkit-search-decoration,
.events-search-pill input[type="search"]::-webkit-search-cancel-button,
.events-search-pill input[type="search"]::-webkit-search-results-button,
.events-search-pill input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none; appearance: none; display: none;
}
.events-search-clear {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; padding: 0; border: 0; border-radius: 50%;
  background: transparent; color: #8B9398; cursor: pointer; flex-shrink: 0;
}
.events-search-clear:hover { color: var(--ink); background: #F0F2F3; }
.events-search-clear[hidden] { display: none !important; }
.events-filter {
  background: var(--paper-raised); border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden;
}
.events-filter-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: transparent; border: 0; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--ink); text-align: left;
}
.events-filter-toggle strong {
  display: inline-block; margin-left: 8px; color: var(--logo-aqua-dim); font-weight: 800;
}
.events-filter-chevron {
  color: var(--slate); transition: transform .15s ease; font-size: 12px;
}
.events-filter-toggle.is-open .events-filter-chevron { transform: rotate(180deg); }
.events-filter-panel {
  padding: 0 16px 16px; border-top: 1px solid var(--line);
}
.events-filter-panel[hidden] { display: none !important; }
.events-filter-panel .chip-row { padding-top: 10px; }
.events-filter-heading {
  margin: 16px 0 0; font-size: 11.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--slate);
}
.events-date-range {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px;
}
.events-date-range .field label { color: var(--slate); }
.events-date-range input[type="date"] {
  width: 100%; padding: 11px 12px; border-radius: 8px; border: 1.5px solid var(--line);
  font-family: 'Manrope', sans-serif; font-size: 14.5px; background: var(--paper); color: var(--ink);
}
.events-date-range input[type="date"]:focus {
  outline: 2px solid var(--logo-aqua); outline-offset: 1px; border-color: var(--logo-aqua);
}
.events-date-presets { margin-top: 10px; }
.events-block { margin-bottom: 48px; }
.events-block:last-child { margin-bottom: 0; }
.events-block-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 8px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.events-block-head h2 { margin: 0; font-size: 24px; font-weight: 800; }
.events-block-head p {
  margin: 0; font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .6px; text-transform: uppercase; color: var(--slate); font-weight: 700;
}
.event-list { display: flex; flex-direction: column; gap: 14px; }
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "top body actions";
  gap: 18px 16px; align-items: center;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; transition: border-color .15s, transform .15s;
}
.event-card:hover { border-color: var(--logo-aqua); transform: translateY(-2px); }
.event-top {
  grid-area: top;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
}
.event-logo {
  width: 80px; height: 80px; aspect-ratio: 1 / 1;
  object-fit: cover; border-radius: 12px; background: var(--logo-black); padding: 0;
}
.event-logo-fallback {
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 22px;
  color: var(--logo-aqua); background: var(--logo-black);
}
.event-when {
  display: flex; flex-direction: column; gap: 4px; justify-content: center;
}
.event-time {
  font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 20px; color: var(--logo-aqua);
}
.event-date { font-size: 13px; color: var(--slate); font-weight: 600; }
.event-badge {
  display: inline-flex; align-self: flex-start; margin-top: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .6px;
  text-transform: uppercase; font-weight: 700; padding: 4px 8px; border-radius: 5px;
}
.event-badge.upcoming { background: var(--logo-orange-soft); color: #B45309; }
.event-badge.past { background: #E2E8F0; color: #475569; }
.event-body { grid-area: body; min-width: 0; }
.event-meta { margin-bottom: 6px; }
.event-group {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .8px;
  text-transform: uppercase; font-weight: 700; color: var(--logo-orange);
}
.event-body h2 { margin: 0 0 8px; font-size: 18px; font-weight: 800; line-height: 1.3; }
.event-body p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.55; }
.event-actions { grid-area: actions; display: flex; align-items: center; justify-content: flex-end; }
.event-cta {
  white-space: nowrap; box-shadow: 0 8px 20px -10px rgba(247, 148, 29, 0.8);
}
.events-empty {
  text-align: center; padding: 48px 24px; border: 1px dashed var(--line);
  border-radius: 14px; background: var(--paper-raised);
}
.events-empty[hidden] { display: none !important; }
.events-empty h2 { margin: 0 0 10px; font-size: 22px; }
.events-empty p { color: var(--slate); margin: 0 0 20px; }

@media (max-width: 960px) {
  .primary-nav:not(.is-open) { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-top, .page-hero-grid, .sponsor-story, .signup, .group-preview,
  .detail-grid, .detail-body-grid, .editorial-grid, .speaker-grid, .join-panel, .action-grid,
  .legal-layout, .speaker-profile-card {
    grid-template-columns: 1fr;
  }
  .featured-speakers-grid { grid-template-columns: 1fr 1fr; }
  .legal-nav { position: static; }
  .hero-stats { justify-self: start; text-align: left; }
  .stat { text-align: left; }
  .board-cols, .board-row { grid-template-columns: 88px 1fr 1fr; }
  .board-cols span:nth-child(3), .board-row .status, .board-row .topic { }
  .board-cols span:nth-child(4), .board-row .status { display: none; }
  .group-grid, .partner-directory { grid-template-columns: 1fr 1fr; }
  .finder { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3,1fr); }
  .signup { padding: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .directory-row { grid-template-columns: 40px 48px 1fr; }
  .directory-arrow { display: none; }
  .gp-right { border-left: none; border-top: 1px solid rgba(255,255,255,.06); }
  .event-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "body"
      "actions";
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .event-top {
    width: 100%;
    grid-template-columns: 80px 1fr;
  }
  .event-logo, .event-logo-fallback {
    width: 80px;
    height: 80px;
  }
  .event-actions {
    width: 100%; justify-content: stretch; margin-top: 4px;
  }
  .event-cta {
    width: 100%; justify-content: center;
    padding: 14px 18px; font-size: 15px;
    box-shadow: 0 10px 24px -8px rgba(247, 148, 29, 0.9);
  }
  .events-date-range { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1, .page-hero h1 { font-size: 32px; }
  .group-grid, .partner-directory, .finder, .logo-grid, .proof-grid, .foot-grid,
  .contact-form .form-grid, .sponsor-story .figures, .featured-speakers-grid {
    grid-template-columns: 1fr;
  }
  .section, .page-section { padding: 56px 18px; }
}

/* Organizer */
.wrap.narrow { max-width: 520px; margin-inline: auto; }
.wrap.organizer-form-wrap { max-width: 640px; margin-inline: auto; }
.organizer-hero-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: flex-start; justify-content: space-between;
}
.organizer-form {
  display: flex; flex-direction: column; gap: 20px;
  padding: 28px; border: 1px solid var(--logo-black-line);
  border-radius: 16px; background: rgba(255,255,255,.03);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}
.organizer-fieldset {
  margin: 0; padding: 0 0 4px;
  border: 0; display: flex; flex-direction: column; gap: 14px;
}
.organizer-fieldset legend {
  font-size: 15px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #0A0A0A; margin-bottom: 2px;
  padding: 0;
}
.organizer-fieldset-help {
  margin: -4px 0 0; font-size: 13px; line-height: 1.45; color: #6B7280;
}
.organizer-form .field { display: flex; flex-direction: column; gap: 8px; }
.organizer-form .field label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #0A0A0A; margin-bottom: 0;
}
.organizer-form .field label .field-label-text {
  display: block;
  width: 100%;
  line-height: 1.35;
  white-space: normal;
}
.organizer-form .optional {
  display: block;
  font-weight: 500; text-transform: none; letter-spacing: 0; color: #6B7280;
}
.organizer-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  min-width: 0;
}
.organizer-form-row > .field {
  min-width: 0;
}
.organizer-color-row {
  display: flex; gap: 10px; align-items: center;
  min-width: 0;
}
.organizer-color-row input[type=color] {
  flex: 0 0 46px;
  width: 46px;
  max-width: 46px;
}
.organizer-color-row input[type=text] {
  flex: 1 1 auto;
  min-width: 0;
}
.organizer-form .field input[type=email],
.organizer-form .field input[type=password],
.organizer-form .field input[type=text],
.organizer-form .field input[type=date],
.organizer-form .field input[type=time],
.organizer-form .field input[type=number],
.organizer-form .field input[type=file],
.organizer-form .field input[type=color],
.organizer-form .field select,
.organizer-form .field textarea {
  width: 100%; font: inherit; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid #D0D5DB; background: #fff; color: #0A0A0A;
}
.organizer-form .field input[type=file] {
  padding: 10px 12px; background: #F8FAFC;
}
.organizer-form .field input[type=color] {
  padding: 4px; height: 46px; width: 46px; max-width: 46px; cursor: pointer;
}
.organizer-form .field input:focus,
.organizer-form .field select:focus,
.organizer-form .field textarea:focus {
  outline: 2px solid var(--logo-aqua);
  outline-offset: 1px;
  border-color: var(--logo-aqua);
}
.organizer-check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: #0A0A0A; font-weight: 600;
}
.organizer-check input { margin-top: 3px; }
.organizer-form-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 4px;
}
.organizer-otp-resend {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 18px;
}
.organizer-otp-resend .btn-ghost {
  color: #0A0A0A; border-color: #D0D5DB; background: #fff;
}
.organizer-otp-resend .btn-ghost:hover {
  border-color: var(--logo-aqua); color: var(--logo-aqua);
}
#one_time_password {
  letter-spacing: .35em; font-size: 22px; font-weight: 700;
  text-align: center; font-family: "JetBrains Mono", ui-monospace, monospace;
}
.form-alert {
  padding: 12px 14px; border-radius: 10px;
  background: rgba(247, 148, 29, .12); color: #F8C98A; font-size: 14px;
}
.form-alert-warning {
  background: rgba(247, 148, 29, .18);
  color: #FFD9A3;
  margin: 12px 0;
  border: 1px solid rgba(247, 148, 29, .45);
  border-left: 4px solid #F7941D;
  font-weight: 600;
}
.form-alert-danger {
  background: rgba(220, 60, 60, .28);
  color: #FFE0E0;
  margin: 12px 0;
  border: 1px solid rgba(255, 110, 110, .55);
  border-left: 4px solid #E54848;
  box-shadow: 0 0 0 1px rgba(229, 72, 72, .18), 0 8px 24px rgba(120, 20, 20, .25);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
}
.form-alert-success {
  background: rgba(112, 203, 209, .15); color: #0A0A0A; margin-bottom: 18px;
}
.form-alert-success a { color: var(--logo-aqua); font-weight: 700; margin-left: 8px; }
.ticket-sale-panel {
  display: grid;
  grid-template-columns: 88px 1fr;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.ticket-sale-count {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(255,255,255,.14);
  color: #5B8DEF;
  font-weight: 700;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}
.ticket-sale-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  min-height: 64px;
}
.ticket-sale-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #E8EAED;
}
.ticket-sale-icon { display: inline-flex; line-height: 0; }
.ticket-sale-icon-paused { color: #F7941D; }
.ticket-sale-icon-live { color: #2F9E62; }
.ticket-sale-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.ticket-sale-action-start {
  background: #1F7A4D;
  color: #fff;
}
.ticket-sale-action-start:hover { background: #246B46; }
.ticket-sale-action-pause {
  background: transparent;
  color: #F8C98A;
  border: 1px solid rgba(247, 148, 29, .55);
}
.ticket-sale-action-pause:hover {
  background: rgba(247, 148, 29, .12);
}
.ticket-sale-confirm { margin-top: 10px; }
.ticket-sale-apply {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.ticket-sale-feedback {
  margin-top: 10px;
  font-size: 14px;
  color: var(--logo-aqua);
}
.ticket-sale-feedback-error { color: #F5B4B4; }
@media (max-width: 600px) {
  .ticket-sale-panel { grid-template-columns: 1fr; }
  .ticket-sale-count {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding: 12px;
    font-size: 16px;
  }
  .ticket-sale-status-row { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .organizer-form-row { grid-template-columns: 1fr; }
}
.organizer-groups { display: flex; flex-direction: column; gap: 14px; }
.organizer-group {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding: 20px 22px; border: 1px solid var(--logo-black-line);
  border-radius: 14px; background: rgba(255,255,255,.03);
}
.organizer-group h2 { margin: 0 0 6px; font-size: 20px; }
.organizer-group code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; color: var(--logo-aqua);
}
.organizer-footnote { margin-top: 28px; font-size: 14px; color: #9aa1a8; }
.organizer-footnote a { color: var(--logo-aqua); }
.organizer-events { margin-top: 40px; }
.organizer-events-heading { margin: 0 0 16px; font-size: 22px; font-weight: 800; }
.organizer-event-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.organizer-event-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  padding: 16px 18px; border: 1px solid var(--logo-black-line); border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.organizer-event-row strong { display: block; font-size: 16px; margin-bottom: 4px; }
.organizer-event-row .muted { margin: 0; font-size: 13px; }
.organizer-event-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.organizer-event-actions .organizer-event-view {
  color: #0A0A0A;
  background: #E8EAED;
  border-color: #E8EAED;
}
.organizer-event-actions .organizer-event-view:hover {
  color: #0A0A0A;
  background: #fff;
  border-color: #fff;
}

.event-show-banner {
  width: 100%; max-height: 280px; overflow: hidden; background: var(--board-bg);
}
.event-show-banner img {
  display: block; width: 100%; height: 280px; object-fit: cover;
}
.event-show-hero .detail-logo .event-logo-fallback {
  width: 100%; height: 100%; border-radius: 12px;
}
.event-show-prose a { color: var(--logo-orange); font-weight: 700; }
.event-show-additional {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
}
.event-show-aside-label {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .6px; text-transform: uppercase;
  color: var(--slate); font-weight: 700;
}
/* Host is just a wrapper ? Tito injects .tito-widget-button inside. */
.event-show-aside tito-button.event-tito-button,
.event-show-aside .event-tito-button {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
}
.event-show-aside .tito-widget-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 12px 18px !important;
  border: 0 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  background: var(--logo-orange) !important;
  color: #0A0A0A !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}
.event-show-aside .tito-widget-button:hover {
  background: var(--logo-orange-hover) !important;
}
.event-show-aside .tito-widget-button * {
  color: inherit !important;
  font: inherit !important;
}
.event-show-privacy-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--slate);
}
.event-show-privacy-note a {
  color: var(--logo-orange);
  font-weight: 700;
  text-decoration: none;
}
.event-show-privacy-note a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .event-show-banner img { height: 180px; }
}
