* { font-family: 'Inter', system-ui, sans-serif; }

/* Prevent any child (ticker, hero gradients, etc.) from causing horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body { position: relative; }

h1, h2, h3, .display-1, .display-2, .display-3, .display-4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.fw-black { font-weight: 900; }
.letter-spacing { letter-spacing: 2px; }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.min-vh-75 { min-height: 75vh; }

/* Top bar */
.top-bar { background: #0a0e27; }
.top-bar a { text-decoration: none; }

/* Navbar */
.site-nav {
  background: rgba(8, 10, 30, 0.92);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .navbar-brand { color: #fff; font-size: 1.4rem; letter-spacing: 0.5px; }
.logo-mark { color: #ffc107; margin-right: 4px; }
.site-nav .nav-link {
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 1rem !important;
}
.site-nav .nav-link:hover { color: #ffc107 !important; }

/* === Mega-menu dropdown support === */
.site-nav .dropdown-menu {
  background: #05071a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.site-nav .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: normal;
}
.site-nav .dropdown-menu .dropdown-item:hover,
.site-nav .dropdown-menu .dropdown-item:focus {
  background: rgba(255,193,7,0.1);
  color: #ffc107;
}
.site-nav .dropdown-menu .dropdown-item.active {
  background: #ffc107;
  color: #000;
}
.site-nav .menu-icon .nav-link svg { width: 16px; height: 14px; }
.site-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
}

/* Nested submenu (Awards > Winners) */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 2px;
  display: none;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu { display: block; }
.dropdown-submenu > a.dropdown-toggle::after {
  float: right;
  margin-top: 0.5rem;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid currentColor;
}
/* Desktop: hover opens dropdowns */
@media (min-width: 1200px) {
  .site-nav .nav-item.dropdown:hover > .dropdown-menu { display: block; }
}
/* Mobile: nested submenus expand inline */
@media (max-width: 1199.98px) {
  .site-nav .navbar-collapse { max-height: 80vh; overflow-y: auto; }
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: #05071a;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(13,110,253,0.55) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,193,7,0.35) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(102,16,242,0.4) 0%, transparent 55%),
    linear-gradient(180deg, #05071a 0%, #0a0e27 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 80%);
}
.hero-headline { font-size: clamp(2.8rem, 7.5vw, 6.5rem); }
.text-gradient {
  background: linear-gradient(90deg, #ffc107 0%, #fd7e14 50%, #dc3545 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff3366;
  box-shadow: 0 0 0 0 rgba(255,51,102,0.7);
  animation: pulse 1.8s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,51,102,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(255,51,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,51,102,0); }
}

/* Countdown */
.countdown {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.cd-box {
  min-width: 72px;
  padding: 10px 14px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
}
.cd-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
}
.cd-box small { opacity: 0.7; font-size: 0.7rem; letter-spacing: 1.5px; }

.hero-stats {
  position: relative;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

/* Ticker */
.ticker {
  overflow: hidden;
  padding: 10px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Verticals */
.verticals-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(13,110,253,0.15), transparent 50%),
    #0a0e27;
}
.vertical-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: 14px;
  height: 100%;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.vertical-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,193,7,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.vertical-card:hover {
  transform: translateY(-6px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.05);
}
.vertical-card:hover::before { opacity: 1; }
.vc-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: #000;
  font-size: 1.5rem;
  border-radius: 12px;
  margin-bottom: 16px;
}
.vertical-card h4 { font-weight: 800; margin-bottom: 10px; }
.vertical-card p { opacity: 0.75; font-size: 0.95rem; margin-bottom: 14px; }
.vc-arrow { color: #ffc107; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; }

/* Startup section */
.startup-section {
  background:
    radial-gradient(circle at 20% 50%, rgba(102,16,242,0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(253,126,20,0.25), transparent 50%),
    #05071a;
}
.startup-tile {
  aspect-ratio: 1/1;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  transition: transform 0.25s;
  cursor: pointer;
}
.startup-tile:hover { transform: scale(1.04); }
.startup-tile.t1 { background: linear-gradient(135deg,#0d6efd,#6610f2); }
.startup-tile.t2 { background: linear-gradient(135deg,#ffc107,#fd7e14); color: #000; }
.startup-tile.t3 { background: linear-gradient(135deg,#11998e,#38ef7d); }
.startup-tile.t4 { background: linear-gradient(135deg,#dc3545,#d63384); }
.startup-tile.t5 { background: linear-gradient(135deg,#6f42c1,#0dcaf0); }
.startup-tile.t6 { background: linear-gradient(135deg,#212529,#495057); }

/* Agenda */
.nav-pills .nav-link {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 700;
}
.nav-pills .nav-link.active {
  background: #ffc107;
  color: #000;
  border-color: #ffc107;
}
.agenda-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.agenda-item .time {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffc107;
  min-width: 80px;
  font-family: 'Space Grotesk', sans-serif;
}
.agenda-item h5 { font-weight: 700; margin-bottom: 4px; }

/* Exhibitors */
.exhibitor-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}
.exhibitor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  border-color: #0d6efd;
}
.exhibitor-logo {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.15;
}

/* Floor plan */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hall-box {
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.15s;
  cursor: pointer;
}
.hall-box:hover { transform: scale(1.04); }
.hall-box small { font-weight: 500; opacity: 0.9; font-size: 0.75rem; }
.hall-box.entrance {
  background: repeating-linear-gradient(45deg,#444,#444 10px,#333 10px,#333 20px);
  border: 2px dashed #fff;
  color: #fff;
}
@media (max-width: 768px) {
  .floorplan-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA cards */
.cta-card { transition: transform 0.25s; }
.cta-card:hover { transform: translateY(-4px); }
.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}
.bg-dark-alt {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,193,7,0.3);
}

/* News */
.news-card { transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; }
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.news-img { aspect-ratio: 16/9; width: 100%; }

/* Partners */
.partner-logo {
  font-weight: 900;
  font-size: 1.05rem;
  color: #999;
  letter-spacing: 2px;
  padding: 1.4rem 0;
  transition: color 0.2s, transform 0.2s;
}
.partner-logo:hover { color: #0d6efd; transform: scale(1.05); }

/* Social */
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.2s;
}
.social-icon:hover {
  background: #ffc107;
  color: #000 !important;
  border-color: #ffc107;
}

/* ============================================================
   WHY ATTEND — content additions
   ============================================================ */

/* Live counter cards */
.counter-card {
  border-top: 4px solid #ffc107;
  transition: transform 0.25s, box-shadow 0.25s;
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.counter-card .display-2 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* Aftermovie section */
.aftermovie-section {
  position: relative;
  overflow: hidden;
}
.aftermovie-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,7,26,0.95) 0%, rgba(13,110,253,0.7) 100%),
    url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: 0;
}
.aftermovie-section > .container { z-index: 1; }

/* Day in the life timeline */
.day-life-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
}
.day-life-item {
  display: flex;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.day-life-item:last-child { border-bottom: none; }
.day-life-time {
  flex-shrink: 0;
  width: 110px;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: background 0.25s;
}
.day-life-item:hover .day-life-time { background: #fff8e6; }
.day-life-time i {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.day-life-time strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}
.day-life-content {
  flex: 1;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .day-life-item { gap: 16px; }
  .day-life-time { width: 80px; padding: 8px; }
  .day-life-time strong { font-size: 0.9rem; }
}

/* Comparison table */
.compare-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.compare-table tbody tr { border-bottom: 1px solid #f0f0f0; transition: background 0.2s; }
.compare-table tbody tr:hover { background: #fff8e6; }
.compare-table .text-success.fw-black { font-size: 1.5rem; }

/* First-time tip cards */
.first-time-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,193,7,0.18), transparent 50%),
    linear-gradient(135deg, #0a0e27 0%, #05071a 100%);
}
.tip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.tip-card:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.06);
}
.tip-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
}

/* Press quote cards */
.press-quote-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 3px solid #0d6efd;
}
.press-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* ============================================================
   TESTIMONIALS — content additions
   ============================================================ */

.outcome-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-top-color: #0d6efd;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff !important;
}
.outcome-card .display-3 { font-size: clamp(2rem, 4vw, 3rem); }

.case-study-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.case-study-card:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
}
.case-video { position: relative; }

.social-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  background: #fff !important;
}
.social-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   WHO ATTENDS — content additions
   ============================================================ */

/* Company size cards */
.size-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}
.size-card:hover {
  transform: translateY(-4px);
  border-bottom-color: #0d6efd;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff !important;
}
.size-card .display-2 { font-size: clamp(2rem, 4vw, 3rem); }

/* Authority cards */
.authority-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 4px solid #0d6efd;
}
.authority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff !important;
}

/* Peer avatar grid */
.peer-card {
  padding: 16px;
  border-radius: 10px;
  transition: background 0.25s;
}
.peer-card:hover {
  background: rgba(255,255,255,0.05);
}
.peer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Growth bar chart */
.growth-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  height: 360px;
  padding: 0 20px;
}
.growth-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.growth-bar-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #0d6efd;
  margin-bottom: 8px;
}
.growth-bar {
  width: 100%;
  background: linear-gradient(180deg, #0d6efd, #6610f2);
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s;
  min-height: 40px;
}
.growth-bar-col:hover .growth-bar { transform: scaleY(1.05); transform-origin: bottom; }
.growth-bar-year {
  margin-top: 12px;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.growth-bar-year small { display: block; color: #999; font-weight: 400; font-size: 0.7rem; }

/* Download report card */
.download-report-card {
  border-top: 4px solid #ffc107;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ============================================================
   WHAT'S ON — content additions
   ============================================================ */

/* Featured session cards */
.featured-session-card {
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.featured-session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff !important;
}

/* Cross-cutting theme cards */
.theme-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Session format cards */
.format-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}
.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  border-bottom-color: #ffc107;
  background: #fff !important;
}
.format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Innovation Zone mini cards */
.iz-mini-card {
  transition: transform 0.25s;
  cursor: pointer;
}
.iz-mini-card:hover { transform: translateY(-4px); }
.iz-logo {
  width: 70px; height: 70px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Live coverage cards */
.coverage-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.coverage-card:hover {
  transform: translateY(-4px);
  border-top-color: #ffc107;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  background: #fff !important;
}

/* Networking tiles */
.net-tile {
  padding: 24px;
  border-radius: 14px;
  color: #fff;
  text-align: left;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s, box-shadow 0.25s;
}
.net-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.net-tile i {
  font-size: 1.8rem;
  opacity: 0.9;
}
.net-tile strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
  margin-top: 8px;
}
.net-tile small { opacity: 0.85; font-size: 0.8rem; }

/* ============================================================
   WHAT'S ON — visual redesign
   ============================================================ */
.whatson-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.whatson-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  z-index: 0;
}
.whatson-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,7,26,0.92) 0%, rgba(5,7,26,0.55) 70%, rgba(102,16,242,0.4) 100%);
  z-index: 1;
}
.whatson-hero > .container { z-index: 2; }
.whatson-hero h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.whatson-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,193,7,0.4);
  backdrop-filter: blur(12px);
}

