/* ============================================
   TRADERS HOUSE – STYLE.CSS
   Premium Dark Landing Page
   ============================================ */

/* ----------------------------------------
   CSS Variables
---------------------------------------- */
:root {
  /* Colors */
  --bg:            #070707;
  --bg-2:          #0c0c0f;
  --bg-3:          #111118;
  --surface:       rgba(255,255,255,0.032);
  --surface-hover: rgba(255,255,255,0.06);
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.14);

  --blue:          #E8A500;
  --blue-dim:      rgba(232,165,0,0.15);
  --blue-glow:     rgba(232,165,0,0.40);
  --purple:        #C8780A;
  --purple-dim:    rgba(200,120,10,0.15);
  --purple-glow:   rgba(200,120,10,0.40);
  --cyan:          #F5C842;
  --cyan-dim:      rgba(245,200,66,0.12);
  --cyan-glow:     rgba(245,200,66,0.35);
  --white:         #FFFFFF;
  --gray-1:        #A0AEC0;
  --gray-2:        #64748B;
  --gray-3:        #334155;
  --red-dim:       rgba(239,68,68,0.15);
  --red:           #EF4444;

  /* Typography */
  --font-display:  'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing */
  --section-py:    72px;
  --container-px:  48px;
  --max-w:         1200px;

  /* Border Radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;

  /* Shadows */
  --shadow-card: 0 4px 40px rgba(0,0,0,0.6);
  --shadow-glow-blue: 0 0 40px rgba(232,165,0,0.2);
  --shadow-glow-purple: 0 0 40px rgba(200,120,10,0.2);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* Utility */
.mt-24 { margin-top: 24px; }

/* ----------------------------------------
   Typography Scale
---------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F0B429;
  background: rgba(232,165,0,0.12);
  border: 1.5px solid rgba(232,165,0,0.35);
  border-radius: 100px;
  padding: 8px 18px 8px 13px;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(232,165,0,0.12);
}
.section-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F0B429;
  box-shadow: 0 0 8px rgba(240,180,41,0.7);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-1);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  white-space: nowrap;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------
   Buttons
---------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-xl);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); }

.btn-glow {
  box-shadow: 0 0 30px var(--blue-glow), 0 4px 20px rgba(0,0,0,0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 50px var(--blue-glow), 0 8px 30px rgba(0,0,0,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border-hover);
  border-radius: var(--r-xl);
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--surface-hover);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.25s;
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}

/* ----------------------------------------
   Glass Cards
---------------------------------------- */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 17px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-smooth);
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* ----------------------------------------
   Loader
---------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 28px;
  animation: logoPulse 1.5s ease-in-out infinite;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@keyframes logoPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.97)} }

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 2px;
  animation: loadFill 1.8s var(--ease-smooth) forwards;
}
@keyframes loadFill { from{width:0} to{width:100%} }

.loader-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-2);
  text-transform: uppercase;
}

/* ----------------------------------------
   Scroll Progress Bar
---------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  z-index: 9998;
  transition: width 0.05s linear;
}

/* ----------------------------------------
   Custom Cursor
---------------------------------------- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}
.cursor.hover-state {
  width: 0px;
  height: 0px;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232,165,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99996;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.2s;
}
.cursor-follower.hover-state {
  width: 40px;
  height: 40px;
  border-color: rgba(232,165,0,0.6);
  background: rgba(232,165,0,0.04);
}

/* ----------------------------------------
   NAVIGATION
---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-1);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--white);
  background: var(--surface-hover);
}

.nav-actions { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 24px;
  width: 100%;
  max-width: 380px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-1);
  padding: 12px 24px;
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
  width: 100%;
  text-align: center;
}
.mobile-link:hover { color: var(--white); background: var(--surface-hover); }

/* ----------------------------------------
   HERO SECTION
---------------------------------------- */
.section-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
  overflow: hidden;
}

/* Floating Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,165,0,0.18) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: blobFloat1 12s ease-in-out infinite;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,120,10,0.15) 0%, transparent 70%);
  top: 50%;
  right: -150px;
  animation: blobFloat2 15s ease-in-out infinite;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation: blobFloat3 10s ease-in-out infinite;
}
@keyframes blobFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-30px) scale(1.06)} 66%{transform:translate(-20px,20px) scale(0.96)} }
@keyframes blobFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-30px,40px) scale(1.04)} 66%{transform:translate(20px,-20px) scale(0.98)} }
@keyframes blobFloat3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-40px) scale(1.08)} }

.particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,165,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,165,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface-hover);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-1);
  margin-bottom: 16px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(232,165,0,0.6);
  animation: pulseBadge 2s ease-out infinite;
}
@keyframes pulseBadge { 0%{box-shadow:0 0 0 0 rgba(232,165,0,0.6)} 70%{box-shadow:0 0 0 8px transparent} 100%{box-shadow:0 0 0 0 transparent} }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
  flex-shrink: 0;
}
.proof-av:first-child { margin-left: 0; }
.proof-plus {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--gray-1);
  font-size: 11px;
}
.hero-social-proof p { font-size: 14px; color: var(--gray-1); }
.hero-social-proof strong { color: var(--white); }

/* Event Card */
.event-card {
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.event-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.05em;
}
.live-dot-pulse {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseBadge 2s ease-out infinite;
}
.event-type-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-2);
  text-transform: uppercase;
}

