:root {
  --yellow: #F2EB53;
  --cyan: #19BBE9;
  --red: #EF3A30;
  --ink-accent: var(--yellow); /* accent for TEXT — flips to blue in light mode */
  --black: #030303;
  --dark: #212529;
  --surface: #0D0F11;
  --card: #15181C;
  --border: #2A2D32;
  --text-primary: #F0F0F0;
  --text-secondary: #9CA3AF;
  --text-tertiary: #fff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-ui: 'Manrope', sans-serif;
  --grid-max: 1200px;
  --grid-margin: 48px;
}
*::marker {
    content: none;
}
.footer-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: var(--text-secondary);
  background: var(--surface, #fff);

  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;

  cursor: pointer;

  /* Hidden until hero section is passed */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
/* Footer theme logo */
.footer-logo-theme-switcher {
    width: 350px;
    display: block;
}

.footer-logo-theme-switcher .footer-logo {
    display: block;
    width: 100%;
    height: auto;
}

.footer-logo-theme-switcher .footer-logo-light {
    display: none;
}

/* Light theme */
html[data-theme="light"] .footer-logo-theme-switcher .footer-logo-dark {
    display: none;
}

html[data-theme="light"] .footer-logo-theme-switcher .footer-logo-light {
    display: block;
}
/* Show after hero section */
.footer-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.btn-speaker-download:hover{
      color: #0E1012;
}
.wpcf7-form-control {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}
.register-form .wpcf7-form p {
    margin: 0;
}

.register-form .wpcf7-form br {
    display: none;
}

.register-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.register-form .form-group {
    flex: 1;
}

.register-form .form-group.full {
    flex: 0 0 100%;
}

.register-form .wpcf7-form-control {
    width: 100%;
    box-sizing: border-box;
}

.register-form .wpcf7-submit.btn-form-submit {
    width: 100%;
}

@media (max-width: 768px) {
    .register-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
}
.form-group label span{
  color: red;
}

.btn-speaker-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 9px 23px;
    background: var(--yellow);
    color: #0E1012;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(242, 235, 83, 0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

.overline {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.section-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink-accent); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes spinCW { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes rotateCW { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

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

/* ═══ FLOATING QE LOGO DECORATIONS ═══ */
.qe-decor-host { position: relative; overflow: hidden; }
.qe-decor-host > .container,
.qe-decor-host > .agenda-header,
.qe-decor-host > .gallery-marquee,
.qe-decor-host > .testimonials-marquee,
.qe-decor-host > .bento-grid { position: relative; z-index: 1; }
.qe-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  transform-origin: center center;
  animation: rotateCW 50s linear infinite;
}
.qe-decor.ccw { animation-name: rotateCCW; }
.qe-decor.spin-slow { animation-duration: 80s; }
.qe-decor.spin-fast { animation-duration: 30s; }
.qe-decor img { width: 100%; height: 100%; display: block; object-fit: contain; }
.qe-decor.size-sm { width: 200px; height: 200px; }
.qe-decor.size-md { width: 360px; height: 360px; }
.qe-decor.size-lg { width: 520px; height: 520px; }
.qe-decor.size-xl { width: 720px; height: 720px; }
@media (prefers-reduced-motion: reduce) {
  .qe-decor { animation: none; }
}
@media (max-width: 768px) {
  .qe-decor.size-lg, .qe-decor.size-xl { width: 320px; height: 320px; }
  .qe-decor.size-md { width: 220px; height: 220px; }
}

/* ═══ 01 NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(3,3,3,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
/* Inline SVG logo — wordmark is currentColor so it can flip per theme */
.qe-logo-svg { display: block; width: auto; color: #fff; }
.nav-logo .qe-logo-svg { height: 32px; }
/* On light backgrounds the white wordmark must become dark */
[data-theme="light"] .nav.scrolled .nav-logo .qe-logo-svg,
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-primary); }
/* Past Editions dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--text-primary); }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: rgba(10,11,14,0.96);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 10px 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.btn-register,
.btn-register {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  background: var(--yellow);
  color: #0E1012;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}
.btn-register:hover { background: #E5DE3F; color: #0E1012; transform: translateY(-1px); }

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.theme-toggle:hover { color: var(--text-primary); border-color: var(--text-tertiary); }
.theme-toggle svg { width: 16px; height: 16px; display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ═══ 02 HERO ═══ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #030303;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.45) 100%);
}
.hero-video-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  animation: fadeUp 0.6s ease both;
}
.hero-logo-lockup {
  display: inline-flex;
  margin-bottom: clamp(22px, 3.5vw, 40px);
}
.hero-logo-svg {
  width: clamp(300px, 40vw, 540px);
  height: auto;
  display: block;
  color: #fff;   /* hero background is always dark → keep the wordmark white in both themes */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}
