/* ============================================
   CASHTAG AWARDS 2026 — Premium Design System
   ============================================ */

:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a10;
  --bg-card: rgba(15, 15, 24, 0.7);
  --bg-card-hover: rgba(20, 20, 32, 0.8);
  --bg-elevated: #1a1a2e;

  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;

  --accent: #7c5cfc;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 92, 252, 0.3);
  --accent-2: #00c761;
  --accent-2-glow: rgba(0, 199, 97, 0.3);
  --red: #e5484d;
  --red-glow: rgba(229, 72, 77, 0.25);
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.25);

  --font-mono: 'DM Mono', 'SF Mono', 'Fira Code', monospace;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ============================================
   GLOBAL SHADER & SECTION SHADERS
   ============================================ */
.hero-shader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Everything above shader layer */
.navbar, .hero-content,
.container, .footer, .mobile-menu {
  position: relative;
  z-index: 1;
}

.hero-scroll-indicator {
  z-index: 1;
}

/* ============================================
   ANIMATED GLOW BORDER SYSTEM
   ============================================ */
.glow-border {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--glow-angle, 0deg) at 50% 50%,
    transparent 0%,
    transparent 25%,
    rgba(124, 92, 252, 0.0) 30%,
    rgba(124, 92, 252, 0.6) 35%,
    rgba(0, 199, 97, 0.6) 40%,
    rgba(255, 215, 0, 0.4) 45%,
    rgba(124, 92, 252, 0.0) 50%,
    transparent 55%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.glow-border.glow-active::before {
  opacity: 1;
}

.glow-border.glow-active::after {
  opacity: 1;
}

/* Timeline dot glow */
.timeline-dot {
  box-shadow: 0 0 0 2px var(--accent), 0 0 20px var(--accent-glow);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: #6a48e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: var(--accent-light);
  background: rgba(124, 92, 252, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-block { width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2), var(--accent), var(--accent-light));
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  border-radius: var(--radius-sm);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; }

.btn-outline-nav {
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all 0.3s;
}

.btn-outline-nav:hover {
  border-color: var(--accent-light);
  background: rgba(124, 92, 252, 0.08);
}

.btn-primary-nav {
  font-size: 13px;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.btn-primary-nav:hover { background: #6a48e8; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a { font-size: 24px; font-weight: 600; color: var(--text-primary); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent-light); }
.mobile-menu-actions { display: flex; gap: 12px; margin-top: 16px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent-2-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-2-glow), 0 0 12px var(--accent-2-glow); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px transparent, 0 0 20px var(--accent-2-glow); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.title-line { display: block; }

.title-line:first-child {
  font-family: var(--font-body);
  font-size: 0.32em;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.title-highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2), var(--accent), var(--accent-light));
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.08em;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.stat-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator — clickable */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.hero-scroll-indicator:hover {
  color: var(--accent-light);
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: var(--text-muted);
  position: relative;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Candlestick body on the wick */
.scroll-line::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 1px;
  box-shadow: 0 0 8px var(--accent-2-glow);
  animation: candleSlide 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes candleSlide {
  0%, 100% { top: 10px; }
  50% { top: 28px; }
}

/* Animate In */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.35s; }
.animate-in:nth-child(4) { animation-delay: 0.5s; }
.animate-in:nth-child(5) { animation-delay: 0.65s; }

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

/* ============================================
   ABOUT
   ============================================ */
.about { background: transparent; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(24px);
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 252, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--accent-light);
}

.about-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   TICKER TAPE
   ============================================ */
.ticker-tape {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0;
}

.ticker-tape-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-item .ticker-change {
  font-weight: 500;
}

.ticker-up .ticker-change { color: var(--accent-2); }
.ticker-down .ticker-change { color: var(--red); }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--ticker-set-width, -50%)); }
}

/* ============================================
   SCHEDULE / TIMELINE
   ============================================ */
.schedule { background: transparent; }

.timeline { max-width: 700px; margin: 0 auto; }

.timeline-item {
  display: grid;
  grid-template-columns: 160px 40px 1fr;
  gap: 0;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.timeline-item.visible { opacity: 1; transform: translateY(0); }

.timeline-time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-2);
  text-align: right;
  padding-right: 24px;
  line-height: 14px;
}

.timeline-connector { display: flex; flex-direction: column; align-items: center; }

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), var(--border));
  min-height: 80px;
}