.event-location-visual {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 14px;
  height: 100px;
}
.event-location-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/Manali Montain.webp') center/cover no-repeat;
}
.event-location-bg::after {
  display: none;
}
.event-location-content {
  position: relative;
  padding: 24px 20px;
}
.event-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.event-card-details { margin-bottom: 12px; }
.event-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray-1);
}
.event-detail-row:last-child { border-bottom: none; }
.detail-icon { font-size: 15px; flex-shrink: 0; }

/* Countdown */
.countdown-section {
  margin-bottom: 12px;
}
.countdown-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.countdown-grid {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
  font-variant-numeric: tabular-nums;
}
.countdown-unit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
}
.countdown-colon {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-2);
  flex-shrink: 0;
  animation: colonBlink 1s step-end infinite;
}
@keyframes colonBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Seats */
.seats-section { margin-bottom: 12px; }
.seats-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 12px;
}
.seats-warning strong { color: #ef4444; }
.seats-progress-wrap {}
.seats-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.selling-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #fb923c;
}
.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 6px;
  animation: progressGlow 2s ease-in-out infinite;
}
@keyframes progressGlow { 0%,100%{box-shadow:0 0 6px rgba(232,165,0,0.4)} 50%{box-shadow:0 0 14px rgba(200,120,10,0.5)} }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-mouse-icon {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--gray-1);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-wheel-dot {
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%{opacity:1;transform:translateY(0)} 80%{opacity:0;transform:translateY(12px)} 100%{opacity:0;transform:translateY(0)} }
.scroll-indicator span { font-size: 11px; letter-spacing: 0.1em; color: var(--gray-2); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ----------------------------------------
   TRUST / MARQUEE
---------------------------------------- */
.section-trust {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 24px;
}
.marquee-outer {
  position: relative;
  overflow: hidden;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-slide { display: flex; gap: 12px; padding-right: 12px; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.partner-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-1);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.partner-chip:hover { border-color: var(--border-hover); color: var(--white); }
.partner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.partner-dot.blue { background: var(--blue); }
.partner-dot.purple { background: var(--purple); }
.partner-dot.cyan { background: var(--cyan); }

/* ----------------------------------------
   PROBLEM SECTION
---------------------------------------- */
.section-problem {
  padding: var(--section-py) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* default align-items:stretch — left cell height = right cell height */
}
.problem-left {
  /* NO sticky here — let the cell stretch to full row height */
}
.problem-left .lone-trader-card {
  /* sticky on the INNER card — this is the correct pattern */
  position: sticky;
  top: 100px;
}

.lone-trader-card {
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trader-illustration {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trader-screen {
  width: 200px;
  height: 140px;
  background: #0d1b3e;
  border: 1px solid rgba(232,165,0,0.3);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(232,165,0,0.15);
}
.screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(232,165,0,0.2), transparent);
}
.screen-chart {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}
.chart-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(232,165,0,0.3), var(--blue), rgba(232,165,0,0.3));
  clip-path: polygon(0 0, 30% 0, 35% 100%, 50% 20%, 60% 80%, 75% 10%, 100% 30%, 100% 100%, 0 100%);
  transform-origin: left;
  animation: chartAnim 4s ease-in-out infinite;
}
.chart-line.cl2 {
  background: linear-gradient(90deg, rgba(200,120,10,0.3), var(--purple), rgba(200,120,10,0.3));
  clip-path: polygon(0 60%, 20% 30%, 40% 90%, 55% 40%, 70% 60%, 85% 20%, 100% 50%, 100% 100%, 0 100%);
  animation-delay: 1s;
}
@keyframes chartAnim { 0%,100%{opacity:0.7;transform:scaleX(0.95)} 50%{opacity:1;transform:scaleX(1)} }
.trader-figure {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 60px;
  background: var(--bg-3);
  border-radius: 8px 8px 4px 4px;
  border: 1px solid var(--border);
}
.trader-figure::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.trader-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  filter: blur(6px);
}
.illustration-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray-1);
  font-style: italic;
}
.icon-sad { font-size: 20px; }

.problem-right { }
.pain-headline {
  margin: 24px 0;
}
.pain-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  display: block;
}
.pain-story {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.pain-story p { font-size: 15px; color: var(--gray-1); line-height: 1.8; }
.pain-story em { color: var(--white); font-style: italic; }

.pain-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pain-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--gray-1);
  transition: all 0.25s;
}
.pain-card:hover { background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); color: var(--white); transform: translateX(4px); }
.pain-card-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--red);
}
.pain-red { background: var(--red-dim); }

.problem-solution { padding: 24px 0; }
.solution-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple), transparent);
  margin-bottom: 20px;
}
.solution-text {
  font-size: 16px;
  color: var(--gray-1);
  line-height: 1.8;
}
.solution-text strong { color: var(--white); }

/* ----------------------------------------
   BENTO GRID – WHY TRADERS HOUSE
---------------------------------------- */
.section-bento {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 50%, transparent);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.bento-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-smooth);
  cursor: default;
}
.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card);
}
.bento-large { grid-column: span 2; }

.bento-blue { border-color: rgba(232,165,0,0.15); }
.bento-blue:hover { border-color: rgba(232,165,0,0.3); box-shadow: 0 8px 40px rgba(232,165,0,0.12); }
.bento-purple { border-color: rgba(200,120,10,0.12); }
.bento-purple:hover { border-color: rgba(200,120,10,0.3); box-shadow: 0 8px 40px rgba(200,120,10,0.12); }
.bento-cyan { border-color: rgba(245,200,66,0.1); }
.bento-cyan:hover { border-color: rgba(245,200,66,0.25); box-shadow: 0 8px 40px rgba(245,200,66,0.1); }

