:root {
  --expo-blue: #54bceb;
  --expo-purple: #7b52ab;
  --expo-pink: #d93b7a;
  --expo-green: #9bc063;
  --gold-100: #fcf6ba;
  --gold-200: #fbf5b7;
  --gold-300: #d4af37;
  --gold-400: #c5a028;
  --gold-500: #b38728;
  --gold-600: #aa771c;
  --gold-700: #8a6e2f;
  --gold-900: #29210e;
  --dark-900: #130b1c;
  --dark-800: #1c1129;
  --dark-700: #2a1a3d;
  --body: #f5f5f5;
  --muted: #a9a9b3;
  --line: rgba(212, 175, 55, 0.25);
  --font-serif: "Playfair Display", serif;
  --font-cinzel: "Cinzel", serif;
  --font-sans: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0510;
  color: var(--body);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

::selection {
  background: var(--gold-300);
  color: #09040d;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.text-gold-gradient {
  background: linear-gradient(to bottom, var(--gold-100), var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-button,
.nav-cta,
.mobile-menu-cta {
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
  color: #130b1c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gold-button:hover,
.nav-cta:hover,
.mobile-menu-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.55);
  filter: saturate(1.08);
}

.gold-button:active {
  transform: scale(0.96);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
  width: min(100%, 1280px);
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img {
  width: auto;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--expo-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #1f2937;
  cursor: pointer;
}

.menu-toggle .close-icon {
  display: none;
}

.site-nav.menu-open .menu-toggle .menu-icon {
  display: none;
}

.site-nav.menu-open .menu-toggle .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 24px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.mobile-menu a {
  color: #1f2937;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 10px 0;
}

.mobile-menu-cta {
  display: block;
  margin-top: 12px;
  padding: 16px 20px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  padding: 128px 24px 72px;
}

.hero-bg,
.hero-gradient,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(to bottom, #000, var(--dark-900), #000);
}

.hero-grid,
.section-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
}

.hero-orb-purple {
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(123, 82, 171, 0.2);
  animation: orbPurple 15s ease-in-out infinite;
}

.hero-orb-green {
  top: 40%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: rgba(155, 192, 99, 0.15);
  animation: orbGreen 20s ease-in-out 2s infinite;
}

.hero-orb-pink {
  bottom: -20%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: rgba(217, 59, 122, 0.1);
  animation: orbPink 18s ease-in-out 5s infinite;
}

.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 999px;
  background: var(--gold-200);
  filter: blur(1px);
  opacity: 0;
  animation: floatParticle var(--duration) linear var(--delay) infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.hero-title-block {
  margin-bottom: 32px;
}

.hero-logo {
  width: auto;
  height: clamp(80px, 10vw, 112px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.12));
}

.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.75));
}

.hero-subtitle {
  margin: 20px 0 0;
  color: var(--gold-200);
  font-size: clamp(0.88rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  color: #d1d5db;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 300;
}

.hero-meta-item svg {
  color: var(--gold-300);
  width: 24px;
  height: 24px;
}

.hero-divider {
  width: 1px;
  height: 24px;
  background: rgba(138, 110, 47, 0.8);
}

.hero-button {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  font-size: 1.05rem;
}

.intro-pop {
  opacity: 0;
  animation: introPop 1s ease forwards;
}

.intro-slide {
  opacity: 0;
  animation: introSlide 0.8s ease 0.2s forwards;
}

.intro-rise {
  opacity: 0;
  animation: introRise 0.8s ease 0.5s forwards;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--dark-900);
  scroll-margin-top: 80px;
}

.section-black {
  background: #000;
}

.section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--gold-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-300) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.reveal,
.reveal-item,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal,
.reveal-item {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.9);
}

.is-visible {
  opacity: 1;
  transform: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-image-glow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75%;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(60px);
  background: linear-gradient(to top, rgba(123, 82, 171, 0.2), rgba(212, 175, 55, 0.05), transparent);
  transition: opacity 1000ms ease;
}