.hero-title {
  font-family: var(--font-ui);
  font-size: clamp(56px, 8.2vw, 119px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
@media (min-width: 769px) {
  .hero-title { margin-top: 24px; }
}
.hero-title .qe-wrap {
  position: relative;
  display: inline-block;
}
.hero-title .qe-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 3.5em;
  height: auto;
  pointer-events: none;
  z-index: -1;
  animation: spinCW 30s linear infinite;
}
.hero-title .conclave-wrap {
  position: relative;
  text-transform: none;
}
.hero-title .year-tag {
  font-family: var(--font-display);
  font-size: 0.46em;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: absolute;
  top: -0.25em;
  right: -0.3em;
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  max-width: 440px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.15s both;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(239,58,48,0.55);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-meta-item svg { width: 14px; height: 14px; color: var(--yellow); flex-shrink: 0; }
.hero-theme {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin: 0 0 16px;
  max-width: 720px;
  line-height: 1.5;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: none;
  margin: 0;
  text-align: center;
}
.hero-theme-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 5px 12px;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  margin-top: 24px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.btn-hero {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  padding: 15px 34px;
  background: var(--yellow);
  color: #0E1012;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 36px rgba(242, 235, 83, 0.32), 0 0 0 0 rgba(242, 235, 83, 0.4);
  animation: heroCtaPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
@keyframes heroCtaPulse {
  0%, 100% { box-shadow: 0 12px 36px rgba(242, 235, 83, 0.32), 0 0 0 0 rgba(242, 235, 83, 0.4); }
  50% { box-shadow: 0 16px 44px rgba(242, 235, 83, 0.4), 0 0 0 14px rgba(242, 235, 83, 0); }
}
.btn-hero:hover {
  background: #FFF66B;
  color: #0E1012;
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(242, 235, 83, 0.45);
}
.btn-hero::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.2s;
}
.btn-hero:hover::after { transform: translateX(4px); }
.btn-ghost {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 15px 28px;
  background: #191919;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { color: #fff; background: #222; }
.btn-ghost svg { width: 16px; height: 16px; }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-bottom-text {
  max-width: 563px;
}
.hero-bottom-text p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.45;
}
.hero-countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.hero-countdown-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-countdown-tagline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-countdown {
  display: flex;
  gap: 0;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.countdown-block {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.countdown-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.12);
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 72px;
  padding: 4px 0 10px;
}
.countdown-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ═══ 03 STATS ═══ */
.stats-section {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.stats-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.stats-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 10px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}
.stat-card {
  position: relative;
  padding: 36px 28px 28px;
  border-left: 1px solid var(--border);
  text-align: center;
}
.stat-card:first-child { border-left: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 84px);
  font-weight: 800;
  color: var(--accent, var(--yellow));
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: 0.42em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 14px;
}

/* ═══ 05 MANIFESTO ═══ */
.manifesto { padding: 0; overflow: hidden; border-bottom: 1px solid var(--border); position: relative; min-height: 720px; }
.manifesto-grid {
  position: relative;
}
.manifesto-content {
  max-width: 100%;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 760px;
}
.manifesto-headline em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 600;
}
.manifesto-body {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}
.manifesto-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.manifesto-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.manifesto-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #030303 0%, rgba(3,3,3,0.4) 40%, rgba(3,3,3,0) 80%);
}

/* ═══ WHO SHOULD ATTEND ═══ */
.audience {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(8, 9, 11, 0.82), rgba(8, 9, 11, 0.9)),
    url("../decor/bg-who-should-attend.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.audience > .container { position: relative; z-index: 1; }
.audience-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.audience-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 12px;
}
.audience-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-top: 16px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent, var(--yellow));
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  background: #1A1D22;
}
/* Hover bg is always dark, so force light text in both themes */
.audience-card:hover .audience-card-title { color: #fff; }
.audience-card:hover .audience-card-desc { color: rgba(255,255,255,0.78); }
.audience-card:hover .audience-card-role { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.22); }
.audience-card:hover .audience-card-icon { background: rgba(255,255,255,0.08); }
.audience-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--accent, var(--yellow));
}
.audience-card-icon svg { width: 22px; height: 22px; }
.audience-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.audience-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.audience-card-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.audience-card-role {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ═══ 06 TRACKS ═══ */
.tracks { padding: 80px 0; border-top: 1px solid var(--border); }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.track-card {
  background: var(--card);
  padding: 28px 24px;
  border-left: 3px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--track-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.track-card:hover,
.track-card.is-active { transform: translateY(-2px); }
.track-card:hover::before,
.track-card.is-active::before { transform: scaleX(1); }
.track-card > * { position: relative; z-index: 1; }
.track-card:hover .track-name,
.track-card:hover .track-desc,
.track-card.is-active .track-name,
.track-card.is-active .track-desc { color: #fff; }
.track-card:hover .track-tag,
.track-card.is-active .track-tag { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.track-card[data-dark-text]:hover .track-name,
.track-card[data-dark-text]:hover .track-desc,
.track-card[data-dark-text].is-active .track-name,
.track-card[data-dark-text].is-active .track-desc { color: #0E1012; }
.track-card[data-dark-text]:hover .track-tag,
.track-card[data-dark-text].is-active .track-tag { border-color: rgba(0,0,0,0.25); color: rgba(0,0,0,0.7); }
.track-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.track-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.track-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.track-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  transition: border-color 0.3s, color 0.3s;
}
.section-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #0E1012;
  background: var(--yellow);
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.section-link:hover { background: #E5DE3F; color: #0E1012; transform: translateY(-1px); }

/* ═══ 07 SPEAKERS ═══ */
.speakers { padding: 80px 0; border-top: 1px solid var(--border);}
.speakers-grid {
  display: none; /* ═══ Grid ═══ */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.speaker-card { cursor: pointer; }
.speaker-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.speaker-card:hover .speaker-img { transform: scale(1.02); }
.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.6s ease;
}
.speaker-card:hover .speaker-img img {
  filter: grayscale(0);
}
.speaker-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}
.speaker-name span { min-width: 0; }
.speaker-name-li {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0A66C2;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.speaker-name-li:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.speaker-name-li svg { width: 16px; height: 16px; }
.speaker-title {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.speaker-company {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-accent);
  letter-spacing: 0.01em;
}
.speaker-talk {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* When relocated inside the image, render as a bottom overlay on hover */
.speaker-img .speaker-talk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.speaker-card:hover .speaker-talk { opacity: 1; transform: translateY(0); }

.speakers-cta {
  margin-top: 48px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(242, 235, 83, 0.08) 0%, rgba(242, 235, 83, 0.02) 100%);
  border: 1px solid rgba(242, 235, 83, 0.25);
  border-left: 4px solid var(--yellow);
  position: relative;
}
.speakers-cta-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 280px;
}
.speakers-cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.speakers-cta-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242, 235, 83, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(242, 235, 83, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(242, 235, 83, 0.05); }
}
.speakers-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.speakers-cta-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 620px;
}
.btn-speaker-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  background: var(--yellow);
  color: #0E1012;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(242, 235, 83, 0.18);
}
.btn-speaker-apply:hover {
  background: #E5DE3F;
  color: #0E1012;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 235, 83, 0.28);
}
.speakers-secondary {
  margin-top: 20px;
  text-align: right;
}
.speakers-secondary-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.speakers-secondary-link:hover { color: var(--text-primary); }

/* ═══ 08 PAST SPEAKERS ═══ */
.past-speakers {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.past-speakers-subline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  margin-top: -12px;
}
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.alumni-card { text-align: center; }
.alumni-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.alumni-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.6s ease;
}
.alumni-card:hover .alumni-img img {
  filter: grayscale(0);
}
.alumni-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.alumni-co {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-accent);
  margin-top: 2px;
	display:none;
}