.bento-icon { font-size: 32px; margin-bottom: 16px; }
.bento-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.bento-desc { font-size: 14.5px; color: var(--gray-1); line-height: 1.65; }

.bento-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  top: -80px;
  right: -60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover .bento-glow { opacity: 1; }
.bento-glow-blue { background: rgba(232,165,0,0.2); }
.bento-glow-purple { background: rgba(200,120,10,0.2); }
.bento-glow-cyan { background: rgba(245,200,66,0.15); }

.bento-footer {
  text-align: center;
  padding-top: 48px;
}
.bento-footer-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gray-1);
}
.bento-footer-text strong { color: var(--white); }

/* ----------------------------------------
   COMMUNITY IMPACT
---------------------------------------- */
.section-impact {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.impact-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,165,0,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-stat {
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--gray-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-plus {
  font-size: 0.5em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.stat-sub { font-size: 13px; color: var(--gray-2); line-height: 1.5; margin-bottom: 16px; }
.stat-bar { height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; }
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s var(--ease-smooth);
}
.stat-bar-fill.animated { transform: scaleX(1); }

/* ----------------------------------------
   JOURNEY TIMELINE
---------------------------------------- */
.section-journey { padding: var(--section-py) 0; }
.timeline-wrapper { position: relative; }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), var(--border-hover), var(--border), transparent);
  transform: translateX(-50%);
}
/* ── Timeline — left-aligned, reliable on all screens ── */
.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

/* Vertical line — left edge of node column */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(180deg, rgba(232,165,0,0.4), rgba(232,165,0,0.05));
  z-index: 0;
}
.timeline-item:last-child::before { display: none; }

/* Node column */
.timeline-node {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 24px;
  margin-right: 28px;
}

/* Card takes rest */
.timeline-card {
  flex: 1;
  margin-bottom: 32px;
  min-width: 0;
}

.timeline-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
}
.timeline-node-inner {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-1);
}
.timeline-node-active {
  background: linear-gradient(135deg, var(--blue-dim), var(--purple-dim));
  border-color: var(--blue);
}
.timeline-node-active .timeline-node-inner { color: var(--white); }
.timeline-node-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(232,165,0,0.3);
  animation: nodeRipple 2s ease-out infinite;
}
@keyframes nodeRipple { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.6)} }
.timeline-node-future {
  background: var(--bg-3);
  border-style: dashed;
}
.timeline-node-future .timeline-node-inner { font-size: 18px; }

.timeline-card { }
.timeline-img-wrap {
  position: relative;
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
  height: 200px;
}
/* Goa banner is 3:1 — auto height to prevent crop */
.timeline-img-wrap:has(.tl-goa) {
  height: auto;
  aspect-ratio: 3 / 1;
}
.timeline-img-wrap:has(.tl-manali) {
  height: auto;
  aspect-ratio: 3 / 1;
}
.timeline-img { position: absolute; inset: 0; }
.tl-goa {
  background: url('assets/images/goa-banner.png') center/100% auto no-repeat, linear-gradient(135deg, #0d2e1a, #1a4f30);
}
.tl-goa::after { display: none; }
.tl-manali {
  background: url('assets/images/manali-timeline.webp') center/100% auto no-repeat, linear-gradient(135deg, #0d1b3e, #1a1040);
}
.tl-manali::after { display: none; }
.timeline-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(7,7,7,0.8);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.timeline-upcoming-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.timeline-content {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  word-break: break-word;
}
.timeline-card.glass-card:hover { transform: none; }
.timeline-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-subtitle { font-size: 13px; color: var(--gray-2); margin-bottom: 16px; }
.timeline-stats {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.tl-stat { text-align: center; }
.tl-num { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); }
.tl-lbl { font-size: 11px; color: var(--gray-2); }
.timeline-bullets { display: flex; flex-direction: column; gap: 6px; }
.timeline-bullets li {
  font-size: 13.5px;
  color: var(--gray-1);
  padding-left: 18px;
  position: relative;
}
.timeline-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--blue); }
.timeline-exp-text { font-size: 14px; color: var(--gray-1); line-height: 1.7; margin-bottom: 20px; }
.timeline-card-active .timeline-content { background: linear-gradient(135deg, rgba(232,165,0,0.05), rgba(200,120,10,0.05)); }
.timeline-card-future .timeline-content { border-style: dashed; }
.timeline-future-inner { text-align: center; padding: 20px 0; }
.future-icon { font-size: 40px; margin-bottom: 12px; }
.timeline-future-inner h3 { font-family: var(--font-display); font-size: 18px; color: var(--gray-1); margin-bottom: 8px; }
.timeline-future-inner p { font-size: 14px; color: var(--gray-2); }