.about-green-glow {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: var(--expo-green);
  opacity: 0.1;
  filter: blur(60px);
}

.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%) drop-shadow(0 0 15px rgba(212, 175, 55, 0.1));
  transition: transform 700ms ease, filter 700ms ease;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.02);
  filter: grayscale(0) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
}

.about-image-wrap:hover .about-image-glow {
  opacity: 0.8;
}

/* Custom styling for Special Guests section image */
#special-guests .about-image-wrap {
  overflow: visible;
  align-self: end;
  margin-bottom: -80px; /* Pulls the image to the bottom, bypassing the 80px section padding */
}

#special-guests .about-image {
  width: 140%;
  max-width: none;
  display: block;
  transform: translateY(12px);
  margin-bottom: 0;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.2));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

#special-guests .about-image-wrap:hover .about-image {
  transform: translateY(12px) scale(1.03);
  filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.4));
}

@media (max-width: 860px) {
  #special-guests {
    padding-bottom: 40px;
  }
  #special-guests .about-image-wrap {
    align-self: center;
    margin-bottom: 0; /* Reset negative margin on mobile */
  }
  #special-guests .about-image {
    width: 100%;
    max-width: 100%;
    transform: translateY(10px);
    margin-bottom: -10px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  }
  #special-guests .about-image-wrap:hover .about-image {
    transform: translateY(10px) scale(1.02);
  }
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.mentors-heading h2,
.investment-card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.14;
}

.about-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.about-copy p {
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-copy strong,
.mentors-heading strong {
  color: var(--gold-200);
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list div,
.investment-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold-500);
}

.check-list span {
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.mentors-heading h2 {
  margin-bottom: 16px;
  font-family: var(--font-cinzel);
  font-size: clamp(1.8rem, 5vw, 3.7rem);
}

.heading-line {
  width: 96px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--gold-500);
}

.section-heading p,
.mentors-heading p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-bg-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.feature-bg-glow-left {
  top: 33%;
  left: -8rem;
  background: rgba(123, 82, 171, 0.1);
}

.feature-bg-glow-right {
  right: -8rem;
  bottom: 33%;
  background: rgba(155, 192, 99, 0.1);
}

.feature-grid,
.speaker-grid,
.vip-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 384px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(191, 149, 63, 0.3);
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  transition: border-color 500ms ease;
}

.feature-card:hover {
  border-color: var(--gold-300);
}

.feature-card img,
.feature-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card img {
  object-fit: cover;
  opacity: 0.4;
  transition: transform 700ms ease;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.feature-card-shade {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.7), transparent);
}

.feature-card-content {
  position: relative;
  z-index: 1;
}

.icon-badge {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--gold-200);
  background: rgba(179, 135, 40, 0.2);
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.feature-card p {
  margin: 0;
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.65;
}

.mentors-heading {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(179, 135, 40, 0.3);
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(41, 33, 14, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.speaker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 80px;
}

.speaker-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(138, 110, 47, 0.5);
  border-radius: 24px;
  background: rgba(28, 17, 41, 0.6);
  backdrop-filter: blur(8px);
  transition: border-color 500ms ease;
}

.speaker-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
}

.speaker-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to top, rgba(179, 135, 40, 0.1), transparent);
  transition: opacity 500ms ease;
}

.speaker-card:hover::after {
  opacity: 1;
}

.speaker-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.glow-purple {
  background: rgba(123, 82, 171, 0.2);
}

.glow-green {
  background: rgba(155, 192, 99, 0.2);
}

.speaker-image-panel {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(19, 11, 28, 0.5), transparent);
}

.speaker-gold-glow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75%;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(40px);
  background: linear-gradient(to top, rgba(170, 119, 28, 0.2), rgba(212, 175, 55, 0.05), transparent);
  transition: opacity 1000ms ease;
}

.speaker-card:hover .speaker-gold-glow {
  opacity: 0.8;
}

