/* ═══════════════════════════════════════════════════════════
   GLOBAL.CSS — Prop Firm Expo Design System
   Shared across all pages. Page-specific styles are in
   home.css, page.css, blog.css
═══════════════════════════════════════════════════════════ */

* {
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --gold:         #C9A84C;
  --gold-light:   #F0D98F;
  --gold-glow:    rgba(201,168,76,0.22);
  --gold-subtle:  rgba(201,168,76,0.06);
  --white:        #fff;
  --gray-300:     #c4c1c2;
  --gray-500:     #888;
  --bg:           #000;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --radius:       16px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --tr:           0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:        80px;
  --purple:       #8B71E8;
  --purple-light: #B49FF5;
  --purple-glow:  rgba(139,113,232,0.2);
  --purple-subtle:rgba(139,113,232,0.07);

  /* Semantic text / surface tokens */
  --text-primary:   rgba(255,255,255,1);
  --text-secondary: rgba(255,255,255,0.62);
  --text-muted:     rgba(255,255,255,0.42);
  --text-subtle:    rgba(255,255,255,0.28);
  --border-soft:    rgba(255,255,255,0.1);
  --border-softer:  rgba(255,255,255,0.05);
  --overlay-bg:     rgba(0,0,0,0.65);
  --nav-bg:         rgba(0,0,0,0.15);
  --nav-bg-scroll:  rgba(0,0,0,0.88);
  --card-bg:        rgba(0,0,0,0.4);
  --footer-bg:      #030303;
}

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   GRADIENT TEXT UTILITIES
═══════════════════════════════════════════════════════════ */
.tg-white {
  background: linear-gradient(180deg, #fdfdfd 2%, #fff 37%, #cecece 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tg-label {
  background: linear-gradient(165deg, #9a9c9b 5%, #f4f4f4 17%, #7a7a7a 33%, #bebebe 67%, #353535 87%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tg-hero {
  background: linear-gradient(19deg, #898585 7%, #ffffff 44%, #dbdddc 87%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tg-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #F0D98F 50%, #C9A84C 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tg-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 9999; transition: width 0.08s linear; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   BUTTON SYSTEM
═══════════════════════════════════════════════════════════ */
.btn-liquid {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; border-radius: 9999px;
  background: linear-gradient(180deg, #f8f9fa 0%, #e2e4e8 100%);
  box-shadow: 0 0 4px rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  color: #000; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  text-decoration: none; padding: 0 24px; white-space: nowrap;
  transition: transform var(--tr), box-shadow var(--tr);
}
.btn-liquid::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 42%;
  background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, transparent 100%);
  border-radius: 9999px 9999px 0 0;
}
.btn-liquid::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform 0.55s var(--ease); border-radius: 9999px;
}
.btn-liquid:hover::after { transform: translateX(120%); }
.btn-liquid:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,255,255,0.18); }
.btn-liquid:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, #B8902A 0%, #E8C97E 50%, #B8902A 100%);
  background-size: 200% 100%;
  color: #000; font-weight: 700;
  box-shadow: 0 0 24px var(--gold-glow);
  transition: transform var(--tr), box-shadow var(--tr), background-position 0.4s var(--ease);
}
.btn-gold:hover { box-shadow: 0 6px 36px rgba(201,168,76,0.45); background-position: 100% 0; }

.btn-outline {
  display: inline-flex; align-items: center; height: 44px;
  border: 1px solid var(--text-subtle); border-radius: 9999px;
  padding: 0 24px; font-size: 14px; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.btn-outline:hover { border-color: var(--text-muted); color: var(--white); background: var(--glass); }

/* ═══════════════════════════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════════════════════════ */
.section-label { display: flex; align-items: center; gap: 20px; width: 100%; }
.section-label-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.section-label-text {
  font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   ICON CIRCLE
═══════════════════════════════════════════════════════════ */
.icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 9999px;
  background: var(--border-softer); border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.06); flex-shrink: 0;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.feature-item:hover .icon-circle {
  background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.25);
  box-shadow: inset 0 0 14px rgba(201,168,76,0.08), 0 0 20px rgba(201,168,76,0.08);
}

/* ═══════════════════════════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════════════════════════ */
.glass-card {
  border-radius: var(--radius); border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, var(--glass) 0%, transparent 100%);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.02); overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.18); transform: translateY(-4px);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.04), 0 12px 48px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════════════════
   POWERED BADGE