/* ----------------------------------------
   PAST EVENTS
---------------------------------------- */
.section-past { padding: var(--section-py) 0; }
.past-event-showcase { }
.past-event-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
}
.past-event-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr;
  height: 380px;
}
.past-gallery-main {
  height: 100%;
}
.pg-goa1 {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(245,200,66,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(232,165,0,0.2), transparent 50%),
    linear-gradient(135deg, #051510, #0d2e1a, #1a4f30);
}
.pg-goa1::after { content:'🌊🌴'; position:absolute; bottom:16px; left:16px; font-size:24px; }
.past-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.past-gallery-sm { flex: 1; position: relative; }
.pg-goa2 {
  background: linear-gradient(135deg, rgba(232,165,0,0.2), rgba(245,200,66,0.1)),
    linear-gradient(135deg, #071520, #0f2a3a);
}
.pg-goa2::after { content:'🤝'; position:absolute; bottom:10px; right:10px; font-size:28px; }
.pg-goa3 {
  background: linear-gradient(135deg, rgba(200,120,10,0.2), rgba(232,165,0,0.1)),
    linear-gradient(135deg, #150720, #1f0f38);
}
.pg-goa3::after { content:'🌅'; position:absolute; bottom:10px; right:10px; font-size:28px; }

.past-event-info { padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.past-event-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--blue-dim), var(--purple-dim));
  border: 1px solid var(--border-hover);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 12px;
}
.past-event-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em; }
.past-event-sub { font-size: 14px; color: var(--gray-2); margin-bottom: 28px; }
.past-event-highlights { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-1); }
.hi-check { color: #4ade80; font-size: 13px; font-weight: 700; }
.past-event-quotes { display: flex; flex-direction: column; gap: 8px; }
.past-quote {
  padding: 12px 16px;
  background: var(--bg-3);
  border-left: 2px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13.5px;
  color: var(--gray-1);
  font-style: italic;
}

/* ----------------------------------------
   UPCOMING EVENTS
---------------------------------------- */
.section-upcoming { padding: var(--section-py) 0; }
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 24px; }
.upcoming-footer { text-align: center; padding-top: 48px; }
.upcoming-footer-note { font-size: 14px; color: var(--gray-2); }

/* Upcoming Event Card (rendered from JS) */
.uc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
}
.uc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--border-hover); }
.uc-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.uc-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease-smooth);
}
.uc-card:hover .uc-img-bg { transform: scale(1.05); }
.uc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.9), transparent 60%);
}
.uc-img-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.uc-tag {
  padding: 5px 10px;
  background: rgba(7,7,7,0.8);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.uc-tag-hot { background: linear-gradient(135deg, rgba(239,68,68,0.8), rgba(220,38,38,0.8)); border-color: transparent; }
.uc-img-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
}
.uc-event-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.uc-card-body { padding: 24px; }
.uc-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.uc-detail { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--gray-1); }
.uc-detail-icon { font-size: 15px; }

.uc-countdown-wrap { margin-bottom: 20px; }
.uc-countdown-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.uc-countdown {
  display: flex;
  gap: 6px;
  align-items: center;
}
.uc-cd-item {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.uc-cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.uc-cd-lbl { font-size: 9px; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.05em; }
.uc-cd-sep { font-family: var(--font-display); font-size: 14px; color: var(--gray-2); }

.uc-seats-wrap { margin-bottom: 20px; }
.uc-seats-header { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-2); margin-bottom: 8px; }
.uc-seats-warn { color: #fca5a5; font-weight: 600; }
.uc-progress-track { height: 5px; background: var(--border); border-radius: 5px; overflow: hidden; }
.uc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--purple)); border-radius: 5px; }

.uc-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.uc-price-lbl { font-size: 12px; color: var(--gray-2); font-weight: 500; }
.uc-price-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uc-highlights { margin-bottom: 24px; }
.uc-highlight-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-1); padding: 4px 0; }
.uc-check { color: #4ade80; font-size: 12px; }

/* ----------------------------------------
   WHAT TO EXPECT – BENTO
---------------------------------------- */
.section-expect {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 50%, transparent);
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.expect-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.expect-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.expect-large { grid-column: span 2; }
.expect-icon-wrap { margin-bottom: 14px; }
.expect-icon { font-size: 28px; }
.expect-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.expect-card p { font-size: 13.5px; color: var(--gray-1); line-height: 1.6; }

/* ----------------------------------------
   GALLERY
---------------------------------------- */
.section-gallery { padding: var(--section-py) 0; }
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn, .gallery-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.filter-active, .gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--blue-dim), var(--purple-dim));
  border-color: var(--blue);
  color: var(--white);
}

.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item-inner {
  position: relative;
  width: 100%;
}
.gallery-item-img {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-item:hover .gallery-item-img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.8) 0%, transparent 60%);
  opacity: 0;
  border-radius: var(--r-md);
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--surface-hover); }
.lightbox-img {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 70vh;
}
.lightbox-img > div { width: 100%; height: 100%; min-height: 400px; }
.lightbox-caption {
  text-align: center;
  padding: 16px;
  font-size: 14px;
  color: var(--gray-1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -60px;
  right: -60px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.lb-nav-btn {
  pointer-events: all;
  width: 44px;
  height: 44px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-nav-btn:hover { background: var(--blue-dim); border-color: var(--blue); }

/* ----------------------------------------
   VIDEO GALLERY
---------------------------------------- */
.section-videos { padding: var(--section-py) 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-smooth);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--border-hover); }
.video-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.video-thumb-bg { position: absolute; inset: 0; transition: transform 0.5s var(--ease-smooth); }
.video-card:hover .video-thumb-bg { transform: scale(1.06); }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.video-card:hover .video-play-btn { background: rgba(232,165,0,0.4); border-color: var(--blue); transform: translate(-50%,-50%) scale(1.1); }
.video-play-btn svg { color: var(--white); margin-left: 3px; }
.video-info { padding: 20px; }
.video-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.video-sub { font-size: 12px; color: var(--gray-2); }

/* ----------------------------------------
   TESTIMONIAL VIDEOS SLIDER
---------------------------------------- */
.section-testimonial-videos { padding: var(--section-py) 0; overflow: hidden; }
.tv-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  max-width: calc(var(--max-w) + 96px);
  margin: 0 auto;
}
.tv-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 2;
}
.tv-nav-btn:hover { background: var(--blue-dim); border-color: var(--blue); }
.tv-slider-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}
.tv-card {
  min-width: 280px;
  max-width: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}