.hologram {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hologram::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: var(--gold-300);
  mix-blend-mode: color-dodge;
  -webkit-mask-image: linear-gradient(to bottom, transparent 50%, #000 50%);
  mask-image: linear-gradient(to bottom, transparent 50%, #000 50%);
  -webkit-mask-size: 100% 4px;
  mask-size: 100% 4px;
}

.hologram.is-visible::after {
  animation: scanFlash 0.6s ease-in-out both;
}

.hologram-image {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  opacity: 0;
  filter: brightness(2) contrast(2) hue-rotate(90deg) blur(10px) drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
  transform: scale(1.1);
  transition: transform 700ms ease, filter 700ms ease;
}

.hologram.is-visible .hologram-image {
  animation: hologramOn 0.6s ease-in-out forwards;
}

.speaker-card:hover .hologram-image {
  transform: scale(1.05);
  filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.3));
}

.speaker-copy {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 24px;
  text-align: center;
}

.speaker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 7px 12px;
  border: 1px solid rgba(179, 135, 40, 0.2);
  border-radius: 999px;
  background: rgba(41, 33, 14, 0.3);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.speaker-badge svg {
  width: 12px;
  height: 12px;
  color: var(--gold-300);
}

.speaker-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-cinzel);
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.speaker-copy p {
  margin: 5px 0;
  color: #d1d5db;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.speaker-copy strong {
  color: #fff;
  font-weight: 700;
}

.vip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vip-card {
  position: relative;
  height: 384px;
  overflow: hidden;
  border: 1px solid rgba(138, 110, 47, 0.3);
  border-radius: 16px;
  background: var(--dark-800);
  text-align: center;
  transition: border-color 500ms ease;
}

.vip-card:hover {
  border-color: var(--gold-500);
}

.vip-card-bg,
.vip-grid-pattern,
.shine {
  position: absolute;
  inset: 0;
}

.vip-card-bg {
  background: linear-gradient(135deg, var(--dark-900), var(--dark-800), #000);
}

.shine {
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  transform: skewX(-12deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.65));
  opacity: 0;
}

.vip-card:hover .shine {
  animation: shine 1s ease;
}

.vip-grid-pattern {
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-300) 1px, transparent 1px);
  background-size: 30px 30px;
}

.vip-confirmed {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(179, 135, 40, 0.3);
  border-radius: 999px;
  background: rgba(41, 33, 14, 0.4);
  color: var(--gold-300);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vip-confirmed span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  animation: pulse 1.4s ease-in-out infinite;
}

.vip-card h3 {
  position: relative;
  z-index: 1;
  margin: 32px 56px 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  transition: color 500ms ease;
}

.vip-card:hover h3 {
  color: var(--gold-200);
}

.vip-line {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold-500);
  transition: width 700ms ease;
}

.vip-card:hover .vip-line {
  width: 96px;
}

.vip-person {
  position: relative;
  z-index: 1;
  height: calc(100% - 108px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 16px 18px;
}

.vip-person img {
  width: auto;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  transition: transform 500ms ease;
}

.vip-person img:hover,
.vip-card:hover .vip-person img {
  transform: scale(1.05);
}

.vip-person p {
  margin: 12px 0 0;
  color: var(--gold-200);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
}

.networking-callout {
  position: relative;
  margin-top: 64px;
}

.callout-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
  opacity: 0.05;
  filter: blur(100px);
}

.callout-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 48px;
  border: 1px solid rgba(179, 135, 40, 0.2);
  border-radius: 16px;
  background: rgba(28, 17, 41, 0.5);
  backdrop-filter: blur(12px);
}

.callout-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.callout-content h3 svg {
  color: var(--gold-300);
}

.callout-content p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.avatar-stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.avatar-stack {
  display: flex;
  margin-left: 20px;
}

.avatar-stack span,
.avatar-stack strong {
  width: 56px;
  height: 56px;
  margin-left: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-500);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.avatar-stack span {
  background: var(--dark-700);
  color: var(--gold-700);
}