/* Shows grid — asymmetric */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.show-tile {
  position: relative;
  padding: 28px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s, box-shadow 0.25s;
}
.show-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  color: #fff;
}
.show-tile h3, .show-tile h4 { color: inherit; margin-bottom: 6px; }
.show-tile p { color: inherit; opacity: 0.9; margin-bottom: 0; }
.show-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3.5rem;
  opacity: 0.35;
  color: #fff;
}
.show-arrow {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}
.show-tile-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.show-tile-wide {
  grid-column: span 2;
}
@media (max-width: 992px) {
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .show-tile-lg, .show-tile-wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 576px) {
  .shows-grid { grid-template-columns: 1fr; }
  .show-tile-lg, .show-tile-wide { grid-column: 1; }
}

/* Stages bar — flexible color blocks */
.stages-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-radius: 14px;
  overflow: hidden;
}
.stage-block {
  flex: 1 1 200px;
  min-height: 130px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s;
}
.stage-block:hover { transform: scale(1.02); }
.stage-block strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.stage-block small { opacity: 0.8; }

/* Battlefield feature */
.battlefield-feature {
  position: relative;
  overflow: hidden;
}
.battlefield-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(102,16,242,0.85) 0%, rgba(5,7,26,0.95) 100%),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: 0;
}
.battlefield-feature > .container { z-index: 1; }
.battlefield-feature h2 { font-size: clamp(2.8rem, 6vw, 5rem); }
.battlefield-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.battlefield-stat .big-stat { font-size: 1.8rem; }
.battlefield-stat small { opacity: 0.75; font-size: 0.75rem; }
.battlefield-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bf-tile {
  aspect-ratio: 1/1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: #fff;
  transition: transform 0.2s;
}
.bf-tile:hover { transform: scale(1.05); }