.tv-card:hover { transform: scale(1.03); border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.tv-card-thumb { height: 180px; position: relative; overflow: hidden; }
.tv-thumb-bg { position: absolute; inset: 0; }
.tv-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,0.7), transparent 50%); }
.tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.tv-card:hover .tv-play { background: rgba(232,165,0,0.5); border-color: var(--blue); }
.tv-card-info { padding: 16px; }
.tv-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.tv-exp { font-size: 12px; color: var(--gray-2); margin-bottom: 10px; }
.tv-quote-preview { font-size: 13px; color: var(--gray-1); font-style: italic; line-height: 1.5; }

/* ----------------------------------------
   WRITTEN TESTIMONIALS
---------------------------------------- */
.section-testimonials { padding: var(--section-py) 0; }
.testimonials-carousel-wrapper { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-smooth);
}
.testimonial-card {
  min-width: calc(33.333% - 14px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #FBBF24; font-size: 14px; }
.tc-quote {
  font-size: 15px;
  color: var(--gray-1);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 2px solid var(--border-hover);
  padding-left: 16px;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.tc-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); }
.tc-role { font-size: 12px; color: var(--gray-2); margin-top: 2px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  cursor: pointer;
  transition: all 0.25s;
}
.dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ----------------------------------------
   WHO SHOULD JOIN
---------------------------------------- */
.section-who { padding: var(--section-py) 0; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  padding: 32px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.who-card:hover { border-color: var(--blue); }
.who-icon { font-size: 36px; margin-bottom: 16px; }
.who-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.who-desc { font-size: 14px; color: var(--gray-1); line-height: 1.65; margin-bottom: 20px; }
.who-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--blue-dim), var(--purple-dim));
  border: 1px solid rgba(232,165,0,0.25);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
}

/* ----------------------------------------
   FAQ
---------------------------------------- */
.section-faq { padding: var(--section-py) 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-hover); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--blue-dim); border-color: var(--blue); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}
.faq-answer p { padding: 0 24px 22px; font-size: 15px; color: var(--gray-1); line-height: 1.75; }

/* ----------------------------------------
   FINAL CTA
---------------------------------------- */
.section-final-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: blobFloat1 15s ease-in-out infinite;
}
.cb1 { width: 600px; height: 600px; background: rgba(232,165,0,0.12); top: -200px; left: -200px; }
.cb2 { width: 500px; height: 500px; background: rgba(200,120,10,0.1); bottom: -200px; right: -100px; animation-delay: 5s; }
.cta-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-px); }
.cta-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-desc {
  font-size: 18px;
  color: var(--gray-1);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.cta-social-proof { display: flex; align-items: center; gap: 14px; justify-content: center; }
.csp-avatars { display: flex; }
.csp-av {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--bg); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-left: -10px; flex-shrink: 0;
}
.csp-av:first-child { margin-left: 0; }
.cta-social-proof p { font-size: 15px; color: var(--gray-1); }
.cta-social-proof strong { color: var(--white); }

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--bg-2);
}
.footer-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-px); }
.footer-top { display: grid; grid-template-columns: 300px 1fr; gap: 80px; margin-bottom: 60px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer-tagline { font-size: 14px; color: var(--gray-2); line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-1); transition: all 0.25s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }

.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-2); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--gray-2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--gray-2); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ----------------------------------------
   STICKY BOOKING WIDGET
---------------------------------------- */
.sticky-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 240px;
  transform: translateX(300px);
  transition: transform 0.5s var(--ease-smooth);
}
.sticky-widget.visible { transform: translateX(0); }
.sticky-widget.urgency-mode .widget-inner { border-color: rgba(239,68,68,0.3); }

.widget-inner {
  padding: 14px;
  border-color: rgba(232,165,0,0.2);
}
.widget-header { margin-bottom: 10px; }
.widget-top-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.widget-event-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  white-space: normal;
  line-height: 1.3;
}
.widget-urgency {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  color: #fca5a5;
  white-space: nowrap;
}
.urgency-fire { animation: fireShake 1.5s ease-in-out infinite; }
@keyframes fireShake { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-5deg)} 75%{transform:rotate(5deg)} }