═══════════════════════════════════════════════════════════ */
.powered-badge-link {
  display: inline-block;
  transition: opacity var(--tr);
}
.powered-badge-link:hover { opacity: 0.85; }
.powered-badge-img {
  height: 50px; width: auto; display: block;
}

/* ═══════════════════════════════════════════════════════════
   BLUE GRADIENT BACKGROUNDS
═══════════════════════════════════════════════════════════ */
.bg-accent { position: relative; }
.bg-accent-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none; z-index: 0;
  opacity: 0.82;
}
/* Side-glow images (hero-section-bg, venue-speakers) spread horizontally —
   center them and allow them to bleed beyond the section height */
.bg-accent-img.bg-accent-sides {
  object-fit: cover;
  object-position: center center;
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════
   GLOW BLOB
═══════════════════════════════════════════════════════════ */
.glow-blob { position: absolute; border-radius: 9999px; filter: blur(60px); pointer-events: none; }

/* ═══════════════════════════════════════════════════════════
   DOT GRID
═══════════════════════════════════════════════════════════ */
.dot-grid {
  position: absolute; inset: 0; opacity: 0.07;
  background-image: radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97); backdrop-filter: blur(24px);
  z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a {
  font-size: 22px; font-weight: 600; color: var(--white);
  text-decoration: none; transition: color var(--tr);
}
.mobile-menu-overlay a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--text-secondary);
  font-size: 32px; cursor: pointer; line-height: 1; transition: color var(--tr);
}
.mobile-close:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 100; display: flex; align-items: center; padding: 0 260px;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
  border-bottom: 1px solid transparent;
}
nav.main-nav.scrolled {
  background: var(--nav-bg-scroll);
  border-bottom-color: var(--border-softer);
  box-shadow: 0 1px 32px rgba(0,0,0,0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.5vw, 28px); }
.nav-links a {
  font-weight: 500; font-size: 14px; color: var(--text-secondary);
  text-decoration: none; transition: color var(--tr); letter-spacing: 0.01em;
  white-space: nowrap;
}
/* Auto-compact: JS toggles this when links don't fit */
nav.main-nav.nav-compact .nav-links { display: none; }
nav.main-nav.nav-compact .nav-hamburger { display: flex; }
.nav-links a:hover { color: var(--white); }
.nav-links a.btn-liquid,
.nav-links a.btn-liquid:hover,
.nav-links a.btn-gold,
.nav-links a.btn-gold:hover { color: #000; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--tr);
}

/* ═══════════════════════════════════════════════════════════
   THEME TOGGLE
═══════════════════════════════════════════════════════════ */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border-soft);
  cursor: pointer; color: var(--text-secondary);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.theme-toggle:hover { background: var(--glass); border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, var(--overlay-bg) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 260px; padding-top: 200px; flex: 1;
}
.hero-text-block { display: flex; flex-direction: column; gap: 28px; max-width: 720px; }
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 88px; line-height: 1.1; letter-spacing: -3px;
}
.hero-desc {
  font-size: 17px; line-height: 1.7; color: var(--text-secondary); max-width: 620px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Hero stats (right side) */
.hero-stats {
  position: absolute; right: 260px; top: 268px;
  display: flex; flex-direction: column; gap: 0; z-index: 3; text-align: right;
}
.stat-item { display: flex; flex-direction: column; align-items: flex-end; margin-bottom: 52px; }
.stat-number {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 56px; line-height: 1.3;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 14px; line-height: 1.55; color: var(--text-muted); max-width: 210px; }

/* Hero bottom bar */
.hero-bottom {
  position: relative; z-index: 3;
  padding: 36px 260px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: rgba(0,0,0,0.2); backdrop-filter: blur(8px);
}
.hero-event-info { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-event-chip {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-muted);
}
.hero-event-chip svg { flex-shrink: 0; }
.hero-event-chip strong { color: var(--text-primary); font-weight: 600; opacity: 0.9; }

/* Countdown */
.countdown-wrap { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 58px; }
.countdown-num {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 26px;
  color: var(--gold); line-height: 1; letter-spacing: -0.5px;
}
.countdown-lbl {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-subtle); margin-top: 5px;
}
.countdown-sep { font-size: 22px; color: var(--gold); opacity: 0.35; margin-bottom: 18px; padding: 0 2px; }

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  width: 100%; overflow: hidden;
  background: rgba(201,168,76,0.04);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 13px 0; position: relative; z-index: 10;
}
.ticker-track {
  display: flex; animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-set {
  display: flex; align-items: center; gap: 0; padding: 0;
}
.ticker-item-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 0 36px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap;
}
.t-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.6; flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   ABOUT / ORGANIZED BY
═══════════════════════════════════════════════════════════ */
.section-organized {
  background: var(--bg); position: relative; padding: 120px 0 100px; overflow: hidden;
}
.section-organized-inner { max-width: 1920px; margin: 0 auto; }
.organized-header {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center; padding: 0 260px; margin-bottom: 80px;
}
.organized-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 52px; line-height: 1.3; }
.organized-desc { font-size: 17px; line-height: 1.72; color: var(--text-secondary); max-width: 840px; }