.avatar-stack strong {
  z-index: 1;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
  color: var(--dark-900);
  font-size: 0.85rem;
}

.avatar-stack-wrap > p {
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-section {
  background: linear-gradient(to bottom, var(--dark-900), #000);
}

.coverage-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
}

.coverage-bg div {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(100px);
}

.coverage-bg div:first-child {
  top: 25%;
  left: 25%;
  background: rgba(155, 192, 99, 0.1);
}

.coverage-bg div:last-child {
  right: 25%;
  bottom: 25%;
  background: rgba(123, 82, 171, 0.15);
}

.coverage-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 48px;
}

.coverage-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.float-media {
  position: relative;
  width: min(100%, 256px);
  animation: floatUp 4s ease-in-out infinite;
}

.float-media-delayed {
  animation-duration: 5s;
  animation-delay: 1s;
}

.logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  opacity: 0.4;
  filter: blur(48px);
  transition: opacity 500ms ease;
}

.logo-glow-blue {
  background: rgba(59, 130, 246, 0.2);
}

.logo-glow-gold {
  background: rgba(212, 175, 55, 0.2);
}

.float-media:hover .logo-glow {
  opacity: 0.6;
}

.float-media img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.65));
  transition: transform 500ms ease;
}

.float-media:hover img {
  transform: scale(1.1);
}

.media-line {
  width: 48px;
  height: 2px;
  margin-top: 24px;
  background: rgba(212, 175, 55, 0.5);
}

.media-line-blue {
  background: rgba(30, 58, 138, 0.5);
}

.reporter-card {
  position: relative;
  height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.reporter-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(179, 135, 40, 0.05);
  filter: blur(80px);
}

.reporter-card img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.reporter-name {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  padding: 16px 32px;
  border: 1px solid rgba(179, 135, 40, 0.4);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease 500ms, transform 500ms ease 500ms;
}

.reporter-card.is-visible .reporter-name,
.is-visible .reporter-name {
  opacity: 1;
  transform: translateY(0);
}

.reporter-name h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.reporter-name p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reporter-name svg {
  width: 12px;
  height: 12px;
}

.investment-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.investment-glow {
  position: absolute;
  inset: -40px;
  border-radius: 999px;
  opacity: 0.2;
  filter: blur(60px);
  background: linear-gradient(to right, var(--expo-purple), var(--gold-600), var(--expo-green));
}

