/* ===================================================
   AMPLIFY — Design System & Full Styles
   =================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Soft flash while swapping home → partners (SPA-style navigation) */
body.spa-page-transition {
  opacity: 0.75;
  transition: opacity 0.12s ease;
}

body.spa-page-transition main {
  pointer-events: none;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg-body: #050505;
  --bg-card: #0e0e0e;
  --orange: #E8622C;
  --orange-hover: #ff7a3d;
  --blue: #2D7BF6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.5);
  --muted-strong: rgba(255, 255, 255, 0.7);
  --border-card: rgba(255, 255, 255, 0.12);
  --font-heading: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

/* ---------- Typography ---------- */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  text-align: center;
}

.section-title.giant {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

/* ---------- Section Inner (centered content container) ---------- */
.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

/* ---------- Scroll offset for sticky header ---------- */
.hero,
.who-section,
.events-section,
.gallery-section,
.speakers-section,
.trusted-section,
.cta-poster {
  scroll-margin-top: 80px;
}

/* ---------- Focus-visible for keyboard accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 0 30px rgba(232, 98, 44, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-outline-pill {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.btn-outline-pill:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-white {
  background: var(--white);
  color: #111;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-white:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* ===================================================
   1. STICKY HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--orange);
}

/* ---------- Hamburger Button ---------- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav-cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 14px 40px;
}

/* ===================================================
   2. HERO
   =================================================== */
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Photo Strip */
.hero-photo-strip {
  overflow: visible;
  padding: 0;
  margin-top: 50px;
}

.photo-strip-track {
  display: flex;
  gap: 6px;
  transform: rotate(-5deg) scale(1.15);
  transform-origin: center center;
  justify-content: center;
  padding: 10px 0;
  width: 115%;
  margin-left: -7.5%;
}

.photo-strip-track img {
  width: 14.28%;
  min-width: 140px;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  filter: brightness(0.85) contrast(1.1);
  transition: filter 0.4s;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.photo-strip-track img:hover {
  filter: brightness(1) contrast(1.15);
}

/* Marquee */
.hero-marquee {
  overflow: hidden;
  padding: 30px 0 10px;
  position: relative;
  margin-top: 50px;
}

.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body), transparent);
}

.hero-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(60px, 9vw, 120px);
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0.9;
}

.marquee-track .dot {
  font-size: clamp(40px, 6vw, 80px);
  opacity: 0.4;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding: 20px 40px 10px;
}

.hero-title {
  margin-bottom: 10px;
}

.hero-logo-img {
  width: clamp(220px, 31vw, 425px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--muted-strong);
  margin-bottom: 12px;
}

.hero-details {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-mission {
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   3. WHO IT'S FOR
   =================================================== */
.who-section {
  padding: 80px 0 200px;
}

.who-mission {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-strong);
  text-align: center;
}

.who-layout {
  display: flex;
  justify-content: center;
}

.who-index {
  text-align: center;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  width: 280px;
  pointer-events: none;
  z-index: 10;
}

.who-index:not(.visible) {
  opacity: 0;
  visibility: hidden;
}

.who-index.visible {
  opacity: 1;
  visibility: visible;
}

/* Card keywords (shown when transformed to circle) */
.who-card .circle-keywords {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.who-card .circle-keywords span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.who-card.transformed .circle-keywords {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.15s;
}

.who-card.transformed .card-label {
  opacity: 0;
  visibility: hidden;
}

.index-line {
  width: 1px;
  height: 30px;
  background: var(--orange);
  margin: 0 auto 10px;
}

.index-number {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.index-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.index-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 240px;
  line-height: 1.6;
}

.who-cards {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

.who-card {
  flex: 1;
  max-width: 280px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              flex 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible;
}

.who-card .card-label {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  text-align: center;
  padding: 20px;
  transition: opacity 0.2s ease;
  position: absolute;
  width: 100%;
}

.who-card:hover:not(.transformed) {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

/* Transformed state: box morphs into circle */
.who-card.transformed {
  flex: 0 0 260px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 0 60px rgba(45, 123, 246, 0.25);
  margin-bottom: 240px;
  overflow: visible;
  align-self: flex-start;
}

/* ===================================================
   4. UPCOMING EVENTS
   =================================================== */
.events-section {
  padding: 80px 0;
}

.events-featured {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background: #111;
  border-radius: 8px;
}

.event-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.event-image img,
.event-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.event-image .hidden-media {
  opacity: 0;
  pointer-events: none;
}

.event-image.show-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
}

.event-image.show-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  z-index: 6;
}

.filmstrip-item .filmstrip-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.filmstrip-item .filmstrip-play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}

.filmstrip-item[data-event="0"] .filmstrip-play-icon {
  opacity: 1;
}

.event-details {
  flex: 0 0 380px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.9) 30%);
  position: relative;
  z-index: 2;
}