.why-pfm-label { text-align: center; margin-bottom: 36px; padding: 0 260px; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 260px; }
.feature-item {
  display: flex; flex-direction: column; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border-softer);
  transition: border-color var(--tr), background var(--tr), transform var(--tr); cursor: default;
}
.feature-item:hover { border-color: rgba(201,168,76,0.18); background: var(--gold-subtle); transform: translateY(-3px); }
.feature-title { font-size: 15px; line-height: 1.6; color: var(--text-secondary); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   EXHIBITOR SECTION
═══════════════════════════════════════════════════════════ */
.section-exhibitor { position: relative; overflow: hidden; }
.section-exhibitor-bg { position: absolute; inset: 0; z-index: 0; }
.section-exhibitor-bg img { width: 100%; height: 100%; object-fit: cover; }
.section-exhibitor-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78), rgba(0,0,0,0.58)); z-index: 1;
}
.section-exhibitor-content { position: relative; z-index: 2; padding: 140px 0 100px; }
.exhibitor-header {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center; padding: 0 320px; margin-bottom: 60px;
}
.exhibitor-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 52px; line-height: 1.3; }
.exhibitor-desc { font-size: 17px; line-height: 1.72; color: var(--text-secondary); max-width: 580px; }

/* Benefits */
.exhibitor-benefits { padding: 0 260px; margin-bottom: 60px; }
.benefits-label {
  font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  text-align: center; margin-bottom: 24px; color: var(--text-subtle);
}
.benefits-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
  margin-bottom: 48px;
}
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: opacity var(--tr);
}
.benefit-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); background: var(--gold-subtle); }
.benefit-card:hover::before { opacity: 1; }
.benefit-number { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 40px; line-height: 1; color: rgba(201,168,76,0.18); }
.benefit-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15);
}
.benefit-title { font-weight: 700; font-size: 16px; color: var(--white); }
.benefit-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* Limited banner */
.limited-banner {
  margin: 0 260px; padding: 44px 48px;
  border-radius: 20px; border: 1px solid rgba(201,168,76,0.2);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.limited-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45), transparent);
}
.limited-text h3 {
  font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700;
  line-height: 1.3; color: var(--white); margin-bottom: 8px;
}
.limited-text p { font-size: 16px; line-height: 1.65; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   VENUE
═══════════════════════════════════════════════════════════ */
.section-venue { background: var(--bg); position: relative; overflow: hidden; }
.venue-content-top { display: flex; padding: 140px 260px 0; gap: 80px; align-items: center; }
.venue-text { flex: 1; max-width: 560px; }
.venue-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3; margin-bottom: 20px; }
.venue-desc { font-size: 17px; line-height: 1.72; color: var(--text-secondary); }
.venue-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.venue-tag {
  padding: 6px 16px; border-radius: 9999px;
  border: 1px solid var(--border-soft);
  font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em;
}
.venue-image {
  flex: 1; min-width: 400px; height: 400px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 72px rgba(0,0,0,0.6);
}
.venue-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   AGENDA
═══════════════════════════════════════════════════════════ */
.section-agenda { background: var(--bg); position: relative; overflow: hidden; padding: 120px 0; }
.agenda-header {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center; padding: 0 260px; margin-bottom: 80px;
}
.agenda-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3; }
.agenda-sub { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 480px; text-align: center; }
.agenda-timeline { max-width: 860px; margin: 0 auto; padding: 0 40px; position: relative; }
.agenda-timeline::before {
  content: ''; position: absolute; left: 140px; top: 24px; bottom: 24px; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.22) 8%, rgba(201,168,76,0.22) 92%, transparent);
}
.agenda-item { display: flex; align-items: flex-start; margin-bottom: 32px; position: relative; }
.agenda-time {
  width: 120px; flex-shrink: 0; text-align: right; padding-right: 28px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--gold); padding-top: 18px; letter-spacing: 0.02em;
}
.agenda-dot-col { display: flex; flex-direction: column; align-items: center; padding: 0 18px; flex-shrink: 0; }
.agenda-dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold); margin-top: 20px;
  box-shadow: 0 0 10px var(--gold), 0 0 4px var(--gold); flex-shrink: 0;
}
.agenda-card {
  flex: 1; padding: 18px 22px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02);
  transition: border-color var(--tr), background var(--tr);
}
.agenda-card:hover { border-color: rgba(201,168,76,0.15); background: var(--gold-subtle); }
.agenda-card-title { font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.agenda-card-sub { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.agenda-tag {
  display: inline-flex; align-items: center; height: 20px;
  padding: 0 10px; border-radius: 9999px; margin-top: 10px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.tag-k { background: rgba(201,168,76,0.14); color: var(--gold); }
.tag-p { background: rgba(100,150,255,0.12); color: rgba(140,185,255,0.9); }
.tag-n { background: rgba(80,200,120,0.12); color: rgba(130,220,160,0.9); }
.tag-m { background: rgba(190,100,255,0.12); color: rgba(215,150,255,0.9); }
.tag-e { background: rgba(255,140,80,0.12); color: rgba(255,175,130,0.9); }

/* ═══════════════════════════════════════════════════════════
   SPEAKERS
═══════════════════════════════════════════════════════════ */
.speakers-header {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; text-align: center; padding: 100px 260px 56px;
}
.speakers-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3; }
.speakers-desc { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 500px; }
.speakers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 260px; margin-bottom: 24px; }
.speakers-grid-3 { grid-template-columns: repeat(3, 1fr); }
.speaker-card {
  display: flex; align-items: flex-end; gap: 24px; padding: 36px;
  position: relative; overflow: hidden; cursor: pointer;
}
.speaker-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--tr); pointer-events: none;
}
.speaker-card:hover::after { opacity: 1; }
.speaker-card:hover { border-color: rgba(201,168,76,0.18); }
.speaker-info { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.speaker-name { font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--white); }
.speaker-role { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.speaker-tba {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 9999px;
  background: rgba(201,168,76,0.09); border: 1px solid rgba(201,168,76,0.18);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-top: 8px; width: fit-content;
}
.speaker-twitter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--border-softer); border: 1px solid rgba(255,255,255,0.09);
  transition: background var(--tr), border-color var(--tr);
  text-decoration: none;
}
.speaker-twitter:hover { background: var(--border-soft); border-color: rgba(255,255,255,0.2); }
.speaker-twitter img { width: 26px; height: 26px; object-fit: contain; }
.speaker-photo {
  width: 140px; height: 140px; border-radius: 14px; overflow: hidden;
  flex-shrink: 0; background: var(--glass); border: 1px solid rgba(255,255,255,0.07);
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.speakers-cta { text-align: center; padding: 8px 260px 60px; }
.speakers-cta p { font-size: 14px; color: var(--text-subtle); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════
   JOIN SECTION
═══════════════════════════════════════════════════════════ */
.section-join { position: relative; padding: 160px 96px 100px; overflow: hidden; }
.section-join-bg { position: absolute; inset: 0; z-index: 0; }
.section-join-bg img { width: 100%; height: 100%; object-fit: cover; }
.section-join-overlay { position: absolute; inset: 0; background: var(--overlay-bg); z-index: 1; }
.join-content { position: relative; z-index: 2; }
.join-header { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; margin-bottom: 56px; }
.join-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 52px; line-height: 1.3; }
.join-desc { font-size: 17px; line-height: 1.65; color: var(--text-secondary); max-width: 480px; }
.join-cards { display: flex; gap: 20px; max-width: 1160px; margin: 0 auto; }
.join-card {
  flex: 1; padding: 40px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: var(--card-bg); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.join-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.join-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.join-card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 28px; color: var(--white); margin-bottom: 12px; }
.join-card-desc { font-size: 15px; line-height: 1.68; color: var(--text-muted); margin-bottom: 32px; flex: 1; }

/* Email form */
.email-form { display: flex; flex-direction: column; gap: 10px; }
.email-row { display: flex; gap: 8px; }
.email-input {
  flex: 1; height: 44px; border-radius: 9999px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  padding: 0 20px; font-size: 14px; color: var(--white); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color var(--tr), background var(--tr);
}
.email-input::placeholder { color: var(--text-subtle); }
.email-input:focus { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.09); }
.email-fine { font-size: 11px; color: var(--text-subtle); padding-left: 14px; }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--footer-bg); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 68px 260px 40px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 18px; display: block; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: var(--text-subtle); max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-soft); color: var(--text-muted);
  text-decoration: none; font-size: 12px; font-weight: 700;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-subtle); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-muted);
  text-decoration: none; margin-bottom: 12px; transition: color var(--tr);
}
.footer-col a:hover { color: var(--white); }
.footer-divider { height: 1px; background: var(--border-softer); margin-bottom: 28px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-subtle); }
.footer-links-b { display: flex; gap: 28px; }
.footer-links-b a { font-size: 12px; color: var(--text-subtle); text-decoration: none; transition: color var(--tr); }
.footer-links-b a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   PURPLE SECTION OVERRIDES (About / Prop Firm Match)
═══════════════════════════════════════════════════════════ */
.section-organized .feature-item:hover {
  border-color: rgba(139,113,232,0.25); background: var(--purple-subtle); transform: translateY(-3px);
}
.section-organized .feature-item:hover .icon-circle {
  background: rgba(139,113,232,0.12); border-color: rgba(139,113,232,0.3);
  box-shadow: inset 0 0 14px rgba(139,113,232,0.1), 0 0 20px rgba(139,113,232,0.1);
}

