@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a1150;
  --purple: #6c3ce0;
  --orange: #e8622a;
  --blue: #3b82f6;
  --gold: #f5a623;
  --pink: #e040a0;
  --bg: #f8f6ff;
  --card-bg: rgba(255,255,255,0.85);
  --text: #1e1b4b;
  --text-light: #6b7280;
  --gradient-cta: linear-gradient(135deg, #6c3ce0, #e040a0, #e8622a);
  --gradient-price: linear-gradient(135deg, #6c3ce0, #e040a0);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* Animated BG */
.page-bg { position: fixed; inset: 0; z-index: -1; background: linear-gradient(135deg, #ede7ff 0%, #f8f6ff 40%, #fff0eb 100%); }
.page-bg::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108,60,224,0.08) 0%, transparent 70%); top: -200px; right: -100px; animation: float 20s infinite ease-in-out; }
.page-bg::after { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(224,64,160,0.06) 0%, transparent 70%); bottom: -150px; left: -100px; animation: float 25s infinite ease-in-out reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-40px); } }

/* Topbar */
.topbar { background: var(--navy); color: #fff; text-align: center; padding: 10px 16px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.topbar span { color: var(--gold); }

/* Nav */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(108,60,224,0.1); padding: 12px 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 20px; font-weight: 900; color: var(--navy); text-decoration: none; }
.logo em { font-style: italic; color: var(--orange); font-family: 'Playfair Display', serif; }
.nav-cta { background: var(--gradient-cta); color: #fff; border: none; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,60,224,0.3); }

/* Ticker Tape */
.ticker-tape { background: linear-gradient(90deg, #f7c948, #fbbf24, #f59e0b); overflow: hidden; white-space: nowrap; position: relative; }
.ticker-tape::before, .ticker-tape::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.ticker-tape::before { left: 0; background: linear-gradient(90deg, #f7c948, transparent); }
.ticker-tape::after { right: 0; background: linear-gradient(90deg, transparent, #f59e0b); }
.ticker-track { display: inline-flex; animation: ticker-scroll 45s linear infinite; }
.ticker-item { display: inline-block; padding: 10px 48px; font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Stock Ticker */
.stock-ticker { background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a); overflow: hidden; white-space: nowrap; position: relative; border-top: 1px solid rgba(59,130,246,0.2); border-bottom: 1px solid rgba(59,130,246,0.2); }
.stock-ticker::before, .stock-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.stock-ticker::before { left: 0; background: linear-gradient(90deg, #0f172a, transparent); }
.stock-ticker::after { right: 0; background: linear-gradient(90deg, transparent, #0f172a); }
.stock-track { animation: ticker-scroll-reverse 50s linear infinite; }
.stock-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 36px; font-size: 13px; font-weight: 600; color: #94a3b8; border-right: 1px solid rgba(59,130,246,0.15); }
.stock-name { color: #60a5fa; font-weight: 800; letter-spacing: 0.5px; }
.stock-price { color: #e2e8f0; font-family: 'Inter', monospace; }
.stock-up { color: #22c55e; font-weight: 700; }
.stock-down { color: #ef4444; font-weight: 700; }
@keyframes ticker-scroll-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.hero { padding: 60px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(108,60,224,0.1), rgba(224,64,160,0.1)); border: 1px solid rgba(108,60,224,0.2); padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; animation: pulse-glow 3s infinite; }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(108,60,224,0.2); } 50% { box-shadow: 0 0 20px 4px rgba(108,60,224,0.15); } }
.hero-badge svg { width: 18px; height: 18px; }
.shark-tag { display: inline-block; background: linear-gradient(90deg, var(--gold), #f7c948); color: var(--navy); font-weight: 800; font-size: 14px; padding: 6px 16px; border-radius: 4px; margin-bottom: 16px; letter-spacing: 0.5px; }
.hero-title { font-size: clamp(52px, 8vw, 90px); font-weight: 900; line-height: 0.92; color: var(--navy); margin-bottom: 8px; letter-spacing: -1px; }
.hero-title .title-the { display: block; font-size: 0.35em; font-weight: 800; letter-spacing: 4px; margin-bottom: 4px; }
.hero-title .summit { font-family: 'Playfair Display', serif; font-style: italic; color: var(--orange); font-size: 0.55em; vertical-align: baseline; margin-left: 4px; letter-spacing: 0; }
.hero-tagline { font-size: 18px; font-weight: 600; color: var(--text); margin: 20px 0; border-left: 4px solid var(--orange); padding-left: 16px; line-height: 1.8; }
.hero-tagline strong { color: var(--orange); }
.hero-meta { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.meta-item svg { width: 20px; height: 20px; color: var(--purple); }

.venue-line {
  display: inline-block;
  margin-top: 16px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(135deg, #6c3ce0, #e040a0);
  background-clip: text;
  -webkit-background-clip: text;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.venue-line:hover {
  -webkit-text-fill-color: transparent;
  border-bottom-color: var(--purple);
}

.hero-right { position: relative; }
.hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(26,17,80,0.15); }
.hero-img-wrap img { width: 100%; display: block; }
.hero-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(108,60,224,0.1), transparent 50%); }
.hero-card { position: absolute; top: 20px; right: -20px; background: var(--card-bg); backdrop-filter: blur(16px); border: 1px solid rgba(108,60,224,0.15); border-radius: 16px; padding: 20px; max-width: 240px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); animation: card-float 6s ease-in-out infinite; }
@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #ede7ff, #e0e7ff); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 24px; }
.hero-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.hero-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* Stats Bar */
.stats-bar { padding: 20px 0 40px; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; background: var(--card-bg); backdrop-filter: blur(16px); border: 1px solid rgba(108,60,224,0.12); border-radius: 20px; padding: 32px 48px; box-shadow: 0 8px 32px rgba(26,17,80,0.08); }
.stat-item { flex: 1; text-align: center; padding: 8px 16px; }
.stat-number { font-size: 36px; font-weight: 900; background: linear-gradient(135deg, var(--purple), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; letter-spacing: -0.5px; }
.stat-label { font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }
.stat-divider { width: 1px; height: 56px; background: linear-gradient(180deg, transparent, rgba(108,60,224,0.25), transparent); flex-shrink: 0; }

/* 3 Pillars Row */
.pillars { padding: 0 0 40px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; background: var(--card-bg); backdrop-filter: blur(12px); border: 1px solid rgba(108,60,224,0.1); border-radius: 16px; padding: 24px; transition: transform 0.3s, box-shadow 0.3s; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(108,60,224,0.12); }
.pillar-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.pillar:nth-child(1) .pillar-icon { background: linear-gradient(135deg, #ede7ff, #c7d2fe); }
.pillar:nth-child(2) .pillar-icon { background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.pillar:nth-child(3) .pillar-icon { background: linear-gradient(135deg, #e0e7ff, #a5b4fc); }
.pillar h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--purple); margin-bottom: 4px; }
.pillar p { font-size: 13px; color: var(--text-light); }

/* CTA Banner */
.cta-banner { padding: 0 0 48px; }
.cta-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.cta-left { background: linear-gradient(135deg, var(--navy), #2d1b69); color: #fff; padding: 32px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.cta-left::before { content: ''; position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(108,60,224,0.3), transparent); top: -50px; right: -50px; border-radius: 50%; }
.cta-left .ticket-icon { font-size: 40px; margin-bottom: 8px; }
.cta-left .limited { background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.cta-left h3 { font-size: 32px; font-weight: 900; margin: 4px 0 8px; }
.cta-left p { font-size: 14px; opacity: 0.8; }
.cta-mid { background: #fff; padding: 32px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.cta-mid .apply-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-cta); color: #fff; font-weight: 800; font-size: 16px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; margin-bottom: 12px; }
.cta-mid .apply-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(108,60,224,0.35); }
.cta-mid .apply-btn svg { width: 20px; height: 20px; }
.cta-mid p { font-size: 14px; color: var(--text-light); }
.cta-right { background: linear-gradient(135deg, #f8f6ff, #fff); padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-left: 1px solid rgba(108,60,224,0.1); }
.cta-right .price-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; background: var(--gradient-price); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.cta-right .price { font-size: 48px; font-weight: 900; color: var(--navy); }
.cta-right .price-old { font-size: 20px; color: #aaa; text-decoration: line-through; margin-top: 4px; }

/* Sections Common */
.section { padding: 48px 0; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, rgba(108,60,224,0.1), rgba(224,64,160,0.08)); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-title { font-size: 36px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.section-sub { font-size: 16px; color: var(--text-light); max-width: 600px; margin-bottom: 36px; }

/* Format / Timeline */
.format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.format-card { background: #fff; border: 1px solid rgba(108,60,224,0.08); border-radius: 20px; padding: 32px; transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s cubic-bezier(.25,.8,.25,1); position: relative; overflow: hidden; }
.format-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 20px 20px 0 0; }
.format-card::after { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; border-radius: 50%; opacity: 0; transition: opacity 0.4s; }
.format-card:nth-child(1)::before { background: linear-gradient(90deg, var(--purple), #a78bfa); }
.format-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), #fb923c); }
.format-card:nth-child(3)::before { background: linear-gradient(90deg, var(--pink), #f472b6); }
.format-card:nth-child(4)::before { background: linear-gradient(90deg, var(--blue), #60a5fa); }
.format-card:nth-child(1)::after { background: radial-gradient(circle, rgba(108,60,224,0.06), transparent 70%); }
.format-card:nth-child(2)::after { background: radial-gradient(circle, rgba(232,98,42,0.06), transparent 70%); }
.format-card:nth-child(3)::after { background: radial-gradient(circle, rgba(224,64,160,0.06), transparent 70%); }
.format-card:nth-child(4)::after { background: radial-gradient(circle, rgba(59,130,246,0.06), transparent 70%); }
.format-card:hover { transform: translateY(-6px); }
.format-card:hover::after { opacity: 1; }
.format-card:nth-child(1):hover { box-shadow: 0 20px 40px rgba(108,60,224,0.15); }
.format-card:nth-child(2):hover { box-shadow: 0 20px 40px rgba(232,98,42,0.15); }
.format-card:nth-child(3):hover { box-shadow: 0 20px 40px rgba(224,64,160,0.15); }
.format-card:nth-child(4):hover { box-shadow: 0 20px 40px rgba(59,130,246,0.15); }
.format-card .fc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.format-card:nth-child(1) .fc-icon { background: linear-gradient(135deg, #ede7ff, #c7d2fe); }
.format-card:nth-child(2) .fc-icon { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.format-card:nth-child(3) .fc-icon { background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.format-card:nth-child(4) .fc-icon { background: linear-gradient(135deg, #e0f2fe, #93c5fd); }
.format-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.format-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Learn Grid */
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.learn-card { background: var(--card-bg); backdrop-filter: blur(12px); border: 1px solid rgba(108,60,224,0.08); border-radius: 16px; padding: 28px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.learn-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(108,60,224,0.12); }
.learn-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; background: linear-gradient(135deg, #ede7ff, #e0e7ff); }
.learn-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.learn-card p { font-size: 13px; color: var(--text-light); }

/* Topics */
.topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.topic-item { display: flex; align-items: flex-start; gap: 12px; background: var(--card-bg); border: 1px solid rgba(108,60,224,0.08); border-radius: 14px; padding: 20px; transition: transform 0.2s; }
.topic-item:hover { transform: translateX(6px); }
.topic-check { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; margin-top: 2px; }
.topic-item p { font-size: 15px; font-weight: 600; color: var(--navy); }

/* Q&A Section */
.qa-section { background: linear-gradient(135deg, var(--navy), #2d1b69); border-radius: 24px; padding: 48px; margin: 0 auto 48px; color: #fff; position: relative; overflow: hidden; }
.qa-section::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(108,60,224,0.2), transparent); top: -150px; right: -100px; border-radius: 50%; }
.qa-section .section-badge { background: rgba(255,255,255,0.1); color: #c7b3ff; }
.qa-section .section-title { color: #fff; }
.qa-section .section-sub { color: rgba(255,255,255,0.7); }
.qa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.qa-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; display: flex; gap: 12px; }
.qa-num { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--gradient-cta); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.qa-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.qa-item p { font-size: 13px; color: rgba(255,255,255,0.65); }

/* Event Notice */
.event-notice {
  background: linear-gradient(135deg, rgba(108,60,224,0.06), rgba(232,98,42,0.05));
  border: 1px solid rgba(108,60,224,0.15);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.event-notice-header {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.event-notice p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.event-notice ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.event-notice ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.event-notice ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}
.event-notice-highlight {
  font-style: italic;
  color: var(--purple) !important;
  font-weight: 600;
}

/* Timeline */
.timeline-section { margin-top: 12px; }
.timeline-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--pink), var(--orange));
  border-radius: 4px;
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
  display: flex;
  gap: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--purple);
  z-index: 1;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-time {
  min-width: 130px;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  padding-top: 4px;
  white-space: nowrap;
}
.timeline-content {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid rgba(108,60,224,0.08);
  border-radius: 14px;
  padding: 20px 24px;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.timeline-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.timeline-track-col h4 { margin-top: 8px; }
.timeline-track-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.track-main {
  background: rgba(108,60,224,0.1);
  color: var(--purple);
}
.track-pitch {
  background: rgba(232,98,42,0.1);
  color: var(--orange);
}
.track-all {
  background: linear-gradient(135deg, rgba(108,60,224,0.15), rgba(224,64,160,0.1));
  color: var(--purple);
}

/* Attendee Benefits */
.attendee-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(108,60,224,0.08);
  border-radius: 18px;
  padding: 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(108,60,224,0.1);
}
.benefit-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  min-width: 44px;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.benefit-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pitch Pit Section */
.pitch-pit-card {
  background: linear-gradient(135deg, rgba(232,98,42,0.04), rgba(224,64,160,0.04));
  border: 1px solid rgba(232,98,42,0.15);
  border-radius: 24px;
  padding: 48px 40px;
}
.pitch-pit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pitch-pit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(108,60,224,0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.pp-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.3;
}
.pitch-pit-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.pitch-pit-quote {
  background: linear-gradient(135deg, var(--navy), #2d1b6e);
  border-radius: 16px;
  padding: 24px 28px;
}
.pitch-pit-quote h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pitch-pit-quote p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive — New Sections */
@media (max-width: 768px) {
  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-time { min-width: unset; }
  .timeline-tracks { grid-template-columns: 1fr; }
  .pitch-pit-grid { grid-template-columns: 1fr; }
  .pitch-pit-card { padding: 28px 20px; }
  .benefit-card { flex-direction: column; gap: 12px; padding: 24px 20px; }
  .event-notice { padding: 20px; }
}

/* Who For */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.who-card { background: var(--card-bg); border: 1px solid rgba(108,60,224,0.08); border-radius: 16px; padding: 24px; text-align: center; transition: transform 0.3s; }
.who-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(108,60,224,0.1); }
.who-emoji { font-size: 36px; margin-bottom: 12px; }
.who-card h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.who-card p { font-size: 13px; color: var(--text-light); }

/* Bottom Features */
.bottom-features { padding: 0 0 48px; }
.bf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bf-card { background: var(--card-bg); border: 1px solid rgba(108,60,224,0.08); border-radius: 16px; padding: 28px; text-align: center; transition: transform 0.3s; }
.bf-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(108,60,224,0.1); }
.bf-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; }
.bf-card:nth-child(1) .bf-icon { background: linear-gradient(135deg, #ede7ff, #c7d2fe); }
.bf-card:nth-child(2) .bf-icon { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.bf-card:nth-child(3) .bf-icon { background: linear-gradient(135deg, #e0e7ff, #a5b4fc); }
.bf-card h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 4px; }
.bf-card p { font-size: 13px; color: var(--text-light); }

/* Registration Form */
.form-section { padding: 48px 0 60px; }
.form-wrapper { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.form-info h2 { font-size: 36px; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.form-info p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.form-perks { list-style: none; }
.form-perks li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; font-weight: 600; color: var(--navy); }
.form-perks li span { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.form-card { background: #fff; border: 1px solid rgba(108,60,224,0.12); border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px rgba(26,17,80,0.08); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-cta); }
.form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.form-card .form-sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: 12px; font-size: 14px; font-family: 'Inter', sans-serif; background: #fafafe; transition: border-color 0.3s, box-shadow 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,60,224,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; padding: 14px; background: var(--gradient-cta); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 800; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(108,60,224,0.3); }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* Countdown */
.countdown-bar { background: linear-gradient(135deg, var(--navy), #2d1b69); padding: 32px 0; text-align: center; color: #fff; }
.countdown-bar h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.countdown-bar h3 span { color: var(--gold); }
.countdown { display: flex; justify-content: center; gap: 20px; }
.cd-item { text-align: center; }
.cd-num { font-size: 40px; font-weight: 900; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cd-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

/* Footer */
.footer { background: var(--navy); color: #fff; padding: 40px 0 24px; text-align: center; }
.footer .logo { color: #fff; font-size: 24px; display: block; margin-bottom: 12px; }
.footer p { font-size: 13px; opacity: 0.6; }
.footer a { color: var(--gold); text-decoration: none; }

/* Success Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: #fff; border-radius: 24px; padding: 48px; text-align: center; max-width: 440px; width: 90%; position: relative; animation: modal-in 0.4s ease; }
@keyframes modal-in { from { transform: scale(0.9) translateY(20px); opacity: 0; } }
.modal .check { width: 72px; height: 72px; background: linear-gradient(135deg, #10b981, #34d399); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: #fff; }
.modal .loader-spinner { width: 64px; height: 64px; border: 5px solid rgba(168, 85, 247, 0.1); border-top-color: #a855f7; border-radius: 50%; animation: spin 1s infinite linear; margin: 0 auto 24px; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.modal button { background: var(--gradient-cta); color: #fff; border: none; padding: 12px 32px; border-radius: 50px; font-weight: 700; cursor: pointer; }

/* Scroll animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-right { order: -1; }
  .hero-card { position: relative; top: auto; right: auto; margin: -30px auto 0; }
  .hero-tagline { text-align: left; }
  .pillars-grid, .learn-grid, .who-grid, .bf-grid { grid-template-columns: 1fr; }
  .format-grid, .topics-grid, .qa-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .form-wrapper { grid-template-columns: 1fr; }
  .hero-meta { justify-content: center; }
  .qa-section { padding: 32px 20px; margin: 0 12px 48px; }
  .stats-grid { flex-wrap: wrap; padding: 24px 20px; gap: 12px; }
  .stat-divider { width: 100%; height: 1px; }
  .stat-item { flex: 1 1 40%; min-width: 120px; }
  .popup-modal { max-width: 95vw; margin: 16px; max-height: 90vh; }
  .popup-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Lead Capture Popup */
.popup-overlay { position: fixed; inset: 0; background: rgba(10,5,30,0.75); backdrop-filter: blur(8px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal { background: #fff; border-radius: 24px; padding: 40px 36px 32px; max-width: 520px; width: 100%; position: relative; box-shadow: 0 32px 80px rgba(26,17,80,0.25), 0 0 0 1px rgba(108,60,224,0.1); transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); overflow-y: auto; max-height: 92vh; }
.popup-overlay.active .popup-modal { transform: translateY(0) scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--navy); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; z-index: 2; }
.popup-close:hover { transform: rotate(90deg); background: var(--purple); }
.popup-header { text-align: center; margin-bottom: 24px; }
.popup-badge { display: inline-block; background: linear-gradient(90deg, var(--gold), #f7c948); color: var(--navy); font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 50px; letter-spacing: 1px; margin-bottom: 12px; }
.popup-title { font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.popup-title span { background: linear-gradient(135deg, var(--purple), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.popup-subtitle { font-size: 14px; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.popup-field input, .popup-field select { width: 100%; padding: 14px 16px; border: 2px solid #e8e5f0; border-radius: 12px; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--navy); background: #faf9ff; transition: border-color 0.3s, box-shadow 0.3s; outline: none; box-sizing: border-box; }
.popup-field input::placeholder { color: #a099b0; font-weight: 500; }
.popup-field select { color: #a099b0; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a099b0' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.popup-field select:valid { color: var(--navy); }
.popup-field input:focus, .popup-field select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(108,60,224,0.1); background: #fff; }
.popup-submit { width: 100%; padding: 16px; background: var(--gradient-cta); color: #fff; border: none; border-radius: 14px; font-size: 17px; font-weight: 800; font-family: 'Inter', sans-serif; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 4px; letter-spacing: 0.3px; }
.popup-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(108,60,224,0.3); }
.popup-submit:active { transform: translateY(0); }
.popup-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* Speakers Banner Section */
.speakers-banner-section {
  padding: 48px 0;
  background: transparent;
}
.speakers-banner-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(108, 60, 224, 0.12);
  box-shadow: 0 24px 64px rgba(26, 17, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.speakers-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(26, 17, 80, 0.12);
  border-color: rgba(108, 60, 224, 0.2);
}
.speakers-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.speakers-banner-card:hover .speakers-banner-img {
  transform: scale(1.015);
}

/* Speaker Credential Cards */
.speaker-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.speaker-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(108, 60, 224, 0.1);
  box-shadow: 0 8px 32px rgba(26, 17, 80, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.speaker-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6c3ce0, #e040a0, #e8622a);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(108, 60, 224, 0.15);
  border-color: rgba(108, 60, 224, 0.25);
}
.speaker-card:hover::before {
  opacity: 1;
}
.shark-tank-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a1150, #2d1b6e);
  color: #f7c948;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.speaker-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(108, 60, 224, 0.25);
}
.speaker-initials {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}
.speaker-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.speaker-role {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 14px;
}
.speaker-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.speaker-stat {
  display: inline-block;
  background: rgba(108, 60, 224, 0.08);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

/* As Seen On Trust Strip */
.seen-on-strip {
  background: linear-gradient(135deg, #1a1150, #2d1b6e);
  border-radius: 16px;
  padding: 24px 32px;
  margin: 32px auto 0;
  max-width: 620px;
  text-align: center;
}
.seen-on-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.seen-on-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.seen-on-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shark-tank-logo-text {
  color: #f7c948;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}
.seen-on-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
}
.seen-on-network {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}
.seen-on-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Speaker Bio */
.speaker-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 60px;
}

/* Credibility Stats Bar */
.credibility-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #1a1150, #2d1b6e);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
}
.cred-stat {
  flex: 1;
  text-align: center;
}
.cred-number {
  font-size: 28px;
  font-weight: 900;
  color: #f7c948;
  line-height: 1;
  margin-bottom: 4px;
}
.cred-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .credibility-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cred-stat {
    flex: 1 1 40%;
  }
  .cred-divider {
    display: none;
  }
  .seen-on-inner {
    flex-direction: column;
    gap: 8px;
  }
}

/* Why Now Section */
.why-now-section {
  padding: 60px 0 0;
}
.why-now-card {
  background: linear-gradient(135deg, #1a1150, #2d1b6e);
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.why-now-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.why-now-icon {
  font-size: 28px;
}
.why-now-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: #fff;
}
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.why-now-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.why-now-bullet {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}
.why-now-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.social-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(139, 195, 74, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  max-width: 340px;
  margin: 0 auto;
}
.social-proof-dot {
  width: 10px;
  height: 10px;
  background: #8bc34a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(139, 195, 74, 0); }
}
@media (max-width: 600px) {
  .why-now-grid {
    grid-template-columns: 1fr;
  }
  .why-now-card {
    padding: 28px 20px 24px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #111;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-main-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 8px;
}
.pricing-main-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.pricing-card-vip {
  border-color: rgba(108, 60, 224, 0.3);
  background: linear-gradient(180deg, #1e1535 0%, #1a1a1a 100%);
  padding-top: 48px;
}
.pricing-vip-label {
  position: absolute;
  top: -1px;
  right: 28px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 1px;
}
.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.pricing-tier-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.pricing-tier-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 2px;
}
.pricing-badge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price-vip {
  color: #fff;
}
.pricing-rupee {
  font-size: 32px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}
.pricing-seats {
  color: rgba(139, 195, 74, 0.85);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pricing-seats-vip {
  color: rgba(186, 140, 255, 0.85);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-check {
  color: rgba(139, 195, 74, 0.85);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-check-vip {
  color: rgba(186, 140, 255, 0.9);
}
.pricing-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.pricing-btn:hover {
  transform: translateY(-2px);
}
.pricing-btn-standard {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}
.pricing-btn-standard:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}
.pricing-btn-vip {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
}
.pricing-btn-vip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(108, 60, 224, 0.2);
}

/* Responsive — Speaker Cards & Pricing */
@media (max-width: 900px) {
  .speaker-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
@media (max-width: 520px) {
  .speaker-cards-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card {
    padding: 28px 20px 24px;
  }
  .pricing-price {
    font-size: 42px;
  }
  .pricing-rupee {
    font-size: 26px;
  }
}

/* Book Pass CTA */
.book-pass-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.book-pass-content {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(108, 60, 224, 0.12);
  box-shadow: 0 24px 64px rgba(26, 17, 80, 0.08);
}
.book-pass-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a1150, #2d1b6e);
  color: #f7c948;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.book-pass-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 12px;
}
.book-pass-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 24px;
}
.book-pass-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: inline-block;
  text-align: left;
}
.book-pass-perks li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-pass-perks li span {
  color: var(--purple);
  font-weight: 800;
  font-size: 16px;
}
.book-pass-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 30px rgba(108, 60, 224, 0.3);
}
.book-pass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(108, 60, 224, 0.4);
}
.book-pass-btn svg {
  transition: transform 0.2s ease;
}
.book-pass-btn:hover svg {
  transform: translateX(4px);
}
.book-pass-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
@media (max-width: 520px) {
  .book-pass-content {
    padding: 32px 20px;
  }
  .book-pass-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* ── Our Previous Summit ── */
.prev-summit-section {
  overflow: hidden;
}

.summit-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.summit-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: summit-scroll 80s linear infinite;
}

.summit-scroll-track:hover {
  animation-play-state: paused;
}

.summit-scroll-img {
  width: 400px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(108, 60, 224, 0.12);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.summit-scroll-img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(108, 60, 224, 0.25);
}

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

@media (max-width: 768px) {
  .summit-scroll-img {
    width: 300px;
    height: 200px;
  }
  .summit-scroll-track {
    gap: 16px;
  }
}