.event-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-strong);
  margin-bottom: 14px;
}

.event-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.event-tags {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}

.event-speaker-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.event-speaker-line span {
  font-size: 13px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.event-join {
  align-self: flex-start;
}

/* Filmstrip */
.events-filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.events-filmstrip::-webkit-scrollbar {
  height: 3px;
}

.events-filmstrip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.events-filmstrip::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

.filmstrip-item {
  flex: 0 0 calc(25% - 9px);
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.filmstrip-item.active {
  border-color: var(--orange);
}

.filmstrip-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  z-index: 2;
  animation: shimmerSweep 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.filmstrip-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s;
}

.filmstrip-item:hover img {
  transform: scale(1.05);
}

.filmstrip-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 3;
  pointer-events: none;
  transition: width 0.3s linear;
}

.filmstrip-playhead {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.filmstrip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

/* ===================================================
   4b. GALLERY / THE MOVEMENT
   =================================================== */
.gallery-section {
  padding: 80px 0;
}

.gallery-featured {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  background: #111;
}

.gallery-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-image img,
.gallery-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: opacity 0.4s ease;
}

.gallery-image .hidden-media {
  opacity: 0;
  pointer-events: none;
}

.gallery-image.show-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
}

.gallery-image.show-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  z-index: 6;
}

.gallery-image img.ken-burns {
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.gallery-caption-tag {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 4px 12px;
  border-radius: 4px;
}

.gallery-caption-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.gallery-expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-expand-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

/* Gallery Details Panel (Wheeler Info) */
.gallery-details {
  flex: 0 0 380px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.9) 30%);
  position: relative;
  z-index: 2;
}

.gallery-era {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.gallery-headline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.gallery-desc {
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 28px;
}

.gallery-cta {
  align-self: flex-start;
}

/* Gallery Filmstrip with Arrow Nav */
.gallery-filmstrip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.filmstrip-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  z-index: 3;
}

.filmstrip-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

.gallery-filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  flex: 1;
}

.gallery-filmstrip::-webkit-scrollbar {
  display: none;
}

.gallery-filmstrip .filmstrip-item {
  flex: 0 0 calc(20% - 10px);
  min-width: 160px;
}

.filmstrip-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -60%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.85);
  z-index: 3;
  pointer-events: none;
}

/* Photo Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.photo-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox-image {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-lightbox.active .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

/* Gallery section scroll offset */
.gallery-section {
  scroll-margin-top: 80px;
}

/* Gallery section ambient haze */
.gallery-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 50, 200, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ===================================================
   5. SPEAKERS
   =================================================== */
.speakers-section {
  padding: 80px 0;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 50px;
}

.speaker-card {
  text-align: center;
  position: relative;
}

.speaker-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0;
  position: relative;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.speaker-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-body) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.speaker-card:hover .speaker-photo img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.speaker-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 2px;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.speaker-role {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.speaker-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 98, 44, 0.1);
}

.speakers-cta {
  text-align: center;
}

/* ===================================================
   6. TRUSTED BY LEADERS
   =================================================== */
.trusted-section {
  padding: 80px 0;
  overflow: hidden;
}