/* ═══════════════════════════════════════════════════════════
   METRICS ROW (About section)
═══════════════════════════════════════════════════════════ */
.metrics-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(139,113,232,0.15); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(139,113,232,0.2); margin: 0 260px 80px;
}
.metric-item {
  background: rgba(0,0,0,0.6); backdrop-filter: blur(20px);
  padding: 36px 32px; text-align: center; position: relative;
  transition: background var(--tr);
}
.metric-item:hover { background: var(--purple-subtle); }
.metric-item::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0; transition: opacity var(--tr);
}
.metric-item:hover::after { opacity: 1; }
.metric-num {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.metric-label { font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL REACH (About section)
═══════════════════════════════════════════════════════════ */
.social-reach { margin: 0 260px 60px; }
.social-reach-header { text-align: center; margin-bottom: 28px; }
.social-featured-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;
}
.social-featured-card {
  display: flex; align-items: center; gap: 22px; padding: 28px 32px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,113,232,0.1) 0%, rgba(139,113,232,0.03) 100%);
  border: 1px solid rgba(139,113,232,0.2); transition: all var(--tr); position: relative; overflow: hidden;
}
.social-featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,113,232,0.5), transparent);
}
.social-featured-card:hover { border-color: rgba(139,113,232,0.4); transform: translateY(-3px); background: linear-gradient(135deg, rgba(139,113,232,0.15) 0%, rgba(139,113,232,0.05) 100%); }
.social-feat-icon { width: 52px; height: 52px; flex-shrink: 0; }
.social-feat-count {
  font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; line-height: 1.3;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c96c 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.social-feat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 5px; }