.widget-countdown {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
  padding: 8px 6px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
}
.widget-cd-item { flex: 1; text-align: center; }
.widget-cd-num { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.widget-cd-lbl { font-size: 7px; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.05em; }
.widget-cd-colon { font-family: var(--font-display); font-size: 12px; color: var(--gray-2); padding-bottom: 8px; }

.widget-seats { font-family: var(--font-display); font-size: 11px; color: var(--gray-1); margin-bottom: 8px; text-align: center; }
.widget-seats-num { font-size: 14px; font-weight: 700; color: #ef4444; }
.widget-price { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.price-label { font-size: 10px; color: var(--gray-2); }
.price-value { font-family: var(--font-display); font-size: 17px; font-weight: 700; background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.widget-btn { font-size: 12px; padding: 10px 16px; }

/* ----------------------------------------
   VIDEO MODAL
---------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-content { position: relative; width: 90%; max-width: 900px; }
.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--red-dim); border-color: var(--red); }
.video-player-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: var(--r-lg); overflow: hidden; background: #000; }
.video-player-wrap iframe, .video-player-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ----------------------------------------
   REVEAL ANIMATIONS (JS adds .animated)
---------------------------------------- */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  will-change: transform, opacity;
}
.reveal-up { transform: translateY(50px); }
.reveal-fade { transform: translateY(10px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92) translateY(20px); }

.reveal-up.animated, .reveal-fade.animated, .reveal-left.animated,
.reveal-right.animated, .reveal-scale.animated {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }


/* ============================================
   SUPPLEMENTARY — JS-rendered component styles
   Bridges script.js output with existing CSS
   ============================================ */

/* ── Gallery (JS-rendered) ──────────────────── */
.gallery-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  transition: all 0.25s;
  cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--blue-dim), var(--purple-dim));
  border-color: var(--blue);
  color: var(--white);
}
.gallery-img {
  width: 100%;
  min-height: 180px;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-emoji {
  font-size: 56px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 14px;
  gap: 6px;
  border-radius: var(--r-md);
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  font-size: 20px;
  color: white;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.gallery-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-align: center;
}


/* ── Upcoming Events (JS-rendered) ─────────── */
.uc-img {
  height: auto;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(239,68,68,0.9);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  align-self: flex-start;
  backdrop-filter: blur(8px);
}
.uc-tag {
  padding: 5px 12px;
  background: rgba(7,7,7,0.75);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  backdrop-filter: blur(8px);
  align-self: flex-end;
}
.uc-img-emoji {
  font-size: 72px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.uc-body { padding: 24px 22px; }
.uc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.uc-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-1);
  margin-bottom: 18px;
}
.uc-countdown {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 18px;
}
.uc-cd-item {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.uc-cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.uc-cd-label {
  font-size: 9px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
  display: block;
}
.uc-cd-sep {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-2);
  flex-shrink: 0;
}
.uc-seats { margin-bottom: 16px; }
.uc-seats-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.uc-urgency .uc-seats-row { color: #fca5a5; font-weight: 600; }
.uc-selling { color: var(--blue); font-weight: 600; }
.uc-progress {
  height: 5px;
  background: var(--border);
  border-radius: 5px;
  overflow: hidden;
}
.uc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 5px;
  transition: width 0.8s var(--ease-smooth);
}
.uc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.uc-hl-tag {
  padding: 6px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-size: 12px;
  color: var(--gray-1);
  white-space: nowrap;
}
.uc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.uc-price-block { display: flex; flex-direction: column; gap: 2px; }
.uc-price-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.uc-price-note { font-size: 11px; color: var(--gray-2); }


/* ── Video Gallery (JS-rendered) ───────────── */
.video-thumb-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 48px;
  z-index: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
  pointer-events: none;
}
.video-card .video-play-btn {
  z-index: 1;
  position: absolute;
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.75);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.video-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.video-card-cta {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}


/* ── TV Slider (JS-rendered) ────────────────── */
.tv-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-thumb-emoji {
  font-size: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.tv-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  z-index: 2;
}
.tv-card:hover .tv-play-icon {
  background: rgba(232,165,0,0.4);
  border-color: var(--blue);
  transform: translate(-50%,-50%) scale(1.1);
}
.tv-info { padding: 16px; }
.tv-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.tv-role { font-size: 12px; color: var(--gray-2); }


/* ── Written Testimonials (JS-rendered) ─────── */
.t-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-1);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.t-author-info { display: flex; flex-direction: column; gap: 3px; }
.t-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); }
.t-role { font-size: 12px; color: var(--gray-2); }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.t-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }


/* ── Video Modal Placeholder ────────────────── */
.modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 40px;
  text-align: center;
  color: var(--gray-1);
  min-height: 280px;
}
.modal-placeholder-icon { font-size: 64px; }
.modal-placeholder h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.modal-placeholder p { font-size: 15px; color: var(--gray-1); }
.modal-placeholder small { font-size: 12px; color: var(--gray-2); }


/* ── Loader fade-out ────────────────────────── */
#loader {
  transition: opacity 0.5s var(--ease-smooth);
}

/* Hero desc — two paragraph layout */
.hero-desc p {
  margin-bottom: 14px;
}
.hero-desc p:last-child {
  margin-bottom: 0;
}
.hero-desc-sub {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.75;
}
.hero-desc-sub strong {
  color: var(--gray-1);
  font-weight: 600;
}

/* ─── Hero load animations (fire on page load, not scroll) ───
   ha-1 to ha-6 stagger in after the loader disappears (1.8s)  */
@keyframes haFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes haFadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}

.ha-1 { animation: haFadeUp   0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.8s; opacity: 0; }
.ha-2 { animation: haFadeUp   0.7s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.9s; opacity: 0; }
.ha-3 { animation: haFadeUp   0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 1.05s; opacity: 0; }
.ha-4 { animation: haFadeUp   0.6s cubic-bezier(.22,1,.36,1) both; animation-delay: 1.2s; opacity: 0; }
.ha-5 { animation: haFadeUp   0.5s cubic-bezier(.22,1,.36,1) both; animation-delay: 1.35s; opacity: 0; }
.ha-6 { animation: haFadeRight 0.8s cubic-bezier(.22,1,.36,1) both; animation-delay: 0.95s; opacity: 0; }

/* desc sub-paragraph tighter */
.hero-desc p      { margin-bottom: 10px; font-size: 14px; }
.hero-desc p:last-child { margin-bottom: 0; }
.hero-desc-sub    { font-size: 13px !important; color: var(--gray-2); line-height: 1.65; }
.hero-desc-sub strong { color: var(--gray-1); font-weight: 600; }