/* Experience photo cards */
.experience-photo-card {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.experience-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.experience-photo {
  height: 320px;
  display: flex;
  align-items: flex-end;
}
.experience-overlay { padding: 24px; width: 100%; }

/* Day timeline */
.day-timeline-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(102,16,242,0.2), transparent 50%),
    linear-gradient(135deg, #05071a 0%, #0a0e27 100%);
}
.day-timeline {
  position: relative;
  padding-left: 0;
}
.day-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,193,7,0.4), transparent);
}
.day-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}
.day-marker {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.day-marker strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.day-marker small { opacity: 0.85; font-size: 0.8rem; }
.day-content {
  flex: 1;
  padding-top: 20px;
}
.day-content h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
@media (max-width: 768px) {
  .day-timeline::before { left: 40px; }
  .day-marker { width: 80px; height: 80px; }
  .day-marker strong { font-size: 1.1rem; }
  .day-marker small { font-size: 0.7rem; }
  .day-timeline-item { gap: 16px; }
}

/* ============================================================
   WHY ATTEND — visual redesign
   ============================================================ */

/* Hero with image bg */
.why-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.why-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  z-index: 0;
}
.why-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,26,0.95) 0%, rgba(5,7,26,0.6) 60%, rgba(5,7,26,0.3) 100%),
    linear-gradient(180deg, rgba(5,7,26,0.3) 0%, rgba(5,7,26,0.7) 100%);
  z-index: 1;
}
.why-hero > .container { z-index: 2; }
.why-hero h1 { font-size: clamp(2.5rem, 6.5vw, 5.5rem); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  z-index: 3;
  text-decoration: none;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: #ffc107;
  border-radius: 2px;
  margin: 8px auto;
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Stats band — dark with vertical dividers */
.stats-band-dark {
  background: linear-gradient(135deg, #05071a 0%, #0a0e27 100%);
}
.big-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-divider { position: relative; }
.stat-divider::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .stat-divider::after { display: none; }
}

/* Image collage */
.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.img-tile {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.img-tile:hover { transform: scale(1.03); }
.img-tile-1 { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 412px; }
.img-tile-2 { grid-column: 2; grid-row: 1; }
.img-tile-3 { grid-column: 2; grid-row: 2; }
.img-tile-4 { grid-column: 2; grid-row: 1; align-self: end; transform: translateY(50%); }
@media (max-width: 768px) {
  .image-collage { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; }
  .img-tile { min-height: 200px !important; grid-column: 1 !important; grid-row: auto !important; transform: none !important; }
}

/* Reason rows — alternating */
.reason-row { padding: 30px 0; }
.reason-visual {
  position: relative;
  border-radius: 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.reason-big-num {
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.reason-big-icon {
  font-size: 9rem;
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

/* Included section */
.included-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,193,7,0.15), transparent 50%),
    linear-gradient(135deg, #05071a 0%, #0a0e27 100%);
}
.included-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.included-tile:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.08);
}

/* Persona image cards */
.persona-image-card {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.persona-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.persona-image {
  height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.persona-content { padding: 24px; }

/* Testimonial feature */
.testimonial-feature {
  position: relative;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,7,26,0.92), rgba(13,110,253,0.85)),
    url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: 0;
}
.testimonial-feature > .container { z-index: 1; }
.testimonial-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,193,7,0.4);
  backdrop-filter: blur(8px);
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