/* ═══ 09 AGENDA ═══ */
.agenda { padding: 100px 0; border-top: 1px solid var(--border); display:none }
.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.agenda-header-left {}
.agenda-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.agenda-title span { color: var(--ink-accent); }
.agenda-date-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.agenda-date-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.agenda-date-bar-left .day-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242, 235, 83, 0.18);
}
.agenda-date-bar-meta {
  display: flex;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.agenda-date-bar-meta span strong {
  color: var(--text-secondary);
  font-weight: 600;
  margin-right: 6px;
}
.session-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding-left 0.3s;
  cursor: default;
  position: relative;
}
.session-row:hover {
  background: rgba(255,255,255,0.03);
  padding-left: 24px;
}
/* Left column: speaker avatars / break icon */
.session-lead {
  display: flex;
  align-items: center;
  justify-content: center;  /* single avatars sit centered in the column */
  flex-shrink: 0;
  width: 124px;            /* fixed so every talk title lines up */
}
.session-avatars { display: flex; align-items: center; }
.session-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--black);
  background: var(--card);
  margin-left: -14px;
  transition: transform 0.2s;
}
.session-avatar:first-child { margin-left: 0; }
.session-row:hover .session-avatar { transform: translateY(-1px); }
.session-break-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(242,235,83,0.08);
  border: 1px solid rgba(242,235,83,0.28);
  color: var(--yellow);
  transition: background 0.3s, transform 0.3s;
}
.session-break-icon svg { width: 20px; height: 20px; }
.session-row.is-break:hover .session-break-icon { background: rgba(242,235,83,0.16); transform: scale(1.06); }
/* Middle column: title + speaker */
.session-content { flex: 1; min-width: 0; }
.session-title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s;
}
.session-row:hover .session-title { color: #fff; }
.session-by {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 8px;
}
/* Right column: time range + session tag */
.session-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
  text-align: right;
}
.session-time {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-variant-numeric: tabular-nums;
}
.session-time .time-start,
.session-time .time-end {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.session-time .time-end { font-weight: 600; color: var(--text-secondary); }
.session-time .time-dash { color: var(--text-tertiary); font-size: 16px; }
.session-row:hover .session-time .time-start { color: var(--ink-accent); }
/* Break variant — normal row, tag + timings right-aligned */
.session-row.is-break {
  cursor: default;
  padding: 16px;
  background: rgba(242,235,83,0.05);
}
.session-row.is-break:hover { background: rgba(242,235,83,0.08); padding-left: 16px; }
.session-row.is-break .session-content { flex: 1; }
.session-row.is-break .session-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}
.session-row.is-break:hover .session-title { color: #fff; }
.session-row.is-break .session-meta {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.session-row.is-break .session-time .time-start,
.session-row.is-break .session-time .time-end {
  color: var(--yellow);
  font-weight: 700;
  font-size: 18px;
}
.session-row.is-break:hover .session-time .time-start { color: var(--yellow); }
.session-row.is-break .session-break-tag {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
}
/* Panel discussion row — centered, like the past-edition panel slide:
   avatars row on top, panelist names, then the title (same colours/style). */
.session-row[data-track="panel"] {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.session-row[data-track="panel"]:hover { padding-left: 16px; }
.session-row[data-track="panel"] .session-lead { width: auto; }
.session-row[data-track="panel"] .session-avatar { width: 54px; height: 54px; margin-left: -16px; }
.session-row[data-track="panel"] .session-avatar:first-child { margin-left: 0; }
.session-row[data-track="panel"] .session-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}
.session-row[data-track="panel"] .session-by { order: -1; margin-top: 0; margin-bottom: 8px; }
.session-row[data-track="panel"] .session-title { max-width: 60ch; }
.session-row[data-track="panel"] .session-meta {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2px;
}
/* Time sits in the top-right corner; the PANEL tag stays centered */
.session-row[data-track="panel"] .session-time {
  position: absolute;
  top: 22px;
  right: 16px;
}
.session-track-tag {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  text-transform: uppercase;
  flex-shrink: 0;
  border-radius: 3px;
  transition: transform 0.3s;
}
.session-row:hover .session-track-tag { transform: scale(1.04); }
/* Color-coded by session type — stroke only, no fill */
.session-row[data-track="keynote"] .session-track-tag,
.session-row[data-track="ai-qe"] .session-track-tag { border-color: var(--red); }
.session-row[data-track="test-arch"] .session-track-tag { border-color: var(--cyan); }
.session-row[data-track="perf"] .session-track-tag { border-color: #1B998B; }
.session-row[data-track="leadership"] .session-track-tag { border-color: var(--yellow); }
.session-row[data-track="panel"] .session-track-tag { border-color: var(--yellow); }
.session-row[data-track="fireside"] .session-track-tag { border-color: var(--red); }
@media (max-width: 680px) {
  .session-row { flex-wrap: wrap; gap: 14px 16px; align-items: flex-start; }
  .session-content { flex: 1 1 60%; order: 2; }
  .session-lead { order: 1; }
  .session-meta {
    order: 3;
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .session-row.is-break { align-items: center; }
}
/* ═══ 10 HIGHLIGHTS ═══ */
.highlights {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.55fr;
  grid-template-rows: 290px 150px;
  gap: 14px;
  margin-bottom: 14px;
}
.bento-item {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.bento-item.large {
  grid-row: 1 / 3;
}
.bento-item.large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(102,102,102,0) 5%, rgba(0,0,0,0.6) 75%);
  z-index: 1;
}
.bento-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.bento-item.has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 1;
}
.bento-text-inner {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}
.bento-text-inner h3 {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.bento-item.bento-lg .bento-text-inner h3 {
  font-size: 32px;
}

/* Edition cards row */
.edition-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.edition-card {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 114px;
}
.edition-card.red { background: #F0463D; }
.edition-card.cyan { background: var(--cyan); }
.edition-card.yellow { background: var(--yellow); }
.edition-year {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.edition-card.yellow .edition-year { color: #323333; }
.edition-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
}
.edition-card.yellow .edition-city { color: #1d1d1d; }
.edition-stats {
  font-family: var(--font-body);
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}
.edition-card.yellow .edition-stats { color: #323333; }

/* ═══ 11 VIDEO TESTIMONIALS ═══ */
.testimonials { padding: 80px 0; border-top: 1px solid var(--border); overflow: hidden; }
.testimonials-marquee {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.video-testimonial {
  width: 360px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.video-testimonial:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}
.video-testimonial:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--red);
}
.play-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 2px;
}
.video-testimonial-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
	display:none;
}
.video-testimonial-brief {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Video player overlay */
.video-player-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.video-player-overlay.active { display: flex; }
.video-player-wrap {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.video-player-wrap iframe,
.video-player-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  background: #000;
}
.video-player-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: color 0.2s;
}
.video-player-close:hover { color: var(--yellow); }

/* ═══ 12 VENUE ═══ */
.venue {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.venue-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
  overflow: hidden;
  background: #000 url('../venue/convention-center-image.jpg') center/cover no-repeat;
}
.venue-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.venue-hero-video video,
.venue-hero-video img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.venue-hero-video img {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.venue-hero-video img.active { opacity: 1; }
.venue-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.venue-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.venue-card {
  background: #fff;
  padding: 32px;
  max-width: 380px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.venue-card-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 8px;
}
.venue-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #0E1012;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.venue-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4B5056;
  line-height: 1.55;
  margin-bottom: 24px;
}
.venue-card-address {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #0E1012;
  line-height: 1.55;
  margin-bottom: 24px;
}
.venue-card-address-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: #8A8F96;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.btn-venue-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-venue-maps:hover { background: #D73229; color: #fff; transform: translateY(-1px); }
.venue-getting-there {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px var(--grid-margin);
}
.venue-getting-there-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.venue-getting-there-label,
.venue-getting-there .venue-info { color: #fff; }
.venue-getting-there .venue-info svg { color: rgba(255,255,255,0.85); }
.venue-getting-there-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.venue-info {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.venue-info svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-tertiary);
}

/* ═══ 12B REGISTER CARD ═══ */
.register-card {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.register-card-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.register-card-left {
  flex: 1;
}
.register-breadcrumb {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.register-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--text-tertiary);
}
.register-heading {
  font-family: var(--font-ui);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.register-heading em {
  font-style: normal;
  color: var(--ink-accent);
}
.register-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.register-actions {
  display: flex;
  gap: 16px;
}
.btn-register-primary {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--yellow);
  color: #0E1012;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-register-primary:hover { background: #E5DE3F; color: #0E1012; transform: translateY(-1px); }
.btn-register-outline {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-register-outline:hover { border-color: var(--text-tertiary); color: var(--text-primary); }

.register-card-right {
  width: 464px;
  flex-shrink: 0;
}
.register-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.register-info-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.register-info-value {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ═══ TESTIMONIALS (video + quote carousel) ═══ */
.testimonials-section { padding: 100px 0; border-top: 1px solid var(--border); position: relative; }
.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.testimonials-nav { display: flex; gap: 12px; flex-shrink: 0; }
.t-arrow {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}
.t-arrow:hover { background: var(--yellow); border-color: var(--yellow); color: #0E1012; }
.t-arrow svg { width: 20px; height: 20px; }
.t-arrow:disabled { opacity: 0.35; cursor: default; }
.t-arrow:disabled:hover { background: transparent; border-color: var(--border); color: var(--text-primary); }
.testimonials-viewport { overflow: hidden; }
.testimonials-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.testimonials-rail::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.tcard:hover { border-color: var(--text-tertiary); transform: translateY(-3px); }
.tcard-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.tcard-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.3s, opacity 0.3s; }
.tcard-video:hover img { transform: scale(1.04); opacity: 1; }
.tcard-video .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(242,235,83,0.94); color: #0E1012;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.tcard-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.tcard-video .play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.tcard-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.tcard-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: normal;
}
.tcard-quote::before {
  content: '\201C';
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0;
  vertical-align: -0.32em;
  margin-right: 4px;
}
.tcard-person { margin-top: auto; }
.tcard-name { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--text-primary); }
.tcard-role { font-family: var(--font-ui); font-size: 13px; color: var(--text-tertiary); margin-top: 3px; }
@media (max-width: 1000px) { .tcard { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 680px) {
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .tcard { flex-basis: 84%; }
}

/* ═══ 12C GALLERY ═══ */
.gallery {
  background: var(--black);
  overflow: hidden;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 var(--grid-margin);
}
.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-top: 10px;
  line-height: 1.2;
}
.gallery-header p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  margin-bottom: 16px;
}
.gallery-track img {
  height: 260px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.gallery-track.move-left {
  animation: marqueeLeft 60s linear infinite;
}
.gallery-track.move-left img {
  opacity: 0.8;
}
.gallery-track.move-right {
  animation: marqueeRight 60s linear infinite;
}

/* ═══ CTA BANNER ═══ */
.cta-banner-section { padding: 26px 0 40px; }
.cta-banner {
  position: relative;
  max-width: var(--grid-max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(24px, 2.8vw, 40px);
  background:
    radial-gradient(60% 110% at 100% 0%, rgba(242,235,83,0.16), transparent 55%),
    linear-gradient(150deg, #0c0d10 0%, #14151b 55%, #0a0b0e 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0 0 0 46%;
  background: url('../gallery/DSC04951.png') center right / cover no-repeat;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
  mask-image: linear-gradient(90deg, transparent, #000 70%);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: -130px; right: -70px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,235,83,0.42), rgba(242,235,83,0) 65%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}
.cta-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.cta-col { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.cta-col.left {
  border-right: 1px solid rgba(255,255,255,0.16);
  padding-right: clamp(28px, 4vw, 56px);
}
.cta-col.right { align-items: flex-start; padding-left: clamp(28px, 4vw, 56px); }
/* Left panel */
.cta-icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(242,235,83,0.4);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.05);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--yellow);
  margin-bottom: 16px;
}
.cta-icon-circle svg { width: 26px; height: 26px; }
.cta-label {
  font-family: var(--font-ui);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.cta-label::after {
  content: '';
  display: block;
  width: 64px; height: 4px;
  border-radius: 10px;
  background: var(--yellow);
  margin-top: 12px;
}
.cta-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-free {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--yellow);
}
.cta-note {
  font-family: var(--font-ui);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  color: rgba(255,255,255,0.72);
}
/* Right panel */
.cta-miss {
  font-family: var(--font-ui);
  font-size: clamp(43px, 2.9vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
  display: none;
}
.cta-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  min-height: 58px;
  background: var(--yellow);
  color: #0E1012;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(18px, 1.7vw, 23px);
  padding: 0 22px;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 22px 56px rgba(242,235,83,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-register-btn,
.cta-register-btn:hover { color: #0E1012; }
.cta-register-btn:hover { transform: translateY(-2px); box-shadow: 0 26px 64px rgba(242,235,83,0.45); }
.cta-register-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #0E1012;
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-register-circle svg { width: 22px; height: 22px; }
.cta-register-label { flex: 1; text-align: center; }
.cta-register-arrow { width: 26px; height: 26px; flex-shrink: 0; }
.cta-seats {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-ui);
  font-weight: 500;
  color: rgba(255,255,255,0.74);
  margin-top: 18px;
  font-size: clamp(17px, 1.6vw, 22px);
}
.cta-seats svg { width: 24px; height: 24px; color: var(--yellow); flex-shrink: 0; }
.cta-seats strong { color: var(--yellow); font-weight: 700; }
/* Date / venue pill */
.cta-datebar {
  position: relative;
  z-index: 1;
  margin-top: clamp(22px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 999px;
  background: rgba(6,12,22,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.cta-datebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(14px, 1.8vw, 22px) clamp(24px, 3.5vw, 44px);
}
.cta-datebar-item + .cta-datebar-item { border-left: 1px solid rgba(255,255,255,0.16); }
.cta-datebar-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-datebar-icon svg { width: 24px; height: 24px; }
.cta-datebar-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 700;
  color: #fff;
}
@media (max-width: 860px) {
  .cta-banner { border-radius: 22px; padding: 32px 24px; }
  .cta-banner::after { inset: 56% 0 0 0; -webkit-mask-image: linear-gradient(0deg, transparent, #000 72%); mask-image: linear-gradient(0deg, transparent, #000 72%); }
  .cta-banner-grid { grid-template-columns: 1fr; gap: 38px; }
  .cta-col.left { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); padding-right: 0; padding-bottom: 36px; }
  .cta-col.right { padding-left: 0; }
  .cta-register-btn { max-width: none; }
  .cta-datebar { grid-template-columns: 1fr; border-radius: 26px; }
  .cta-datebar-item + .cta-datebar-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
}

/* ═══ 13 SPONSORS ═══ */
.sponsors { padding: 100px 0; border-top: 1px solid var(--border); }
.sponsors-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  margin: 0;
}
.sponsors-subheading {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin: 18px 0 56px;
}
.sponsor-tier {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.sponsor-tier:last-of-type { border-bottom: 1px solid var(--border); }
.sponsor-tier-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.sponsor-tier-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 30px;
  border: 1px solid var(--red);
  border-radius: 999px;
}
.sponsor-tier-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  background: currentColor;
}
.sponsor-tier.title .sponsor-tier-label { color: var(--yellow); font-size: 15px; letter-spacing: 0.2em; }
.sponsor-tier.platinum .sponsor-tier-label { color: #E5E4E2; font-size: 14px; }
.sponsor-tier.gold .sponsor-tier-label { color: #F2C84B; }
.sponsor-tier.silver .sponsor-tier-label { color: #B0B6BD; font-size: 12px; }
.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
}
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.25s;
}
.sponsor-logo:hover { transform: translateY(-3px); }
.sponsor-logo img {
  width: 100%;
  display: block;
  object-fit: contain;
  /* Render logos in their original brand colors — no white/monochrome overlay */
  filter: none;
  opacity: 1;
  transition: opacity 0.25s;
}
/* Title: the single biggest logo */
.sponsor-tier.title .sponsor-logo { padding: 36px 64px; min-width: 320px; min-height: 180px; }
.sponsor-tier.title .sponsor-logo img { height: 84px; max-width: 360px; }
/* Platinum: huge, generous padding */
.sponsor-tier.platinum .sponsor-logo { padding: 28px 48px; min-width: 240px; min-height: 140px; }
.sponsor-tier.platinum .sponsor-logo img { height: 132px; max-width: 280px; }
/* Gold: medium — single line */
.sponsor-tier.gold .sponsor-logos { flex-wrap: nowrap; gap: 32px; }
.sponsor-tier.gold .sponsor-logo { padding: 20px 32px; min-width: 0; flex: 1 1 0; min-height: 100px; }
.sponsor-tier.gold .sponsor-logo img { height: 107px; max-width: 259px; }
/* Silver: compact — single line */
.sponsor-tier.silver .sponsor-logos { flex-wrap: nowrap; gap: 24px; }
.sponsor-tier.silver .sponsor-logo { padding: 14px 24px; min-width: 0; flex: 1 1 0; min-height: 70px; }
.sponsor-tier.silver .sponsor-logo img { height: 89px; max-width: 175px; }
/* Placeholder logo slots — shown until real 2026 partners are confirmed */
.sponsor-logo.placeholder {
  background: transparent;
  border: 1.5px dashed var(--border);
  color: var(--text-tertiary);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.sponsor-logo.placeholder:hover { transform: none; box-shadow: none; }
.sponsor-tier.title .sponsor-logo.placeholder { font-size: 16px; }
.sponsor-tier.platinum .sponsor-logo.placeholder { font-size: 14px; }
.sponsor-tier.silver .sponsor-logo.placeholder { font-size: 11px; }
.sponsor-cta-row {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.sponsor-cta-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.section-link.sponsor-cta-btn {
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 0;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(242, 235, 83, 0.35);
}
.section-link.sponsor-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(242, 235, 83, 0.5);
}
.sponsors-past-toggle {
  margin-top: 64px;
  text-align: center;
}
.sponsors-past-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}
.sponsors-past-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.sponsors-past-grid .sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 0;
  min-height: 92px;
  transition: transform 0.2s;
}
.sponsors-past-grid .sponsor-logo:hover { transform: translateY(-2px); }
.sponsors-past-grid .sponsor-logo img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
@media (max-width: 900px) { .sponsors-past-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sponsors-past-grid { grid-template-columns: repeat(2, 1fr); } }
.sponsor-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}
.sponsor-tier.silver .sponsor-name { font-size: 15px; }
.sponsors-past-grid .sponsor-name { font-size: 15px; color: #333; }

/* ═══ SPONSOR TESTIMONIALS ═══ */
.sponsor-quotes {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.sponsor-quotes-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.sponsor-quotes-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 12px;
}
.sponsor-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sponsor-quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.sponsor-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: -12px;
}
.sponsor-quote-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  flex: 1;
}
.sponsor-quote-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.sponsor-quote-logo {
  background: #fff;
  border-radius: 4px;
  padding: 8px 14px;
  flex-shrink: 0;
}
.sponsor-quote-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.sponsor-quote-attr {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.sponsor-quote-attr strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
}
@media (max-width: 900px) {
  .sponsor-quotes-grid { grid-template-columns: 1fr; }
}

/* ═══ 14B REGISTRATION FORM ═══ */
.register-form-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.register-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.register-form-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.register-form-left h2 span { color: var(--ink-accent); }
.register-form-left p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.register-form-perks {
  list-style: none;
  padding: 0;
}
.register-form-perks li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.register-form-perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.register-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.register-form h3 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.label-optional { font-weight: 500; color: var(--text-tertiary); text-transform: none; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.btn-form-submit{
	 background: var(--yellow) !important;
  border: 1px solid var(--border);
  color: var(--black)!important;
}
::placeholder{
  color: var(--text-secondary) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-tertiary); }
.form-group textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.form-group select {
  appearance: none;
  cursor: pointer;
}

/* ── Pop-up form modals (sponsor / speaker) ── */
.form-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-modal-overlay.active { display: flex; }
.form-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
  animation: fadeUp 0.3s ease both;
}
.form-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.form-modal-close:hover { color: var(--text-primary); }
.form-modal-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.form-modal h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
}
.form-modal-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}
#speakerModal .form-modal textarea { min-height: 80px; }
.btn-form-submit {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 0;
  width: 100%;
  background: var(--yellow);
  color: #0E1012;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.btn-form-submit:hover { background: #E5DE3F; transform: translateY(-1px); }
.form-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 12px;
  line-height: 1.5;
}

/* ═══ 15 FOOTER ═══ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0;
}
.footer-main {
  position: relative;
  padding: 96px 0 28px;
  border-top: 1px solid var(--border);
}
/* Decorative starburst shapes */
.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-decor .burst {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.08;
}
/* The colorful QE pinwheel needs more presence on a white footer */
[data-theme="light"] .footer-decor .burst { opacity: 0.16; }
.footer-decor .burst img {
  width: 100%;
  height: 100%;
}
.footer-decor .burst-1 {
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
}
.footer-decor .burst-1 img {
  transform-origin: center center;
  animation: rotateCW 40s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .footer-decor .burst-1 img { animation: none; }
}

.footer-main .container {
  position: relative;
  z-index: 1;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 8px;
}
.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
}
.qe-logo-footer { height: clamp(104px, 12vw, 160px); }

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px 64px;
}
.footer-nav-grid a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-grid a:hover { color: var(--ink-accent); }

.footer-social-label {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--text-tertiary);
  color: var(--text-primary);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-link:hover { transform: translateY(-2px); }
.footer-social-link.is-linkedin:hover { border-color: #0A66C2; color: #0A66C2; }
.footer-social-link.is-youtube:hover { border-color: #FF0000; color: #FF0000; }
.footer-social-link.is-instagram:hover { border-color: #D6249F; color: #D6249F; }
.footer-social-link svg { width: 17px; height: 17px; display: block; }

/* Footer bottom bar */
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-tertiary);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-secondary); }
.footer-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-powered {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-powered img {
  height: 16px;
  width: auto;
}
.footer-powered-link {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-powered-link:hover { color: var(--ink-accent); }
.footer-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-to-top:hover {
  color: #0E1012;
  background: var(--yellow);
  border-color: var(--yellow);
}
.footer-to-top svg { width: 14px; height: 14px; }

/* ═══ TICKER ═══ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 32px;
	display:none;
}
.ticker-inner {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 0 32px;
}
.ticker-item span { color: var(--ink-accent); margin: 0 8px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  :root { --grid-margin: 20px; }
  .nav-inner { justify-content: space-between; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--grid-margin) 20px;
    background: rgba(3,3,3,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-dropdown { width: 100%; align-items: stretch; flex-direction: column; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px 4px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 4px 14px;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 9px 4px; }
  .theme-toggle { align-self: flex-start; margin-top: 8px; }
  .btn-register { width: 100%; text-align: center; margin-top: 10px; padding: 13px 24px; }
  .hero-title { font-size: 48px; letter-spacing: 0.04em; }
  .hero-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
  .hero-bottom-text p { font-size: 16px; }
  .hero-countdown-wrap { align-items: flex-start; }
  .hero-meta { justify-content: flex-start; }
  .countdown-num { font-size: 38px; min-width: 56px; }
  .countdown-block { padding: 0 14px; }
  .countdown-block:not(:last-child)::after { height: 72px; }
  .tracks-grid, .speakers-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .manifesto-content { padding: 80px 0 60px; }
  .manifesto-img { width: 100%; opacity: 0.45; }
  .manifesto-img::after { background: linear-gradient(to bottom, rgba(3,3,3,0.7), #030303 75%); }
  .alumni-grid { grid-template-columns: repeat(3, 1fr); }
  .video-testimonial { width: 280px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-item.large { grid-row: auto; min-height: 300px; }
  .edition-row { grid-template-columns: 1fr; }
  .venue-hero { min-height: 520px; padding: 32px 0; }
  .venue-hero-inner { justify-content: center; }
  .venue-card { max-width: 100%; padding: 24px; }
  .venue-getting-there { position: static; padding: 20px var(--grid-margin); }
  .venue-getting-there-inner { grid-template-columns: 1fr; gap: 12px; }
  .register-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .register-card-inner { flex-direction: column; gap: 40px; }
  .register-card-right { width: 100%; }
  .gallery-track img { height: 180px; }
  .footer-top-row { flex-direction: column; align-items: flex-start; gap: 40px; }
  .footer-nav-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 24px; width: 100%; }
  .footer-nav-grid a { font-size: 17px; }
  .footer-bar-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bar-left { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ── Mobile: flow hero from the top, left-align everything ── */
  .hero { min-height: auto; }
  .hero .container { min-height: auto; padding-top: 104px; padding-bottom: 48px; }
  .hero-center { flex: none; align-items: flex-start; text-align: left; justify-content: flex-start; }
  .hero-headline { font-size: 32px; line-height: 1.12; text-align: left; max-width: none; margin-top: 8px; }
  .hero-headline .hl-break { display: none; }
  .hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 22px; }
  .hero-subtitle { font-size: 20px; max-width: none; }

  /* Countdown fits narrow phones */
  .hero-countdown { padding: 14px 6px; }
  .countdown-block { padding: 0 12px; }
  .countdown-num { font-size: 30px; min-width: 0; padding: 2px 0 8px; }
  .countdown-block:not(:last-child)::after { height: 48px; }
  .countdown-label { font-size: 9px; letter-spacing: 0.1em; }

  /* Left-align section headers that are centered on desktop */
  .stats-header, .audience-header, .gallery-header {
    text-align: left; max-width: none; margin-left: 0; margin-right: 0;
  }
  .audience-sub { text-align: left; }
  /* Sponsors section is centered on mobile */
  .sponsors-heading { text-align: center; }
  .sponsors-subheading { text-align: center; }
  .sponsors .agenda-header { text-align: center !important; }
  .sponsor-tier-head { justify-content: center; text-align: center; }
  .sponsor-tier-label { text-align: center; }
  .sponsor-logos { justify-content: center; gap: 16px; }
  /* Gold & Silver: 2 x 2 grid on mobile */
  .sponsor-tier.gold .sponsor-logos,
  .sponsor-tier.silver .sponsor-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sponsor-tier.gold .sponsor-logo,
  .sponsor-tier.silver .sponsor-logo { flex: none; min-width: 0; min-height: 84px; }
  .sponsor-cta-row { justify-content: center; text-align: center; }
}

/* ═══ LIGHT THEME ═══ */
[data-theme="light"] {
  --black: #FFFFFF;
  --dark: #F1F3F5;
  --surface: #F7F8FA;
  --card: #FFFFFF;
  --border: #E4E7EB;
  --ink-accent: #1565C0; /* yellow text is unreadable on white → use blue */
  --text-primary: #0E1012;
  --text-secondary: #4B5056;
  --text-tertiary: #8A8F96;
}
[data-theme="light"] body { background: #FFFFFF; }
[data-theme="light"] .nav.scrolled {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .tracks::after {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 38%, #FFFFFF 98%);
}
[data-theme="light"] .session-row { background: rgba(0,0,0,0.02); }
[data-theme="light"] .session-row:hover .session-title { color: var(--text-primary); }
[data-theme="light"] .edition-card.red .edition-year,
[data-theme="light"] .edition-card.cyan .edition-year,
[data-theme="light"] .edition-card.red .edition-city,
[data-theme="light"] .edition-card.cyan .edition-city,
[data-theme="light"] .edition-card.red .edition-stats,
[data-theme="light"] .edition-card.cyan .edition-stats { color: #fff; }
/* Keep dark-on-yellow legible when --black flips to white */
[data-theme="light"] .btn-register,
[data-theme="light"] .btn-register-primary,
[data-theme="light"] .btn-hero,
[data-theme="light"] .btn-form-submit,
[data-theme="light"] .section-link { color: #0E1012; }
[data-theme="light"] .btn-register-outline { color: var(--text-secondary); }
[data-theme="light"] .stats-section,
[data-theme="light"] .venue,
[data-theme="light"] .sponsors,
[data-theme="light"] .footer { background: var(--surface); }

/* Nav sits over the (always-dark) hero — keep its text light until scrolled past */
[data-theme="light"] .nav:not(.scrolled) .nav-links a,
[data-theme="light"] .nav:not(.scrolled) .nav-dropdown-trigger { color: rgba(255,255,255,0.82); }
[data-theme="light"] .nav:not(.scrolled) .nav-links a:hover,
[data-theme="light"] .nav:not(.scrolled) .nav-dropdown-trigger:hover { color: #fff; }
/* Register button stays dark-on-yellow in every state/theme */
.nav .nav-links a.btn-register,
.nav .nav-links a.btn-register:hover,
[data-theme="light"] .nav:not(.scrolled) .nav-links a.btn-register,
[data-theme="light"] .nav:not(.scrolled) .nav-links a.btn-register:hover { color: #0E1012; }

/* Partner tier labels: the metallic tints vanish on the light grey background */
[data-theme="light"] .sponsor-tier.platinum .sponsor-tier-label { color: #3F4246; }
[data-theme="light"] .sponsor-tier.gold .sponsor-tier-label { color: #9A7B0F; }
[data-theme="light"] .sponsor-tier.silver .sponsor-tier-label { color: #5E636B; }

/* Light mode: yellow accent text is unreadable on white/light → use brand blue */
[data-theme="light"] .session-row.is-break .session-time .time-start,
[data-theme="light"] .session-row.is-break .session-time .time-end,
[data-theme="light"] .session-row.is-break:hover .session-time .time-start,
[data-theme="light"] .session-row.is-break .session-break-tag,
[data-theme="light"] .session-break-icon,
[data-theme="light"] .tcard-quote::before,
[data-theme="light"] .sponsor-tier.title .sponsor-tier-label,
[data-theme="light"] .sponsor-quote-mark,
[data-theme="light"] .form-modal-eyebrow,
[data-theme="light"] .stat-card[style*="var(--yellow)"] .stat-val {
  color: var(--ink-accent);
}
[data-theme="light"] .session-row.is-break .session-break-tag { border-color: var(--ink-accent); }
[data-theme="light"] .session-row.is-break { background: rgba(21,101,192,0.05); }
[data-theme="light"] .session-break-icon { border-color: rgba(21,101,192,0.30); background: rgba(21,101,192,0.06); }
/* Modal title is white by default → unreadable on the white card in light mode */
[data-theme="light"] .form-modal h3 { color: var(--text-primary); }

/* ═══ EVENT STATEMENT (scroll word-highlight) ═══ */
.event-statement {
  background: var(--black);
  padding: clamp(90px, 13vh, 160px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.event-statement .container { max-width: 1100px; }
.statement-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}
.statement-heading span { color: var(--ink-accent); }
.statement-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .statement-heading { font-size: clamp(28px, 7vw, 40px); }
  .statement-body { font-size: 15px; line-height: 1.6; }
}

/* ═══ 3D CURSOR COMPANION ═══ */
#cursor3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
#cursor3d.is-ready { opacity: 1; }
#cursor3d canvas { display: block; width: 100%; height: 100%; }
/* When the 3D companion is the cursor, hide the native pointer */
body.cursor3d-active,
body.cursor3d-active * { cursor: none !important; }
@media (hover: none), (max-width: 768px) {
  #cursor3d { display: none; }
}
{INJ}