.social-channels { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.social-ch-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--tr); text-align: center; cursor: default;
}
.social-ch-card:hover { background: rgba(139,113,232,0.08); border-color: rgba(139,113,232,0.25); transform: translateY(-3px); }
.social-ch-icon { width: 40px; height: 40px; }
.social-ch-count {
  font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c96c 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.social-ch-name { font-size: 10px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════════════════════
   AGENDA — Words of Rizdom Live
═══════════════════════════════════════════════════════════ */
.wor-hero {
  margin: 0 260px 40px;
  padding: 48px 56px;
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,0.25);
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(0,0,0,0.4) 60%, rgba(201,168,76,0.04) 100%);
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.wor-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.wor-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.wor-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 9999px; margin-bottom: 16px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
}
.wor-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 6px var(--gold); animation: pulse-dot 1.5s ease-in-out infinite;
}
.wor-title {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 36px; line-height: 1.3;
  margin-bottom: 10px;
}
.wor-sub { font-size: 15px; color: var(--text-secondary); line-height: 1.6; max-width: 480px; }
.wor-host {
  flex-shrink: 0; text-align: center;
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.3);
  min-width: 200px;
}
.wor-host-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-subtle); margin-bottom: 8px; }
.wor-host-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); }
.wor-host-title { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.wor-host-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid rgba(201,168,76,0.4); box-shadow: 0 0 24px rgba(201,168,76,0.15); margin-bottom: 14px; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Stage cards */
.stage-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 0 260px 60px; }
.stage-card {
  padding: 36px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  position: relative; overflow: hidden;
  transition: border-color var(--tr), background var(--tr);
}
.stage-card:hover { border-color: rgba(201,168,76,0.15); background: var(--gold-subtle); }
.stage-card-main { border-color: rgba(201,168,76,0.18); background: rgba(201,168,76,0.04); }
.stage-card-main:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.07); }
.stage-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.stage-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px; color: var(--white); margin-bottom: 16px; }
.stage-sessions { display: flex; flex-direction: column; gap: 10px; }
.stage-session {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
}
.stage-session-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex-shrink: 0;
}