.timeline-item:last-child .timeline-line {
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-content { padding: 0 0 48px 24px; margin-top: -3px; }
.timeline-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.timeline-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   SPEAKERS
   ============================================ */
.speakers { background: transparent; }

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

.speaker-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.speaker-card.visible { opacity: 1; transform: translateY(0); }

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.speaker-card.speaker-featured { grid-column: span 2; grid-row: span 2; }

.speaker-img { width: 100%; aspect-ratio: 1; position: relative; }
.speaker-featured .speaker-img { aspect-ratio: auto; height: 100%; min-height: 280px; }

.speaker-info { padding: 16px 20px; }
.speaker-info h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.speaker-info p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.speaker-featured .speaker-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.speaker-featured .speaker-info h4 { font-size: 20px; }
.speaker-featured .speaker-info p { font-size: 14px; }

.speakers-more {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

/* ============================================
   AWARDS
   ============================================ */
.awards { background: transparent; position: relative; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.award-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.award-card.visible { opacity: 1; transform: translateY(0); }

.award-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.award-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.award-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 199, 97, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-2);
}

.award-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #000;
  padding: 3px 10px;
  border-radius: 100px;
}

.award-badge-red {
  background: linear-gradient(135deg, var(--red), #ff6369);
  color: #fff;
}

.award-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 16px; }

.nominees { display: flex; flex-wrap: wrap; gap: 8px; }

.nominee-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.nominee-chip:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: rgba(124, 92, 252, 0.08);
}

.nominee-chip.voted {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 12px var(--accent-glow);
}

.chip-ticker { pointer-events: none; font-family: var(--font-mono); }
.chip-vote-icon { display: flex; opacity: 0; transform: scale(0); transition: all 0.3s var(--ease-spring); }
.nominee-chip.voted .chip-vote-icon { opacity: 1; transform: scale(1); }

/* ============================================
   TICKETS
   ============================================ */
.tickets { background: transparent; }

.tickets-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.tickets-content .section-tag { margin-bottom: 16px; }
.tickets-content .section-title { text-align: left; margin-bottom: 12px; }
.tickets-content > p { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

.ticket-features { display: flex; flex-direction: column; gap: 14px; }

.ticket-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.ticket-feature svg { color: var(--accent-2); flex-shrink: 0; }

.tickets-card { perspective: 800px; }

.ticket-card-inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.ticket-card-inner:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
}

.ticket-card-top {
  padding: 36px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.08), rgba(0, 199, 97, 0.05));
}

.ticket-type { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }

.ticket-price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin: 8px 0; }

.price-currency {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent-2);
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.ticket-note { font-size: 14px; color: var(--text-muted); }

.ticket-card-divider { display: flex; align-items: center; position: relative; }

.divider-notch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  flex-shrink: 0;
}

.divider-notch.left { margin-left: -10px; }
.divider-notch.right { margin-right: -10px; }

.divider-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

.ticket-card-bottom { padding: 28px 32px 32px; }

.ticket-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.ticket-detail:last-of-type { border-bottom: none; margin-bottom: 20px; }
.detail-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.detail-value { font-family: var(--font-mono); font-size: 13px; font-weight: 400; }

/* ============================================
   SPONSORS
   ============================================ */
.sponsors { background: transparent; }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sponsor-logo {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(16px);
}