/* Final CTA */
.final-cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,193,7,0.4), rgba(253,126,20,0.4)),
    linear-gradient(135deg, #05071a, #0a0e27);
  z-index: 0;
}
.final-cta-section > .container { z-index: 1; }
.final-cta-section h2 { font-size: clamp(3rem, 7vw, 6rem); }

/* ===== Why-attend page cards ===== */
.reason-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 3px solid transparent;
}
.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
  border-left-color: #ffc107;
}
.reason-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
}

/* Checklist (What's included) */
.included-list li {
  padding: 10px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid #eee;
}
.included-list li:last-child { border-bottom: none; }
.included-list .bi {
  margin-right: 10px;
  font-size: 1.3rem;
  vertical-align: -3px;
}

/* ===== What's-on page: stage cards ===== */
.stage-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
  border-top-color: #ffc107;
}
.stage-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
}

/* Experiences & Zones */
.experience-card {
  transition: transform 0.25s, background 0.25s;
  border-left: 3px solid transparent;
}
.experience-card:hover {
  transform: translateY(-4px);
  border-left-color: #ffc107;
  background: #fff !important;
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

/* Day cards */
.day-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.day-card:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.06);
}
.day-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffc107;
  line-height: 1;
}

/* ===== Who-attends page ===== */
.seniority-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}
.seniority-card:hover {
  transform: translateY(-5px);
  border-bottom-color: #0d6efd;
  box-shadow: 0 14px 32px rgba(0,0,0,0.1) !important;
}