/* ─── Logo image (replaces TH badge) ─── */
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

/* Loader logo image */
.loader-logo img,
img.loader-logo {
  width: 90px !important;
  height: 90px !important;
  border-radius: 20px !important;
  object-fit: cover;
  margin-bottom: 24px;
}

/* Gold gradient overrides for key elements */
.gradient-text {
  background: linear-gradient(135deg, #F5C842 0%, #E8A500 50%, #C8780A 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Progress bar gold */
.progress-fill,
.uc-progress-fill {
  background: linear-gradient(90deg, #E8A500, #F5C842) !important;
}

/* Btn primary — gold */
.btn-primary {
  background: linear-gradient(135deg, #E8A500 0%, #C8780A 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F5C842 0%, #E8A500 100%) !important;
  box-shadow: 0 0 32px rgba(232,165,0,0.5) !important;
}

/* Glow button */
.btn-glow {
  box-shadow: 0 0 24px rgba(232,165,0,0.35) !important;
}

/* Section eyebrow gold */

/* Nav CTA */
.btn-nav-cta {
  background: linear-gradient(135deg, #E8A500, #C8780A) !important;
  color: #000 !important;
  font-weight: 700 !important;
}

/* Selling fast tag */
.uc-selling, .selling-tag { color: #E8A500 !important; }

/* Live dot */
.event-live-badge { color: #E8A500 !important; }
.live-dot-pulse   { background: #E8A500 !important; }

/* ─── Pain section additions ─── */
.pain-struggle {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  padding: 0;
  border-left: none;
  background: none;
  border-radius: 0;
  margin-bottom: 28px;
  font-style: normal;
}

.pain-reality-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8A500;
  background: rgba(232,165,0,0.1);
  border: 1px solid rgba(232,165,0,0.28);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 14px;
}
.pain-reality-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8A500;
  flex-shrink: 0;
}

/* ─── Feature List (replaces bento grid) ─── */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
  position: relative;
}
.feature-row:hover { background: rgba(232,165,0,0.04); }

/* Right column gets left border */
.feature-row:nth-child(even) { border-left: 1px solid var(--border); }

/* Remove bottom border from last 2 rows */
.feature-row:nth-last-child(1),
.feature-row:nth-last-child(2) { border-bottom: none; }

/* Gold left accent on hover */
.feature-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #E8A500, #C8780A);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 0 3px 3px 0;
}
.feature-row:hover::before { opacity: 1; }

.feature-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #E8A500;
  letter-spacing: 0.06em;
  min-width: 22px;
  padding-top: 5px;
  opacity: 0.8;
}

.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.feature-body { flex: 1; }

.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-list { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) { border-left: none; }
  .feature-row:nth-last-child(1) { border-bottom: none; }
  .feature-row:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .feature-row { padding: 22px 20px; gap: 14px; }
  .feature-icon { font-size: 24px; }
  .feature-title { font-size: 15px; }
}

@media (max-width: 480px) {
  .feature-row { padding: 18px 16px; gap: 12px; }
  .feature-num { display: none; }
}

/* ─── Testimonials Grid (replaces carousel) ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(232,165,0,0.07);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,165,0,0.3);
  box-shadow: 0 12px 40px rgba(232,165,0,0.08);
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-stars {
  color: #E8A500;
  font-size: 13px;
  letter-spacing: 2px;
}
.testi-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8A500;
  background: rgba(232,165,0,0.1);
  border: 1px solid rgba(232,165,0,0.2);
  border-radius: 100px;
  padding: 3px 8px;
}

.testi-quote {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.7;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.testi-info { flex: 1; min-width: 0; }
.testi-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 11px;
  color: var(--gray-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-card { padding: 18px; }
  .testi-quote { font-size: 13px; }
}
@media (max-width: 480px) {
  .testi-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ─── Trader Real Image ─── */
.lone-trader-card {
  position: sticky;
  /* center vertically in viewport while sticky */
  top: calc(50vh - 210px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.trader-real-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  transition: transform 0.6s var(--ease-smooth);
}
.lone-trader-card:hover .trader-real-img {
  transform: scale(1.03);
}

.illustration-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--surface);
  font-size: 14px;
  color: var(--gray-1);
  font-style: italic;
  border-top: 1px solid var(--border);
}
.icon-sad { font-size: 18px; }

@media (max-width: 1024px) {
  .lone-trader-card { position: static; top: auto; }
  .trader-real-img  { height: 280px; }
}
@media (max-width: 768px) {
  .trader-real-img { height: 220px; }
}

/* Force upcoming event card image to show fully */
.uc-img[style*="manali-banner"] {
  background-size: contain !important;
  background-color: #0d1b2e !important;
}

/* ─── TEMPORARILY HIDDEN — enable when videos are ready ─── */
/* To show: remove display:none from these 2 rules */
#videos           { display: none; }
#testimonial-videos { display: none; }

/* ═══════════════════════════════════════════
   MENTORS SECTION — Marquee Auto-Scroll
   ═══════════════════════════════════════════ */
.section-mentors { padding: var(--section-py) 0; overflow: hidden; }

.mentors-marquee-outer {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Fade edges left + right */
.mentors-marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.mentors-fade-left  { left: 0;  background: linear-gradient(to right, var(--bg) 20%, transparent); }
.mentors-fade-right { right: 0; background: linear-gradient(to left,  var(--bg) 20%, transparent); }

.mentors-slider-wrap { overflow: hidden; }

.mentors-track {
  display: flex;
  gap: 10px;
  padding: 14px 0 18px;
  width: max-content;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.mentors-track.dragging { cursor: grabbing; }

/* Poster Card */
.mentor-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 20px;
  overflow: visible;
  cursor: default;
  transition: transform 0.35s var(--ease-smooth);
  position: relative;
  background: transparent;
  isolation: isolate;
}
.mentor-card:hover {
  transform: translateY(-8px);
}

/* Full poster image — curved corners + border + shadow */
.mentor-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 1.5px solid rgba(232,165,0,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: box-shadow 0.35s, border-color 0.35s;
}
.mentor-card:hover .mentor-poster-wrap {
  border-color: rgba(232,165,0,0.55);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.mentor-poster-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
  border-radius: 18px;
}
.mentor-card:hover .mentor-poster-img { transform: scale(1.03); }

/* Instagram pill below image */
.mentor-insta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  white-space: nowrap;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-1);
  text-decoration: none;
  transition: all 0.25s;
  box-sizing: border-box;
}
.mentor-insta-pill:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-color: transparent;
  color: white;
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
  .mentor-card { width: 210px; }
}
@media (max-width: 768px) {
  .mentor-nav-btn { display: none; }
  .mentor-card    { width: 195px; }
}
@media (max-width: 480px) {
  .mentor-card { width: 175px; }
}