.trusted-field {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit ring tracks */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.orbit-ring--1 {
  width: 420px;
  height: 420px;
}

.orbit-ring--2 {
  width: 600px;
  height: 600px;
  border-style: dotted;
  border-color: rgba(255, 255, 255, 0.04);
}

.orbit-ring--3 {
  width: 780px;
  height: 780px;
  border-color: rgba(255, 255, 255, 0.03);
}

/* Glassmorphic orbit bubbles */
.orbit-logo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.8;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease, border-color 0.4s ease,
              translate 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, translate, opacity;
  cursor: default;
}

.orbit-logo svg {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
  transition: filter 0.3s ease;
}

/* Tooltip */
.orbit-tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover: glow the hovered bubble */
.orbit-logo:hover {
  opacity: 1 !important;
  transform: scale(1.15) !important;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(45, 123, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 10;
  animation-play-state: paused;
}

.orbit-logo:hover svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.orbit-logo:hover .orbit-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Dim siblings when any bubble is hovered */
.trusted-field:has(.orbit-logo:hover) .orbit-logo:not(:hover) {
  opacity: 0.35;
}

/* Orbital drift animation */
@keyframes orbit-drift {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-14px) translateX(6px) rotate(2deg); }
  50% { transform: translateY(4px) translateX(-8px) rotate(-1deg); }
  75% { transform: translateY(10px) translateX(4px) rotate(-2deg); }
}

/* Center circle wrapper */
.trusted-center-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing glow rings behind center */
.center-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 123, 246, 0.3);
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

.center-pulse-ring--2 {
  animation-delay: 1.5s;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* Glassmorphic center circle */
.trusted-center-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 123, 246, 0.85) 0%,
    rgba(30, 80, 200, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 80px rgba(45, 123, 246, 0.35),
    0 0 160px rgba(45, 123, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.trusted-center-circle h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--white);
  padding: 0 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.subscribe-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  padding: 0 30px;
  line-height: 1.4;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 36px;
}

.subscribe-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
}

.subscribe-form .center-cta {
  width: 100%;
  padding: 10px 20px;
  font-size: 11px;
}

.subscribe-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  animation: subscribeFadeIn 0.5s ease forwards;
}

.subscribe-success svg {
  stroke: #fff;
}

.subscribe-success span {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 2px;
}

.subscribe-success.active {
  display: flex;
}

@keyframes subscribeFadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* Collaborate button shimmer */
.center-cta {
  position: relative;
  overflow: hidden;
}

.center-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 60%
  );
  pointer-events: none;
}

.center-cta:hover::before {
  animation: shimmerSweep 1.5s ease-in-out;
}

/* ===================================================
   7. BIG CTA POSTER — Split-Panel Layout
   =================================================== */