/* Job-title tag pills */
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.job-tags span {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
  cursor: default;
}
.job-tags span:hover {
  background: rgba(255,193,7,0.12);
  border-color: #ffc107;
  transform: translateY(-1px);
}

/* Industry cards */
.industry-card {
  transition: transform 0.25s, background 0.25s;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-3px);
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Geographic bar chart rows */
.geo-bar {
  height: 14px;
  background: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
}
.geo-bar > div {
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease-out;
}
.geo-row:hover .geo-bar > div {
  filter: brightness(1.1);
}

/* Personas */
.persona-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.persona-card:hover {
  transform: translateY(-4px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.05);
}

/* Winners table rows */
.winner-row {
  transition: background 0.2s;
}
.winner-row:hover {
  background: #fff8e6;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

/* Stage card detailed */
.stage-card-detailed {
  transition: transform 0.25s, box-shadow 0.25s;
}
.stage-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1) !important;
}

/* Side event card */
.side-event-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.side-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Hotel card */
.hotel-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}
.hotel-img {
  height: 140px;
  background-size: cover;
}

/* Download card */
.download-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

/* Time card */
.time-card {
  transition: transform 0.25s, background 0.25s;
  border-top: 3px solid transparent;
}
.time-card:hover {
  transform: translateY(-4px);
  border-top-color: #ffc107;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Gallery tile */
.gallery-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

/* Testimonial small avatar */
.testimonial-avatar-sm {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-quote-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1) !important;
}

/* Package cards */
.package-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* "Who it's for" tiles */
.who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.who-card:hover {
  transform: translateY(-5px);
  border-color: #ffc107;
  background: rgba(255,193,7,0.06);
}

/* Sub-page header */
.page-header {
  background:
    radial-gradient(circle at 20% 30%, rgba(13,110,253,0.5), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,193,7,0.25), transparent 50%),
    linear-gradient(180deg, #05071a 0%, #0a0e27 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Stats box (about page) */
.stats-box {
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(13,110,253,0.1));
  border: 1px solid rgba(255,193,7,0.3);
}