.investment-card {
  position: relative;
  padding: 48px;
  border: 2px solid var(--gold-500);
  border-radius: 24px;
  background: var(--dark-800);
  text-align: center;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

.investment-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  padding: 8px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
  color: var(--dark-900);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.investment-ribbon svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

.investment-card h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.investment-subtitle {
  margin: 8px 0 32px;
  color: var(--muted);
}

.old-price {
  margin: 0 0 24px;
  color: rgba(170, 119, 28, 0.65);
  font-size: 1.5rem;
  text-decoration: line-through;
}

.price {
  margin-bottom: 16px;
  font-family: var(--font-cinzel);
  font-size: clamp(4.2rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  margin-right: 8px;
  color: var(--gold-300);
  font-size: 1.9rem;
  vertical-align: top;
  -webkit-text-fill-color: var(--gold-300);
}

.access-note {
  max-width: 448px;
  margin: 0 auto 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1f2937;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investment-list {
  max-width: 672px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.investment-list span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(179, 135, 40, 0.2);
  color: var(--gold-300);
}

.investment-list svg {
  width: 16px;
  height: 16px;
}

.investment-button {
  display: inline-block;
  width: auto;
  padding: 20px 64px;
  border-radius: 8px;
  font-size: 1.15rem;
}

.limited-note {
  margin: 24px 0 0;
  color: #6b7280;
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0);
  animation: whatsappIn 0.5s ease 1s forwards;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-ring {
  position: absolute;
  inset: 0;
  border: 1px solid #25d366;
  border-radius: 999px;
  opacity: 0;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--dark-900);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: opacity 300ms ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.site-footer {
  padding: 64px 24px 32px;
  border-top: 1px solid var(--gold-900);
  background: var(--dark-900);
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.sponsors {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 64px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(41, 33, 14, 0.8);
}

.sponsors h3 {
  margin: 0 0 48px;
  color: var(--gold-300);
  opacity: 0.7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.sponsor {
  position: relative;
}

.sponsor-glow {
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 500ms ease;
}

.sponsor:hover .sponsor-glow {
  opacity: 1;
}

.sponsor-purple {
  background: rgba(123, 82, 171, 0.1);
}

.sponsor-green {
  background: rgba(155, 192, 99, 0.1);
}

.sponsor img {
  position: relative;
  width: auto;
  height: 128px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 500ms ease, filter 500ms ease, transform 500ms ease;
}

.sponsor img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

.sponsor-divider {
  width: 1px;
  height: 64px;
  background: rgba(41, 33, 14, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1f2937;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: #fff;
}

.footer-grid p {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo {
  width: auto;
  height: 40px;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.footer-logo:hover {
  opacity: 1;
}

.copyright {
  margin: 32px 0 0;
  color: #4b5563;
  font-size: 0.75rem;
  text-align: center;
}

@keyframes introPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbPurple {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.2) rotate(90deg);
  }
}

@keyframes orbGreen {
  0%, 100% {
    opacity: 0.15;
    transform: translateX(0) scale(1.2);
  }
  50% {
    opacity: 0.25;
    transform: translateX(50px) scale(1);
  }
}

@keyframes orbPink {
  0%, 100% {
    opacity: 0.1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.25;
    transform: translateY(-30px) scale(1.3);
  }
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px);
  }
}

@keyframes hologramOn {
  0% {
    opacity: 0;
    filter: brightness(3) contrast(3) hue-rotate(90deg) blur(5px) drop-shadow(0 0 20px rgba(212, 175, 55, 0.25));
    transform: translateX(0) scale(1.1);
  }
  20% {
    opacity: 1;
    transform: translateX(-10px) scale(1.05);
  }
  30% {
    opacity: 0;
    transform: translateX(10px) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translateX(-5px) scale(1);
  }
  70% {
    opacity: 0.5;
    transform: translateX(5px) scale(1);
  }
  100% {
    opacity: 1;
    filter: brightness(1) contrast(1) hue-rotate(0deg) blur(0) drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
    transform: translateX(0) scale(1);
  }
}

@keyframes scanFlash {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes shine {
  from {
    left: -150%;
    opacity: 0;
  }
  40% {
    opacity: 0.16;
  }
  to {
    left: 125%;
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes whatsappIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ping {
  75%, 100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .feature-grid,
  .speaker-grid,
  .vip-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-grid {
    gap: 36px;
  }

  .reporter-card {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (max-width: 860px) {
  .about-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .callout-content {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .callout-content h3 {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding: 0 24px;
  }

  .nav-logo img {
    height: 34px;
  }

  .nav-cta {
    max-width: 158px;
    padding: 9px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .hero {
    padding-inline: 28px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 18px;
  }

  .hero-divider {
    display: none;
  }

  .hero-button,
  .investment-button {
    width: 100%;
    padding-inline: 20px;
    text-align: center;
  }

  .section {
    padding: 72px 24px;
  }

  .feature-grid,
  .speaker-grid,
  .vip-grid,
  .coverage-grid,
  .investment-list {
    grid-template-columns: 1fr;
  }

  .coverage-logo {
    order: initial;
  }

  .reporter-card {
    height: 450px;
  }

  .investment-card {
    padding: 44px 24px 32px;
  }

  .investment-ribbon {
    width: calc(100% - 48px);
    justify-content: center;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .sponsor-list {
    flex-direction: column;
  }

  .sponsor-divider {
    display: none;
  }

  .sponsor img {
    height: 96px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-item,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .hologram-image {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