.cta-poster {
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.cta-poster::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(232, 98, 44, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

/* --- Left: Photo Collage --- */
.cta-collage {
  position: relative;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 0.8fr;
  gap: 16px;
  max-width: 560px;
  position: relative;
  margin-left: 20px;
}

.collage-img {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-img:hover {
  z-index: 2;
}

.collage-img:hover img {
  transform: scale(1.05);
}

.collage-img--tall {
  grid-row: 1 / 3;
  transform: rotate(-2deg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3),
    -6px 8px 40px rgba(232, 98, 44, 0.12);
}

.collage-img--tall:hover {
  transform: rotate(0deg) scale(1.02);
}

.collage-img--square {
  aspect-ratio: 1 / 1;
  transform: rotate(1.5deg) translate(-6px, 4px);
}

.collage-img--square:hover {
  transform: rotate(0deg) translate(-6px, 4px) scale(1.02);
}

.collage-img--wide {
  aspect-ratio: 16 / 10;
  transform: rotate(-1deg);
}

.collage-img--wide:hover {
  transform: rotate(0deg) scale(1.02);
}

.collage-accent {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 40% 50%, rgba(232, 98, 44, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* --- Right: Copy + CTA --- */
.cta-copy .section-label {
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-copy .section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.cta-headline {
  margin-bottom: 28px !important;
  text-align: left;
  font-size: clamp(44px, 5.5vw, 72px) !important;
}

.cta-headline .orange {
  color: var(--white);
  position: relative;
  background: var(--orange);
  padding: 0 14px;
  margin: 0 4px;
  display: inline-block;
  transform: skewX(-1deg);
  box-shadow: 0 4px 24px rgba(232, 98, 44, 0.35);
}

/* Stats row */
.cta-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  width: fit-content;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.5vw, 56px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: 2px;
}

.cta-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

.cta-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* Dual CTA buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-contact {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.cta-contact a {
  color: var(--orange);
  font-weight: 500;
  transition: opacity 0.3s;
}

.cta-contact a:hover {
  opacity: 0.8;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.06);
}

/* Collage image staggered entrance */
.reveal .collage-img {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal .collage-img--tall {
  transform: translateY(50px) scale(0.92) rotate(-6deg);
}

.reveal .collage-img--square {
  transform: translateY(50px) scale(0.92) rotate(5deg);
}

.reveal .collage-img--wide {
  transform: translateY(50px) scale(0.92) rotate(-4deg);
}

.reveal.revealed .collage-img--tall {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-2deg);
  transition-delay: 0.15s;
}

.reveal.revealed .collage-img--square {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(1.5deg) translate(-6px, 4px);
  transition-delay: 0.35s;
}

.reveal.revealed .collage-img--wide {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-1deg);
  transition-delay: 0.5s;
}

/* CTA copy children stagger (higher specificity to override generic delays) */
.reveal.revealed .cta-copy .reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal.revealed .cta-copy .reveal-child:nth-child(2) { transition-delay: 0.25s; }
.reveal.revealed .cta-copy .reveal-child:nth-child(3) { transition-delay: 0.4s; }
.reveal.revealed .cta-copy .reveal-child:nth-child(4) { transition-delay: 0.55s; }

/* ===================================================
   8. FOOTER
   =================================================== */
.site-footer {
  padding: 40px 24px 20px;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

.footer-socials-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s;
}

.footer-social-link:last-child {
  border-right: none;
}

.footer-social-link:hover {
  color: var(--orange);
}

.footer-social-link svg {
  opacity: 0.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 50px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(232, 98, 44, 0.08) 0%, rgba(232, 98, 44, 0.02) 40%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.footer-links-grid::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 20%;
  right: 20%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(232, 98, 44, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  transition: color 0.3s;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 50px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  flex: 1;
  max-width: 380px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-blurb {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-newsletter {
  flex: 0 0 400px;
}

.footer-newsletter h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-subscribe {
  border-radius: 0 8px 8px 0;
  padding: 14px 28px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--white);
}

/* ===================================================
   ANIMATIONS & HOVER EFFECTS
   =================================================== */

.speaker-card,
.filmstrip-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
}

.speaker-card:hover {
  transform: translateY(-6px);
}

section {
  position: relative;
}

/* Subtle haze gradients */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232, 98, 44, 0.06) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.events-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 50, 200, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.trusted-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(45, 123, 246, 0.12) 0%, rgba(45, 123, 246, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.trusted-section::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 55%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 98, 44, 0.06) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1280px) {
  .section-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cta-split {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1024px) {
  .section-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .who-layout {
    flex-direction: column;
    align-items: center;
  }

  .who-cards {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .who-card {
    flex: 0 0 calc(50% - 6px);
    max-width: none;
    height: 180px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .event-details {
    flex: 0 0 320px;
    padding: 30px 24px;
  }

  .gallery-details {
    flex: 0 0 320px;
    padding: 30px 24px;
  }

  .gallery-headline {
    font-size: 24px;
  }

  .gallery-filmstrip .filmstrip-item {
    flex: 0 0 calc(25% - 9px);
    min-width: 140px;
  }

  .cta-split {
    gap: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .collage-grid {
    max-width: 460px;
  }

  .footer-bottom-area {
    flex-direction: column;
    gap: 40px;
  }

  .footer-newsletter {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    padding: 14px 20px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-outline-pill[data-open-modal] {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .photo-strip-track img {
    width: 150px;
    height: 210px;
    min-width: 120px;
  }

  .hero-content {
    padding: 20px 16px 10px;
  }

  .hero-marquee::before,
  .hero-marquee::after {
    width: 60px;
  }

  .section-title.giant {
    font-size: clamp(40px, 10vw, 70px);
    margin-bottom: 40px;
  }

  .events-featured {
    flex-direction: column;
    min-height: auto;
  }

  .event-image {
    position: relative;
    height: 260px;
  }

  .event-image img {
    position: relative;
  }

  .event-details {
    flex: none;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px 24px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .speaker-photo {
    height: 200px;
  }

  .who-card {
    min-height: 120px;
    height: 140px;
  }

  .who-card .card-label {
    font-size: 18px;
  }

  .who-card.transformed {
    margin-bottom: 240px;
  }

  .trusted-field {
    min-height: 420px;
  }

  .trusted-center-circle {
    width: 260px;
    height: 260px;
  }

  .trusted-center-circle h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .subscribe-sub {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 24px;
  }

  .subscribe-form {
    padding: 0 28px;
    gap: 6px;
  }

  .subscribe-form input[type="email"] {
    padding: 8px 12px;
    font-size: 12px;
  }

  .subscribe-form .center-cta {
    padding: 8px 16px;
    font-size: 10px;
  }

  .center-pulse-ring {
    width: 260px;
    height: 260px;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-logo:nth-child(n+8) {
    display: none;
  }

  .orbit-ring--1 {
    display: block;
    width: 340px;
    height: 340px;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-copy .section-label,
  .cta-headline {
    text-align: center !important;
  }


  .cta-stats {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }


  .collage-grid {
    max-width: 480px;
    margin: 0 auto;
  }

  .collage-img--tall {
    grid-row: auto;
  }

  .collage-accent {
    display: none;
  }

  .collage-img--tall,
  .collage-img--square,
  .collage-img--wide {
    transform: none;
  }

  .collage-img--tall:hover,
  .collage-img--square:hover,
  .collage-img--wide:hover {
    transform: scale(1.02);
  }

  .reveal .collage-img--tall,
  .reveal .collage-img--square,
  .reveal .collage-img--wide {
    transform: translateY(40px) scale(0.95);
  }

  .reveal.revealed .collage-img--tall,
  .reveal.revealed .collage-img--square,
  .reveal.revealed .collage-img--wide {
    transform: translateY(0) scale(1);
  }

  .cta-copy .section-label {
    justify-content: center;
  }

  .cta-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-poster::before {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-socials-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-social-link:nth-child(2) {
    border-right: none;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 16px;
  }

  .filmstrip-item {
    flex: 0 0 calc(50% - 6px);
  }

  .gallery-featured {
    border-radius: 0;
    flex-direction: column;
    min-height: auto;
  }

  .gallery-image {
    height: 300px;
  }

  .gallery-details {
    flex: none;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px 24px;
  }

  .gallery-filmstrip .filmstrip-item {
    flex: 0 0 calc(33.33% - 8px);
    min-width: 130px;
  }

  .filmstrip-nav {
    width: 36px;
    height: 36px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .who-section,
  .events-section,
  .gallery-section,
  .speakers-section,
  .trusted-section,
  .cta-poster {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .photo-strip-track img {
    height: 160px;
    min-width: 100px;
  }

  .hero-tagline {
    letter-spacing: 2px;
  }

  .hero-details {
    letter-spacing: 1px;
  }

  .who-section {
    padding-bottom: 100px;
  }

  .who-card {
    flex: 0 0 100%;
    height: 100px;
  }

  .who-card .card-label {
    font-size: 16px;
    padding: 14px;
  }

  .who-card.transformed {
    margin-bottom: 180px;
  }

  .who-index {
    width: 220px;
  }

  .index-title {
    font-size: 22px;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-photo {
    height: 220px;
  }

  .speaker-name {
    font-size: 18px;
    margin-top: -40px;
  }

  .speaker-role {
    margin-bottom: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .filmstrip-item {
    flex: 0 0 100%;
  }

  .events-filmstrip {
    gap: 8px;
  }

  .event-title {
    font-size: 22px;
  }

  .gallery-image {
    height: 220px;
  }

  .gallery-filmstrip .filmstrip-item {
    flex: 0 0 calc(50% - 6px);
    min-width: 120px;
  }

  .gallery-filmstrip-wrap {
    gap: 8px;
  }

  .filmstrip-nav {
    width: 32px;
    height: 32px;
  }

  .filmstrip-nav svg {
    width: 14px;
    height: 14px;
  }

  .gallery-caption {
    padding: 30px 20px 16px;
  }

  .gallery-expand-btn {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .trusted-field {
    min-height: 320px;
  }

  .trusted-center-circle {
    width: 220px;
    height: 220px;
  }

  .trusted-center-circle h3 {
    font-size: 15px;
    padding: 0 16px;
    margin-bottom: 4px;
  }

  .subscribe-sub {
    font-size: 9px;
    margin-bottom: 8px;
    padding: 0 20px;
  }

  .subscribe-form {
    padding: 0 22px;
    gap: 5px;
  }

  .subscribe-form input[type="email"] {
    padding: 7px 10px;
    font-size: 11px;
  }

  .subscribe-form .center-cta {
    padding: 7px 14px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .subscribe-success span {
    font-size: 16px;
  }

  .subscribe-success svg {
    width: 24px;
    height: 24px;
  }

  .center-pulse-ring {
    width: 220px;
    height: 220px;
  }

  .orbit-logo:nth-child(n+6) {
    display: none;
  }

  .orbit-ring--1 {
    width: 280px;
    height: 280px;
  }

  .circle-keywords span {
    font-size: 12px;
  }

  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .collage-img--tall {
    grid-row: auto;
  }

  .collage-img--wide {
    grid-column: 1 / -1;
  }

  .cta-headline {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  .cta-stats {
    gap: 18px;
    padding: 16px 20px;
    width: auto;
  }

  .cta-stat-number {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-ghost {
    width: 100%;
    max-width: 280px;
  }

  .cta-poster::before {
    width: 350px;
    height: 350px;
  }

  .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-socials-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 0;
  }

  .newsletter-form input {
    border-radius: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
  }

  .btn-subscribe {
    border-radius: 8px;
  }
}

/* ===================================================
   SCROLL-TRIGGERED REVEALS
   =================================================== */

.reveal .reveal-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.revealed .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealed .reveal-child:nth-child(1) { transition-delay: 0s; }
.reveal.revealed .reveal-child:nth-child(2) { transition-delay: 0.1s; }
.reveal.revealed .reveal-child:nth-child(3) { transition-delay: 0.2s; }
.reveal.revealed .reveal-child:nth-child(4) { transition-delay: 0.3s; }

.speakers-grid .speaker-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease, border-color 0.3s;
}

.reveal.revealed .speakers-grid .speaker-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealed .speakers-grid .speaker-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.revealed .speakers-grid .speaker-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.revealed .speakers-grid .speaker-card:nth-child(3) { transition-delay: 0.19s; }
.reveal.revealed .speakers-grid .speaker-card:nth-child(4) { transition-delay: 0.26s; }
.reveal.revealed .speakers-grid .speaker-card:nth-child(5) { transition-delay: 0.33s; }

.who-cards .who-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              flex 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed .who-cards .who-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.revealed .who-cards .who-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.revealed .who-cards .who-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.revealed .who-cards .who-card:nth-child(3) { transition-delay: 0.19s; }
.reveal.revealed .who-cards .who-card:nth-child(4) { transition-delay: 0.26s; }

.trusted-field {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed .trusted-field {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* Orbit bubble drop-bounce entrance */
.trusted-field .orbit-logo {
  opacity: 0;
  transform: translateY(-60px) scale(0.7);
}

.reveal.revealed .trusted-field .orbit-logo {
  animation: orbit-drop-in 700ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal.revealed .trusted-field .orbit-logo:nth-child(4)  { animation-delay: 0.25s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(5)  { animation-delay: 0.33s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(6)  { animation-delay: 0.41s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(7)  { animation-delay: 0.49s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(8)  { animation-delay: 0.57s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(9)  { animation-delay: 0.65s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(10) { animation-delay: 0.73s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(11) { animation-delay: 0.81s; }
.reveal.revealed .trusted-field .orbit-logo:nth-child(12) { animation-delay: 0.89s; }

@keyframes orbit-drop-in {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateY(8px) scale(1.05);
  }
  70% {
    transform: translateY(-4px) scale(0.98);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
}

/* ===================================================
   HERO ENTRANCE ANIMATION
   =================================================== */

.hero-photo-strip {
  opacity: 0;
  transform: rotate(-5deg) scale(1.2);
  animation: heroStripIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroStripIn {
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.hero-title {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  animation: heroTitleClip 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroTitleClip {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-details {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

.hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.hero-mission {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
}

.hero-marquee {
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.6s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* ===================================================
   FILM GRAIN OVERLAY
   =================================================== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ===================================================
   MOUSE-FOLLOW GLOW
   =================================================== */

.mouse-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 44, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: left, top;
}

.mouse-glow.visible {
  opacity: 1;
}

/* ===================================================
   PAGE LOADER
   =================================================== */

.page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 10000;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.page-loader.loaded {
  opacity: 0;
}

/* ===================================================
   SCROLL PROGRESS BAR
   =================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  z-index: 1001;
  will-change: width;
  transition: none;
}

/* ===================================================
   NAV LINK INDICATORS
   =================================================== */

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover::after,
.main-nav a.nav-active::after {
  transform: scaleX(1);
}

.main-nav a.nav-active {
  color: var(--orange);
}

/* ===================================================
   REDUCED MOTION
   =================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal .reveal-child,
  .speakers-grid .speaker-card,
  .who-cards .who-card,
  .trusted-field {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-photo-strip, .hero-title, .hero-tagline,
  .hero-details, .hero-ctas, .hero-mission, .hero-marquee {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .gallery-image img.ken-burns {
    animation: none !important;
  }
  .page-loader { display: none !important; }
  .mouse-glow { display: none !important; }
}

/* ===================================================
   TICKET MODAL
   =================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.ticket-modal {
  position: relative;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 300ms ease;
}

.modal-overlay.active .ticket-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ticket-modal::-webkit-scrollbar {
  width: 4px;
}

.ticket-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.ticket-modal::-webkit-scrollbar-track {
  background: transparent;
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  .modal-overlay {
    background: rgba(5, 5, 5, 0.92);
  }

  .ticket-modal {
    background: #0d0d0d;
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Staggered entrance for modal children */
.modal-stagger {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-stagger {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 50ms + 120ms);
}

.modal-overlay:not(.active) .modal-stagger {
  transition-delay: 0ms !important;
  transition-duration: 150ms;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
  z-index: 2;
}

.modal-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.modal-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.modal-event-details {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-field {
  margin-bottom: 16px;
}

.modal-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.optional-tag {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

.modal-field input,
.modal-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.modal-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.modal-field select option {
  background: #141414;
  color: #fff;
}

.modal-field input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.modal-field input:focus,
.modal-field select:focus {
  border-color: rgba(232, 98, 44, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 98, 44, 0.12);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.modal-submit {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: #E8622C;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.modal-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transition: none;
  pointer-events: none;
}

.modal-submit:hover {
  background: #d4551f;
  box-shadow: 0 4px 24px rgba(232, 98, 44, 0.35);
  transform: translateY(-1px);
}

.modal-submit:hover::before {
  animation: shimmerSweep 1.5s ease-in-out;
}

.modal-submit:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 12px rgba(232, 98, 44, 0.25);
}

.modal-helper {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* Success State */

.modal-success-state {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.modal-success-state .modal-title {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Animated SVG checkmark */
.success-checkmark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: block;
}

.success-circle {
  fill: none;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  opacity: 0.3;
}

.success-tick {
  fill: none;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.modal-success-state.animate-in .success-circle {
  animation: drawCircle 600ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.modal-success-state.animate-in .success-tick {
  animation: drawTick 400ms cubic-bezier(0.65, 0, 0.35, 1) 350ms forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawTick {
  to { stroke-dashoffset: 0; }
}

/* Success text cascade */
.success-title-anim {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
}

.success-text-anim {
  opacity: 0;
  transform: translateY(10px);
}

.success-actions-anim {
  opacity: 0;
  transform: translateY(8px);
}

.modal-success-state.animate-in .success-title-anim {
  animation: successFadeUp 450ms cubic-bezier(0.16, 1, 0.3, 1) 500ms forwards;
}

.modal-success-state.animate-in .success-text-anim {
  animation: successFadeUp 400ms cubic-bezier(0.16, 1, 0.3, 1) 650ms forwards;
}

.modal-success-state.animate-in .success-actions-anim {
  animation: successFadeUp 400ms cubic-bezier(0.16, 1, 0.3, 1) 800ms forwards;
}

@keyframes successFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-success-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.success-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.success-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Modal Responsive */

@media (max-width: 520px) {
  .ticket-modal {
    width: 95%;
    padding: 24px 20px;
    border-radius: 14px;
    max-height: 92vh;
  }

  .modal-title {
    font-size: 28px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-checkmark {
    width: 52px;
    height: 52px;
  }

  .modal-submit {
    height: 48px;
  }
}

/* ===================================================
   PARTNERS / SPONSORSHIP PAGE
   =================================================== */

#partners {
  scroll-margin-top: 80px;
}

#partner-tiers,
#partner-inquiry {
  scroll-margin-top: 96px;
}

.partner-page-wrap {
  position: relative;
}

.sponsor-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.sponsor-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 98, 44, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(45, 123, 246, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  z-index: 0;
}

.sponsor-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsor-hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  opacity: 0.9;
}

.sponsor-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 16px;
}

.sponsor-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 3px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.sponsor-hero-sub {
  font-size: 18px;
  color: var(--muted-strong);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.sponsor-hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 36px;
}

.sponsor-hero-badge .badge-divider {
  opacity: 0.3;
}

.sponsor-hero-cta {
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 2px;
}

/* --- Why Sponsor / Benefits --- */

.sponsor-benefits-section {
  padding: 100px 24px 80px;
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.benefit-card:hover {
  border-color: rgba(232, 98, 44, 0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 98, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  stroke: var(--orange);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-strong);
}

/* --- Sponsorship Tiers --- */

.sponsor-tiers-section {
  padding: 100px 24px 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 98, 44, 0.03) 50%, transparent 100%);
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.tier-card:hover {
  transform: translateY(-4px);
}

.tier-card--platinum {
  border-color: var(--orange);
  box-shadow: 0 0 60px rgba(232, 98, 44, 0.12), 0 0 120px rgba(232, 98, 44, 0.05);
  order: 1;
}

.tier-card--gold {
  order: 0;
}

.tier-card--silver {
  order: -1;
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  padding: 6px 24px;
  border-radius: 20px;
}

.tier-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-card);
}

.tier-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--orange);
}

.tier-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.tier-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.tier-benefits li svg {
  flex-shrink: 0;
}

.tier-cta {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 2px;
}

/* --- Inquiry Form Section --- */

.sponsor-inquiry-section {
  padding: 100px 24px 120px;
}

.inquiry-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}

.form-group label .optional {
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.6;
  font-size: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #111;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry-submit {
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  align-self: flex-start;
  margin-top: 4px;
}

.inquiry-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 60px 20px;
  animation: subscribeFadeIn 0.5s ease forwards;
}

.inquiry-success.active {
  display: flex;
}

.inquiry-success h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
}

.inquiry-success p {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.6;
  max-width: 400px;
}

/* Contact sidebar */

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
}

.contact-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-strong);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.8;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.6;
}

.contact-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* --- Partners Page Responsive --- */

@media (max-width: 1024px) {
  .sponsor-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .tier-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .tier-card--platinum {
    order: -1;
  }

  .tier-card--gold {
    order: 0;
  }

  .tier-card--silver {
    order: 1;
  }

  .inquiry-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sponsor-hero {
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .sponsor-hero-sub {
    font-size: 15px;
  }

  .sponsor-hero-badge {
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  .sponsor-hero-badge .badge-divider {
    display: none;
  }

  .sponsor-benefits-section,
  .sponsor-tiers-section,
  .sponsor-inquiry-section {
    padding: 70px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sponsor-benefits {
    grid-template-columns: 1fr;
  }

  .sponsor-hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .tier-card {
    padding: 36px 24px;
  }

  .benefit-card {
    padding: 30px 20px;
  }
}