/* ─── Manali Retreat 2026 — Full banner, no crop ─── */
.tl-manali-wrap {
  height: auto !important;      /* override fixed 200px */
  aspect-ratio: unset !important;
  padding: 0;
  overflow: hidden;
  line-height: 0;               /* remove gap below img */
}

.timeline-real-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;          /* full image, no crop */
  border-radius: var(--r-md) var(--r-md) 0 0;
  transition: transform 0.5s var(--ease-smooth);
}
.timeline-card:hover .timeline-real-img {
  transform: scale(1.02);
}

/* Responsive — image stays full-width, height auto on all screens */
@media (max-width: 1024px) {
  .tl-manali-wrap { height: auto !important; }
  .timeline-real-img { border-radius: var(--r-sm) var(--r-sm) 0 0; }
}
@media (max-width: 768px) {
  .timeline-real-img { border-radius: 10px 10px 0 0; }
}

/* ─── Upcoming Event Card — Real Banner Image ─── */
.uc-img-real {
  height: auto !important;
  aspect-ratio: unset !important;
  padding: 0;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.uc-real-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: transform 0.5s var(--ease-smooth);
}
.uc-card:hover .uc-real-img { transform: scale(1.02); }
.uc-img-real .uc-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.1) 100%);
}

/* ─── Mentor arrow buttons ─── */
.mentor-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(232,165,0,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}
#mentorPrev { left: 12px; }
#mentorNext { right: 12px; }
.mentor-arrow:hover {
  background: rgba(232,165,0,0.15);
  border-color: #E8A500;
  color: #E8A500;
  transform: translateY(-50%) scale(1.08);
}
.mentor-arrow:active { transform: translateY(-50%) scale(0.95); }

@media (max-width: 768px) {
  .mentor-arrow { width: 32px; height: 32px; }
  #mentorPrev { left: 6px; }
  #mentorNext { right: 6px; }
}

/* ═══════════════════════════════════════════
   FUNDED CERTIFICATES SECTION
   ═══════════════════════════════════════════ */
.section-certs {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.cert-row-wrap {
  position: relative;
  overflow: hidden;
}

.cert-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.cert-fade-left  { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.cert-fade-right { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.cert-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 8px 0;
  will-change: transform;
}

/* Certificate card */
.cert-card {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(232,165,0,0.15);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.cert-card:hover {
  border-color: rgba(232,165,0,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 16px rgba(232,165,0,0.08);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}
.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.cert-card:hover .cert-img { transform: scale(1.05); }

/* Responsive */
@media (max-width: 768px) {
  .cert-card { width: 220px; height: 156px; border-radius: 10px; }
  .cert-fade  { width: 60px; }
}
@media (max-width: 480px) {
  .cert-card { width: 180px; height: 128px; }
}

/* ─── Sticky Widget Payment Icons ─── */
.widget-payment-icons {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.payment-label {
  font-size: 10px;
  color: var(--gray-2);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  margin-right: 2px;
}

.pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.pay-icon-visa  { background: #1a1f71; }
.pay-icon-mc    { background: #111; }
.pay-icon-gpay  { background: #111; }
.pay-icon-apay  { background: #111; }
.pay-icon-pp    { background: #003087; }
.pay-icon-btc   { background: rgba(247,147,26,0.15); border-color: rgba(247,147,26,0.4); }
.pay-icon-eth   { background: rgba(98,126,234,0.15); border-color: rgba(98,126,234,0.4); }
.pay-icon-usdt  { background: rgba(38,161,123,0.15); border-color: rgba(38,161,123,0.4); }
.crypto-sym {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.pay-icon-btc  .crypto-sym { color: #F7931A; }
.pay-icon-eth  .crypto-sym { color: #627EEA; }
.pay-icon-usdt .crypto-sym { color: #26A17B; }

/* ─── Filling Fast badge — top right corner ─── */
.uc-badge-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(239,68,68,0.92);
  border-radius: var(--r-xl);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(239,68,68,0.4);
}

/* bring title closer to image */
.uc-img-real + .uc-body,
.uc-card .uc-body { padding-top: 16px; }