/* Session type tags */
.session-types-wrap { margin: 0 260px; text-align: center; margin-top: 60px; }
.session-types-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 20px; }
.session-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.session-tag {
  padding: 8px 18px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: border-color var(--tr), color var(--tr);
}
.session-tag:hover { border-color: rgba(201,168,76,0.25); color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO (smaller, no video — for /attend, /exhibit, etc.)
═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 180px 260px 80px; overflow: hidden;
  background: var(--bg);
}
.page-hero .dot-grid { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 56px; line-height: 1.3; letter-spacing: -2px; margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 17px; line-height: 1.72; color: var(--text-secondary); max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.faq-section { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.faq-item { border-bottom: 1px solid var(--border-softer); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 24px 0; background: none; border: none;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--white); cursor: pointer; text-align: left;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { flex-shrink: 0; transition: transform var(--tr); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 24px; font-size: 15px; line-height: 1.72; color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   TIER / PRICING CARDS (Exhibit page)
═══════════════════════════════════════════════════════════ */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tier-card {
  padding: 36px; border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: var(--glass); display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
}
.tier-card:hover { border-color: rgba(201,168,76,0.18); transform: translateY(-4px); background: var(--gold-subtle); }
.tier-card.tier-featured { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.tier-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px; }
.tier-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.tier-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.6; flex-shrink: 0; margin-top: 7px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1400px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  nav.main-nav, .hero-content, .hero-bottom,
  .organized-header, .features-grid,
  .exhibitor-header, .exhibitor-benefits,
  .venue-content-top, .speakers-header, .speakers-grid, .speakers-cta,
  .agenda-header, .session-types-wrap, footer { padding-left: 40px; padding-right: 40px; }
  .hero-stats { right: 40px; }
  .exhibitor-header { padding-left: 80px; padding-right: 80px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .metrics-row { margin-left: 40px; margin-right: 40px; }
  .social-reach { margin-left: 40px; margin-right: 40px; }
  .limited-banner { margin-left: 40px; margin-right: 40px; }
  .wor-hero { margin-left: 40px; margin-right: 40px; }
  .stage-cards { margin-left: 40px; margin-right: 40px; }
  .page-hero { padding: 180px 40px 80px; }
}

/* ═══════════════════════════════════════════════════════════
   INLINE-GRID UTILITY CLASSES
   Used instead of inline style="grid-template-columns:…" so
   media-query overrides can take effect.
═══════════════════════════════════════════════════════════ */
/* 3-column benefit/speaker grid (london-2026 event overview, speakers page) */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* 4-column glass-card grid (attend page exhibitor placeholders) */
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 54px; letter-spacing: -2px; }
  .hero-stats { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .speakers-grid, .speakers-grid-3 { grid-template-columns: 1fr; }
  .join-cards { flex-direction: column; }
  .venue-content-top { flex-direction: column; gap: 40px; }
  .venue-image { width: 100%; min-width: 0; height: 280px; }
  .venue-text { max-width: 100%; }
  .limited-banner { flex-direction: column; align-items: flex-start; margin-left: 24px; margin-right: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-join { padding-left: 24px; padding-right: 24px; }
  .metrics-row { grid-template-columns: 1fr 1fr; margin-left: 24px; margin-right: 24px; }
  .social-reach { margin-left: 24px; margin-right: 24px; }
  .social-channels { grid-template-columns: repeat(3, 1fr); }
  .wor-hero { flex-direction: column; margin-left: 24px; margin-right: 24px; padding: 32px; }
  .stage-cards { grid-template-columns: 1fr; margin-left: 24px; margin-right: 24px; }
  .session-types-wrap { margin-left: 24px; margin-right: 24px; }
  .page-hero-title { font-size: 44px; }
  /* Inline-grid utility overrides */
  .grid-3col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 600px
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  nav.main-nav, .hero-content, .hero-bottom { padding-left: 20px; padding-right: 20px; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
  .organized-heading, .exhibitor-heading, .venue-heading,
  .speakers-heading, .join-heading, .agenda-heading { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .why-pfm-label { padding: 0 20px; }
  .organized-header, .exhibitor-header { padding: 0 20px; }
  .exhibitor-benefits { padding: 0 20px; }
  .limited-banner { margin: 0 20px; padding: 28px 24px; }
  .venue-content-top { padding: 100px 20px 0; }
  .speakers-header { padding: 80px 20px 40px; }
  .speakers-grid { padding: 0 20px; }
  .speaker-card { padding: 24px; gap: 16px; }
  .speaker-photo { width: 100px; height: 100px; border-radius: 12px; }
  .speaker-name { font-size: 16px; }
  .speaker-twitter { width: 40px; height: 40px; }
  .speaker-twitter img { width: 20px; height: 20px; }
  .speakers-cta { padding: 8px 20px 48px; }
  .agenda-header { padding: 0 20px; }
  .metrics-row { grid-template-columns: 1fr 1fr; margin: 0 20px 60px; }
  .metric-num { font-size: 36px; }
  /* Inline-grid utility overrides */
  .grid-3col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: 1fr; }
  /* Tier grid */
  .tier-grid { grid-template-columns: 1fr; }
  /* Social channels collapse to 2 columns on small screens */
  .social-channels { grid-template-columns: repeat(2, 1fr); }
  /* Join cards safe padding */
  .join-card { padding: 28px 24px; }
  .social-reach { margin: 0 20px 40px; }
  .social-featured-row { grid-template-columns: 1fr; }
  .social-featured-card { padding: 22px 24px; gap: 16px; }
  .social-feat-count { font-size: 28px; }
  .wor-hero { margin: 0 20px 40px; padding: 28px 24px; }
  .wor-title { font-size: 28px; }
  .stage-cards { margin: 0 20px; }
  .session-types-wrap { margin: 40px 20px 0; }
  .section-join { padding: 100px 20px 80px; }
  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: 140px 20px 60px; }
  .page-hero-title { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
═══════════════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:             #F8F7F4;
  --white:          #1A1A1A;
  --gray-300:       #4A4A4A;
  --gray-500:       #6B6B6B;
  --glass:          rgba(0,0,0,0.03);
  --glass-border:   rgba(0,0,0,0.08);
  --gold:           #A68A2E;
  --gold-light:     #C9A84C;
  --gold-glow:      rgba(166,138,46,0.15);
  --gold-subtle:    rgba(166,138,46,0.05);
  --purple:         #6B52C9;
  --purple-light:   #8B71E8;
  --purple-glow:    rgba(107,82,201,0.15);
  --purple-subtle:  rgba(107,82,201,0.05);
  --text-primary:   rgba(26,26,26,1);
  --text-secondary: rgba(26,26,26,0.68);
  --text-muted:     rgba(26,26,26,0.48);
  --text-subtle:    rgba(26,26,26,0.32);
  --border-soft:    rgba(0,0,0,0.1);
  --border-softer:  rgba(0,0,0,0.04);
  --overlay-bg:     rgba(248,247,244,0.65);
  --nav-bg:         rgba(248,247,244,0.15);
  --nav-bg-scroll:  rgba(248,247,244,0.92);
  --card-bg:        rgba(248,247,244,0.6);
  --footer-bg:      #EFEDE8;
}

/* Gradient text — light mode */
[data-theme="light"] .tg-white {
  background: linear-gradient(180deg, #1a1a1a 2%, #2a2a2a 37%, #4a4a4a 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .tg-hero {
  background: linear-gradient(19deg, #3a3a3a 7%, #1a1a1a 44%, #2a2a2a 87%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .tg-label {
  background: linear-gradient(165deg, #5a5a5a 5%, #2a2a2a 17%, #6a6a6a 33%, #3a3a3a 67%, #7a7a7a 87%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Nav — light mode */
[data-theme="light"] nav.main-nav.scrolled {
  box-shadow: 0 1px 32px rgba(0,0,0,0.08);
}
[data-theme="light"] .nav-hamburger span {
  background: var(--white);
}

/* Mobile menu — light mode */
[data-theme="light"] .mobile-menu-overlay {
  background: rgba(248,247,244,0.97);
}
[data-theme="light"] .mobile-close {
  color: var(--text-secondary);
}

/* Dot grid — light mode */
[data-theme="light"] .dot-grid {
  background-image: radial-gradient(circle, rgba(0,0,0,0.25) 1px, transparent 1px);
}

/* Hero overlay — light mode */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(to bottom, rgba(248,247,244,0.25) 0%, rgba(248,247,244,0.75) 100%);
}
[data-theme="light"] .hero-bottom {
  border-top-color: rgba(0,0,0,0.07);
  background: rgba(248,247,244,0.4);
}
[data-theme="light"] .stat-number {
  background: linear-gradient(180deg, #1a1a1a 0%, rgba(26,26,26,0.6) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Section label line — light mode */
[data-theme="light"] .section-label-line {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
}

/* Benefit card — light mode */
[data-theme="light"] .benefit-card {
  border-color: rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}

/* Agenda card — light mode */
[data-theme="light"] .agenda-card {
  border-color: rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}

/* Join card — light mode */
[data-theme="light"] .join-card::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

/* Email input — light mode */
[data-theme="light"] .email-input {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .email-input:focus {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.06);
}

/* Footer — light mode */
[data-theme="light"] footer {
  border-top-color: rgba(0,0,0,0.06);
}

/* Glass card shadows — light mode */
[data-theme="light"] .glass-card {
  box-shadow: inset 0 0 20px rgba(0,0,0,0.01);
}
[data-theme="light"] .glass-card:hover {
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02), 0 12px 48px rgba(0,0,0,0.08);
}

/* Venue image — light mode */
[data-theme="light"] .venue-image {
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 24px 72px rgba(0,0,0,0.1);
}

/* Speaker twitter / photo — light mode */
[data-theme="light"] .speaker-twitter {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .speaker-twitter:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .speaker-photo {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

/* Stage card — light mode */
[data-theme="light"] .stage-card {
  border-color: rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}

/* Social channel card — light mode */
[data-theme="light"] .social-ch-card {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

/* Wor host — light mode */
[data-theme="light"] .wor-host {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

/* Metrics — light mode */
[data-theme="light"] .metric-item {
  background: rgba(248,247,244,0.85);
}

/* Ticker — light mode */
[data-theme="light"] .ticker-wrap {
  background: rgba(166,138,46,0.04);
  border-top-color: rgba(166,138,46,0.12);
  border-bottom-color: rgba(166,138,46,0.12);
}

/* Buttons — light mode */
[data-theme="light"] .btn-liquid {
  background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
}
[data-theme="light"] .btn-liquid::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}
[data-theme="light"] .btn-liquid::after {
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.2) 50%, transparent 80%);
}
[data-theme="light"] .btn-liquid:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
[data-theme="light"] .nav-links a.btn-liquid,
[data-theme="light"] .nav-links a.btn-liquid:hover,
[data-theme="light"] .nav-links a.btn-gold,
[data-theme="light"] .nav-links a.btn-gold:hover { color: #fff; }
[data-theme="light"] .btn-gold { color: #fff; }

/* Icon circle — light mode */
[data-theme="light"] .icon-circle {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

/* Back to top — light mode */
[data-theme="light"] #back-to-top {
  box-shadow: 0 4px 20px rgba(166,138,46,0.25);
}
[data-theme="light"] #back-to-top:hover {
  box-shadow: 0 8px 32px rgba(166,138,46,0.4);
}

/* Exhibitor overlay — light mode */
[data-theme="light"] .section-exhibitor-overlay {
  background: linear-gradient(to bottom, rgba(248,247,244,0.78), rgba(248,247,244,0.58));
}

/* Join overlay — light mode */
[data-theme="light"] .section-join-overlay {
  background: rgba(248,247,244,0.75);
}

/* Page-specific styles are in home.css, page.css, blog.css */