/* Venue image */
.venue-img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(13,110,253,0.7), rgba(11,37,69,0.85)),
    repeating-linear-gradient(45deg, #0a0e27, #0a0e27 10px, #111532 10px, #111532 20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Sector card (about page) */
.sector-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
  border-top-color: #0d6efd;
}

/* ===== Hero image background ===== */
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image .hero-bg,
.hero-image .hero-grid { display: none; }
.hero-image-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=2400&q=90');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-image + .hero-video-overlay,
.hero-image .hero-video-overlay { z-index: 1; }
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,26,0.85) 0%, rgba(5,7,26,0.55) 60%, rgba(5,7,26,0.3) 100%),
    linear-gradient(180deg, rgba(5,7,26,0.2) 0%, rgba(5,7,26,0.6) 100%);
  z-index: 1;
}
.hero-video > .container,
.hero-image > .container { position: relative; z-index: 2; }
.hero-video .hero-stats,
.hero-image .hero-stats { position: relative; z-index: 2; }
.hero-image .hero-headline,
.hero-image .lead { text-shadow: 0 2px 20px rgba(0,0,0,0.6); }

/* Highlight cards (home) */
.highlight-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
  border-top-color: #0d6efd;
}
.highlight-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 1.6rem;
}

/* Showreel */
.showreel-wrapper {
  border: 1px solid rgba(255,193,7,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.showreel-wrapper video { width: 100%; height: 100%; object-fit: cover; }

/* Speakers */
.speaker-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.speaker-img { aspect-ratio: 1/1; width: 100%; }

/* By the numbers section */
.numbers-section {
  background:
    radial-gradient(circle at 30% 50%, rgba(13,110,253,0.25), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(102,16,242,0.25), transparent 50%),
    #05071a;
}
.number-card .display-1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 45px; height: 45px;
  background-size: 60%;
  padding: 14px;
}

/* News cards */
.news-card { transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; }
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.news-img { aspect-ratio: 16/9; width: 100%; }

/* Sponsor tiers */
.tier-label {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
}
.partner-logo-xl {
  font-weight: 900;
  font-size: 1.5rem;
  color: #444;
  letter-spacing: 2px;
  padding: 2rem 0;
  transition: color 0.2s, transform 0.2s;
}
.partner-logo-xl:hover { color: #0d6efd; transform: scale(1.05); }
.partner-logo-sm {
  font-weight: 800;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 1.5px;
  padding: 1rem 0;
}

/* FAQ accordion */
.accordion-flush .accordion-item {
  border-bottom: 1px solid #dee2e6;
  background: transparent;
}
.accordion-button {
  font-weight: 700;
  font-size: 1.1rem;
  background: transparent;
  padding: 1.3rem 0;
}
.accordion-button:not(.collapsed) {
  color: #0d6efd;
  background: transparent;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { padding: 0 0 1.3rem 0; }

/* Sub-page header */
.page-header {
  background:
    radial-gradient(circle at 20% 30%, rgba(13,110,253,0.5), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,193,7,0.25), transparent 50%),
    linear-gradient(180deg, #05071a 0%, #0a0e27 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Stats box (about page) */
.stats-box {
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(13,110,253,0.1));
  border: 1px solid rgba(255,193,7,0.3);
}

/* Venue image */
.venue-img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(13,110,253,0.7), rgba(11,37,69,0.85)),
    repeating-linear-gradient(45deg, #0a0e27, #0a0e27 10px, #111532 10px, #111532 20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Sector card */
.sector-card {
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
  border-top-color: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 0 40px; }
  .page-header { padding: 60px 0; }
  .hero-stats { position: relative; }
  .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
  .min-vh-75 { min-height: auto; }
  .cd-box { min-width: 58px; padding: 8px 10px; }
  .cd-num { font-size: 1.4rem; }
}