.sponsor-logo.visible { opacity: 1; transform: translateY(0); }
.sponsor-logo:hover { color: var(--text-secondary); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(10, 10, 16, 0.8);
  backdrop-filter: blur(12px);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom strong { color: var(--accent-2); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate].visible { opacity: 1; transform: translateY(0); }

.about-card:nth-child(2), .speaker-card:nth-child(2), .award-card:nth-child(2), .sponsor-logo:nth-child(2) { transition-delay: 0.08s; }
.about-card:nth-child(3), .speaker-card:nth-child(3), .award-card:nth-child(3), .sponsor-logo:nth-child(3) { transition-delay: 0.16s; }
.speaker-card:nth-child(4), .award-card:nth-child(4), .sponsor-logo:nth-child(4) { transition-delay: 0.24s; }
.speaker-card:nth-child(5), .award-card:nth-child(5), .sponsor-logo:nth-child(5) { transition-delay: 0.32s; }
.speaker-card:nth-child(6), .award-card:nth-child(6), .sponsor-logo:nth-child(6) { transition-delay: 0.4s; }
.speaker-card:nth-child(7), .award-card:nth-child(7) { transition-delay: 0.48s; }
.speaker-card:nth-child(8), .award-card:nth-child(8) { transition-delay: 0.56s; }
.speaker-card:nth-child(9), .award-card:nth-child(9) { transition-delay: 0.64s; }
.award-card:nth-child(9) { transition-delay: 0.64s; }
.award-card:nth-child(10) { transition-delay: 0.72s; }
.award-card:nth-child(11) { transition-delay: 0.8s; }
.award-card:nth-child(12) { transition-delay: 0.88s; }
.timeline-item:nth-child(2) { transition-delay: 0.1s; }
.timeline-item:nth-child(3) { transition-delay: 0.2s; }
.timeline-item:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .speaker-card.speaker-featured { grid-column: span 2; grid-row: span 1; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets-inner { grid-template-columns: 1fr; gap: 40px; }
  .tickets-content .section-title { text-align: center; }
  .tickets-content { text-align: center; }
  .ticket-features { align-items: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .section-subtitle { font-size: 16px; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero { padding: 100px 16px 60px; min-height: calc(100vh - env(safe-area-inset-bottom)); min-height: 100dvh; }
  .hero-title { font-size: clamp(40px, 12vw, 72px); margin-bottom: 16px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; gap: 12px; margin-bottom: 48px; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .hero-cta .btn-lg { padding: 14px 28px; font-size: 15px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .stat-divider { display: none; }
  .hero-scroll-indicator { display: none; }

  /* About */
  .about-card { padding: 24px; }
  .about-card h3 { font-size: 18px; }
  .about-card p { font-size: 14px; }

  /* Ticker */
  .ticker-tape { padding: 10px 0; }
  .ticker-item { font-size: 12px; }
  .ticker-tape-track { gap: 28px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 30px 1fr; }
  .timeline-time { grid-column: 1 / -1; text-align: left; padding-right: 0; padding-left: 44px; margin-bottom: -20px; }
  .timeline-content { padding-left: 20px; padding-bottom: 36px; }
  .timeline-content h3 { font-size: 17px; }
  .timeline-content p { font-size: 14px; }

  /* Speakers */
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speaker-card.speaker-featured { grid-column: span 2; }
  .speaker-featured .speaker-img { min-height: 200px; }
  .speaker-info { padding: 12px 16px; }
  .speaker-info h4 { font-size: 14px; }
  .speaker-info p { font-size: 12px; }

  /* Awards */
  .awards-grid { grid-template-columns: 1fr; }
  .award-card { padding: 20px; }
  .award-card h3 { font-size: 16px; }
  .nominee-chip { padding: 8px 12px; font-size: 12px; }

  /* Tickets */
  .tickets-inner { grid-template-columns: 1fr; gap: 32px; }
  .tickets-content .section-title { text-align: center; }
  .tickets-content { text-align: center; }
  .tickets-content > p { font-size: 15px; }
  .ticket-features { align-items: center; }
  .ticket-card-top { padding: 28px 24px; }
  .price-amount { font-size: 56px; }
  .ticket-card-bottom { padding: 20px 24px 28px; }

  /* Sponsors */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sponsor-logo { padding: 28px; font-size: 14px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 12px; }

  /* Hero */
  .hero { padding: 80px 12px 48px; }
  .hero-title { font-size: clamp(36px, 14vw, 56px); }
  .hero-badge { font-size: 11px; padding: 5px 12px; gap: 6px; }
  .title-line:first-child { font-size: 0.28em; letter-spacing: 0.2em; }
  .hero-stats { flex-direction: column; gap: 16px; }

  /* Speakers */
  .speakers-grid { grid-template-columns: 1fr; gap: 12px; }
  .speaker-card.speaker-featured { grid-column: span 1; grid-row: span 1; }
  .speaker-featured .speaker-img { aspect-ratio: 16/9; height: auto; min-height: unset; }
  .speaker-featured .speaker-info { position: relative; background: none; padding: 12px 16px; }
  .speaker-featured .speaker-info h4 { font-size: 16px; }
  .speaker-featured .speaker-info p { font-size: 13px; }

  /* Awards */
  .award-card { padding: 16px; }
  .award-icon { width: 36px; height: 36px; }
  .nominees { gap: 6px; }

  /* Tickets */
  .ticket-card-top { padding: 24px 16px; }
  .price-amount { font-size: 48px; }
  .price-currency { font-size: 22px; }
  .ticket-card-bottom { padding: 16px 16px 24px; }
  .ticket-feature { font-size: 14px; }

  /* Sponsors */
  .sponsors-grid { grid-template-columns: 1fr; }
  .sponsor-logo { padding: 24px; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 24px; }

  /* Mobile menu */
  .mobile-menu a { font-size: 20px; }
  .mobile-menu-actions { flex-direction: column; gap: 12px; }
  .mobile-menu-actions .btn { width: 200px; }
}

/* ============================================
   TOUCH DEVICE ADJUSTMENTS
   ============================================ */
@media (hover: none) {
  .about-card:hover,
  .speaker-card:hover,
  .award-card:hover,
  .sponsor-logo:hover,
  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
    box-shadow: none;
  }
  .nominee-chip { min-height: 44px; }
  .btn { min-height: 48px; }
  .mobile-menu a { padding: 8px 0; }
}
