:root {
    --black: #0a0a0a;
    --gray: #6b7280;
    --yellow: #becd2b;
    --green: #509236;
    --blue: #0f56cb;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #1f2937;
    --border: #e5e7eb;
    --glass-border: rgba(255,255,255,0.45);
    --glass-fill: rgba(255,255,255,0.15);
    --glass-highlight: rgba(255,255,255,0.5);
    --marquee-width: 90%; /* Change to 1200px, 90%, etc. for different widths */
    --marquee-height: 100px;
    --marquee-speed: 30s; /* Slower = higher number */
    --sponsor-logo-max-width: 160px;
    --sponsor-logo-max-height: 50px;
    --marquee-border-radius: 0px; /* Set to 20px for rounded, 0 for sharp edges */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
    opacity: 0;
    transform: translateX(-30px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
    opacity: 0;
    transform: translateX(30px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
    opacity: 0;
    transform: scale(0.9);
    }
    to {
    opacity: 1;
    transform: scale(1);
    }
}

@keyframes liquidGlow {
    0%, 100% {
    filter: hue-rotate(0deg) brightness(1);
    }
    50% {
    filter: hue-rotate(10deg) brightness(1.1);
    }
}

@keyframes float {
    0%, 100% {
    transform: translateY(0px);
    }
    50% {
    transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
    transform: translateX(-100%) rotate(25deg);
    }
    100% {
    transform: translateX(200%) rotate(25deg);
    }
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 80px;
}

.nav-logo {
  height: 52px;
  transition: transform 0.3s ease;
  animation: slideInLeft 0.8s ease;
}

.nav-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--green);
}

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

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown-btn[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 8px 0;
}

.nav-item-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: var(--blue);
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, var(--green), var(--yellow)) !important;
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(80, 146, 54, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.register-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.register-btn:hover::before {
  width: 300px;
  height: 300px;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 146, 54, 0.4);
}

.register-btn::after {
  display: none;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .nav-link::after {
    display: none;
  }

  .register-btn {
    margin: 16px 24px 0 24px !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 16px 24px !important;
  }

  /* Mobile Dropdown Styles */
  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }

  .dropdown-btn[aria-expanded="true"] + .dropdown-content {
    max-height: 300px;
    padding: 8px 0;
  }

  .dropdown-item {
    padding: 12px 48px;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background: white;
  }

  /* Disable desktop hover effects on mobile */
  .nav-item-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    padding: 0;
  }
  
  .dropdown-btn[aria-expanded="true"]:hover + .dropdown-content {
    max-height: 300px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    width: 280px;
  }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.9) 0%, 
    rgba(255, 255, 255, 1) 30%, 
    rgba(243, 244, 246, 0.8) 100%
    );
    overflow: hidden;
}

.hero-content {
    text-align: center;
    padding: 140px 32px 80px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* True Liquid Glass Countdown */
.countdown-wrap {
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease;
}

.countdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 24px 40px;
    border-radius: 100px;
    
    /* Liquid glass effect */
    background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(190, 205, 43, 0.1) 100%
    );
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    
    /* Multi-layer border effect */
    box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 8px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(15, 86, 203, 0.15),
    0 8px 32px rgba(190, 205, 43, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08);
    
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: liquidGlow 4s ease-in-out infinite;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    position: relative;
    z-index: 1;
}

.countdown-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 600;
    margin-top: 4px;
}

.logo-conference {
    max-width: 580px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.8s ease 0.2s both;
}

.logo-conference:hover {
    transform: scale(1.02) translateY(-3px);
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    display: none; /* Hidden since logo contains all info */
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero .blue {
    background: linear-gradient(135deg, var(--blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .green {
    background: linear-gradient(135deg, var(--green), #66a347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .yellow {
    background: linear-gradient(135deg, var(--yellow), #d4e02e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--green));
    color: white;
    box-shadow: 0 4px 16px rgba(190, 205, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(190, 205, 43, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--blue), #2563eb);
    color: white;
    box-shadow: 0 4px 16px rgba(15, 86, 203, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(15, 86, 203, 0.4);
}

/* Full-Width Sponsor Showcase */
.sponsor-showcase {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent;  /* Remove the gradient background */
    padding: 48px 0;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 250, 252, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(190, 205, 43, 0.2);
    border-radius: 50px;
    margin: 0 auto 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sponsor-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(190, 205, 43, 0.15);
    border-color: rgba(190, 205, 43, 0.3);
}

.sponsor-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsor-marquee-container {
    width: var(--marquee-width);
    margin: 0 auto;
    position: relative;
}

.sponsor-marquee {
    position: relative;
    width: 100%;
    height: var(--marquee-height);
    overflow: hidden;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(252, 252, 253, 0.95) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(190, 205, 43, 0.15);
    box-shadow:
            0 12px 32px rgba(0, 0, 0, 0.08),
            inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Fade edges for marquee */
.sponsor-marquee::before,
.sponsor-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sponsor-marquee::before {
    left: 0;
    background: linear-gradient(to right, 
    rgba(255, 255, 255, 0.95), 
    rgba(255, 255, 255, 0.1)
    );
}

.sponsor-marquee::after {
    right: 0;
    background: linear-gradient(to left, 
    rgba(255, 255, 255, 0.95), 
    rgba(255, 255, 255, 0.1)
    );
}

.sponsor-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: sponsorScroll var(--marquee-speed) linear infinite;
    gap: 0;
}

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

.sponsor-item {
    flex-shrink: 0;
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.sponsor-logo {
    max-width: var(--sponsor-logo-max-width);
    max-height: var(--sponsor-logo-max-height);
    object-fit: contain;
    filter: saturate(1.1) opacity(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sponsor-item:hover .sponsor-logo {
    filter: saturate(1.2) opacity(1);
    transform: scale(1.05);
}

/* Scroll indicator */
.scroll-indicator{
    position: fixed;
    bottom: calc(32px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 48px;
    border: 2px solid var(--gray);
    border-radius: 16px;
    opacity: .85;
    z-index: 20;
    pointer-events: none;           /* it's just a hint; not clickable */
    transition: opacity .25s ease, transform .25s ease;
    animation: scrollHint 1.8s ease-in-out infinite;
}
.scroll-indicator.hidden{
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    visibility: hidden;
}

/* simple bounce */
@keyframes scrollHint{
    0%,100%{ transform: translateX(-50%) translateY(0); }
    50%    { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: var(--gray);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
    80%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.scroll-indicator:hover {
    opacity: 1;
    border-color: var(--green);
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(135deg, var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Event Info Section */
.event-info {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.event-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(190, 205, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* === Keynote & Speakers (modern) === */
.keynote{
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}
.keynote-grid{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

/* Keynote text */
.keynote-badge{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 16px; border-radius:999px;
    font-weight:800; font-size:.85rem; letter-spacing:.04em;
    background:rgba(15,86,203,.08); color:var(--blue);
    border:1px solid rgba(15,86,203,.2);
}
.keynote-title{
    font-size:clamp(2rem,4.5vw,3rem);
    font-weight:900; letter-spacing:-.02em; margin:12px 0 8px;
}
.keynote-lead{
    color:var(--gray); font-size:1.1rem; line-height:1.8; margin-bottom:16px;
}
.keynote-highlights{ display:grid; gap:10px; margin:10px 0 18px; }
.keynote-highlights li{
    list-style:none; color:var(--gray); padding-left:26px; position:relative;
}
.keynote-highlights li::before{
    content:"✓"; position:absolute; left:0; top:0; color:var(--green); font-weight:900;
}
.keynote-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }

/* Keynote image */
.keynote-photo-wrap{
    position:relative; width:100%; max-width:520px; margin-inline:auto;
    aspect-ratio:1; border-radius:32px;
    background:
    radial-gradient(70% 70% at 75% 25%, rgba(190,205,43,.28), transparent 60%),
    radial-gradient(70% 70% at 25% 75%, rgba(15,86,203,.22), transparent 60%),
    #fff;
    box-shadow:0 24px 64px rgba(0,0,0,.10); overflow:hidden;
}
.keynote-photo-wrap::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,0));
    pointer-events:none;
}
.keynote-photo{ width:100%; height:100%; object-fit:contain; padding:24px;
    filter:saturate(1.05) contrast(1.03); }

/* ==== Featured Speakers ==== */
#speakers{ background:#fff; }

/* Chips rail */
.speaker-toolbar{
    display:flex; gap:10px; align-items:center;
    /* desktop/tablet default: wrap + center */
    flex-wrap:wrap; justify-content:center;
    margin:-8px 0 24px;
}
.speaker-toolbar .chip{
    padding:8px 14px; border-radius:999px;
    border:1px solid var(--border); background:#fff;
    font-weight:700; font-size:.9rem; color:var(--gray);
}

/* Cards */
.speaker-grid{
    display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:24px;
}
.speaker-card{
    background:#fff; border:1px solid rgba(0,0,0,.05); border-radius:18px; padding:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.speaker-card:hover{ transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.12); border-color:var(--yellow); }
.speaker-media{ position:relative; border-radius:14px; overflow:hidden; aspect-ratio:4/3; background:var(--light-gray); }
.speaker-photo{ width:100%; height:100%; object-fit:contain; background:#fff; }
.soon-pill{
    position:absolute; top:10px; left:10px; padding:6px 10px; border-radius:999px;
    background:rgba(190,205,43,.15); color:var(--green);
    font-weight:800; font-size:.7rem; letter-spacing:.06em; border:1px solid rgba(190,205,43,.35);
}
.speaker-name{ font-weight:900; font-size:1.05rem; margin:12px 0 4px; letter-spacing:-.01em; }
.speaker-meta{ color:var(--gray); font-size:.92rem; margin-bottom:10px; }
.tag-row{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:8px; }
.tag{ display:inline-block; padding:6px 10px; border-radius:999px; font-weight:700; font-size:.72rem; letter-spacing:.04em; color:#fff; }
.tag--green{ background:linear-gradient(135deg, var(--green), #66a347); }
.tag--blue{  background:linear-gradient(135deg, var(--blue), #2563eb); }
.tag--yellow{ background:linear-gradient(135deg, var(--yellow), #d4e02e); color:#0a0a0a; }
.speaker-blurb{ color:var(--gray); font-size:.95rem; line-height:1.6; }

/* Schedule Section */
.schedule {
    background: white;
    position: relative;
}

.schedule__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.schedule__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.schedule__audiences {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
}

.pill:hover {
    transform: translateY(-2px) scale(1.05);
}

.pill--cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.pill--purple {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.pill--orange {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.pill--red {
    background: linear-gradient(135deg, #f87171, #ef4444);
}

.schedule__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.tab {
    padding: 16px 28px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray);
}

.tab:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tab.is-active {
    background: linear-gradient(135deg, var(--yellow), var(--green));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(190, 205, 43, 0.3);
}

.schedule__panel {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule__panel.is-active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.schedule__grid {
    display: grid;
    gap: 20px;
}

.schedule__grid > div {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.schedule__grid > div:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--yellow);
}

.time {
    font-weight: 700;
    color: var(--blue);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.block strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--black);
}

.block--welcome,
.block--member {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    color: white;
    border-radius: 12px;
}

.block--reg {
    padding: 12px 20px;
    background: rgba(15, 86, 203, 0.1);
    color: var(--blue);
    border-radius: 12px;
    font-weight: 700;
}

.block--meal {
    padding: 12px 20px;
    background: rgba(190, 205, 43, 0.12);
    color: var(--green);
    border-radius: 12px;
}

.block--concurrent {
    padding: 12px 20px;
    background: rgba(80, 146, 54, 0.12);
    color: var(--green);
    border-radius: 12px;
}

.block--exhibit {
    padding: 12px 20px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: white;
    border-radius: 12px;
}

.block--dinner,
.block--social {
    padding: 12px 20px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border-radius: 12px;
}

.block--demo {
    padding: 12px 20px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border-radius: 12px;
}

.block--awards {
    padding: 12px 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 12px;
}

.muted {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 6px;
}

.schedule__link {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.schedule__link:hover {
    opacity: 0.8;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    animation: slideInLeft 0.8s ease;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 0.8s ease;
}

.about-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Sponsorship Section */
.sponsorship {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sponsorship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 80%, rgba(190, 205, 43, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15, 86, 203, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sponsorship .section-title {
    color: white;
}

.sponsorship .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.sponsorship-image {
    max-width: 1100px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    margin: 0 auto 48px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.8s ease;
}

.sponsorship-image:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15, 86, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    animation: slideInLeft 0.8s ease;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--yellow);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: slideInRight 0.8s ease;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(190, 205, 43, 0.1);
    transform: translateY(-2px);
}

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

#form-status {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: var(--yellow);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.footer-link:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Hotel Section Styles */
.hotel-grid {
    position: relative;
}

.hotel-info, .booking-instructions {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-info:hover, .booking-instructions:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.booking-steps > div {
    transition: transform 0.2s ease;
}

.booking-steps > div:hover {
    transform: translateX(4px);
}

/* Sponsor Card Hover Effects */
.platinum-sponsor:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 70px rgba(255, 215, 0, 0.2);
}

.gold-sponsor:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 24px 60px rgba(255, 215, 0, 0.15);
}

.silver-sponsor:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(192, 192, 192, 0.12);
}

.bronze-sponsor:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 16px 40px rgba(205, 127, 50, 0.15);
    border-color: rgba(205, 127, 50, 0.25);
}

.networking-sponsor:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 86, 203, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
    --marquee-speed: 35s;
    --sponsor-logo-max-width: 140px;
    --sponsor-logo-max-height: 45px;
    }

    .sponsor-item {
    width: 200px;
    padding: 0 25px;
    }

    .keynote-grid {
    grid-template-columns: 1fr;
    text-align: center;
    }

    .keynote-photo-wrap {
    max-width: 440px;
    }
}

@media (max-width: 768px) {
    :root {
    --marquee-height: 80px;
    --marquee-speed: 30s;
    --sponsor-logo-max-width: 120px;
    --sponsor-logo-max-height: 40px;
    }

    .hero-content {
    padding: 120px 20px 60px;
    }

    .sponsor-showcase {
    padding: 32px 0;
    }

    .sponsor-item {
    width: 160px;
    height: 60px;
    padding: 0 20px;
    }

    .sponsor-marquee::before,
    .sponsor-marquee::after {
    width: 80px;
    }

    .countdown {
    gap: 16px;
    padding: 20px 28px;
    }

    .countdown-num {
    font-size: 2rem;
    }

    .countdown-unit {
    min-width: 60px;
    }

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

    .btn {
    width: 100%;
    max-width: 320px;
    }

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

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

    .about-grid,
    .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    }

    .schedule__grid > div {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    .time {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    }

    .hotel-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    }
    
    .hotel-info, .booking-instructions {
    padding: 32px 24px !important;
    }

    .sponsors-showcase {
    padding: 32px 24px !important;
    border-radius: 24px !important;
    }
    
    .sponsors-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    }
    
    .sponsor-card {
    padding: 24px 20px !important;
    }
}

@media (max-width: 640px) {
    .scroll-indicator { display: none; }

    .nav-container,
    .container,
    .schedule__wrap {
    padding: 0 20px;
    }

    .section {
    padding: 80px 0;
    }

    .section-header {
    margin-bottom: 48px;
    }

    .logo-conference {
    max-width: 320px;
    }

    .hero h1 {
    font-size: 2rem;
    }

    .section-title {
    font-size: 2rem;
    }

    .info-card,
    .contact-form {
    padding: 32px 24px;
    }

    .countdown {
    gap: 12px;
    padding: 16px 20px;
    }

    .countdown-num {
    font-size: 1.5rem;
    }

    .countdown-unit {
    min-width: 50px;
    }

    .countdown-label {
    font-size: 0.65rem;
    }

    .tab {
    padding: 12px 20px;
    font-size: 14px;
    }
}

@media (max-width: 600px){
    .keynote-grid{ gap:32px; }
    .keynote-title{ font-size:1.6rem; }
    .keynote-lead{ font-size:1rem; line-height:1.6; }
    .keynote-photo-wrap{ max-width:320px; border-radius:20px; }
    .keynote-cta{ flex-direction:column; align-items:stretch; }
    .speaker-grid{ grid-template-columns:1fr; gap:20px; }

    /* chips rail becomes horizontal scroll */
    .speaker-toolbar{
    flex-wrap:nowrap; justify-content:flex-start;
    overflow-x:auto; overflow-y:hidden; white-space:nowrap;
    -webkit-overflow-scrolling:touch;
    padding:8px 4px 10px;
    scrollbar-width:none;           /* Firefox */
    }
    .speaker-toolbar::-webkit-scrollbar{ display:none; } /* WebKit */
}

@media (max-width: 480px) {
    :root {
    --marquee-height: 70px;
    --marquee-speed: 25s;
    --sponsor-logo-max-width: 100px;
    --sponsor-logo-max-height: 35px;
    }

    .sponsor-item {
    width: 140px;
    padding: 0 15px;
    }

    .keynote-photo-wrap{ aspect-ratio:auto; }
    .keynote-photo{ padding:16px; }

    .hotel-info, .booking-instructions {
    padding: 24px 20px !important;
    }
    
    .booking-steps > div {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center;
    }
    
    .booking-steps > div > div:first-child {
    align-self: center;
    }

    .sponsors-showcase {
    padding: 24px 16px !important;
    }
    
    .sponsor-card {
    padding: 20px 16px !important;
    }
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .scroll-indicator,
    .contact-form,
    .footer {
    display: none;
    }

    body {
    font-size: 12pt;
    }

    .section {
    page-break-inside: avoid;
    }
}

/* Fallback that works everywhere */
::selection { background: #a8c628; color: #000; }
::-moz-selection { background: #a8c628; color: #000; }

/* Progressive enhancement for modern browsers */
@supports (background: color-mix(in oklab, red, blue)) {
    ::selection {
    background: color-mix(in oklab, var(--yellow) 55%, var(--green) 45%);
    color: #0a0a0a; /* black text for contrast */
    }
    ::-moz-selection {
    background: color-mix(in oklab, var(--yellow) 55%, var(--green) 45%);
    color: #0a0a0a; /* black text for contrast */
    }
}
/* DIRECT MOBILE MENU FIX - Add this to the very end of your CSS file */

@media (max-width: 768px) {
  .nav-menu {
    position: fixed !important;
    top: 80px !important;
    right: 0 !important;
    left: 0 !important;
    height: calc(100vh - 80px) !important; /* Fixed height calculation */
    width: 100vw !important;
    max-width: none !important;
    background: white !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 24px !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    box-shadow: none !important;
    z-index: 1000 !important;
    display: flex !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-menu li {
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    padding: 16px 0 !important;
    font-size: 17px !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-weight: 600 !important;
    display: flex !important;
  }
  
  .nav-link::after {
    display: none !important;
  }

  .register-btn {
    margin: 20px 0 0 0 !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 16px 28px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
  }

  /* Mobile Dropdown Styles */
  .dropdown-content {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #f8fafc !important;
    margin: 8px 0 0 0 !important;
    border-radius: 8px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    padding: 0 !important;
  }

  .dropdown-btn[aria-expanded="true"] + .dropdown-content {
    max-height: 300px !important;
    padding: 8px 0 !important;
  }

  .dropdown-item {
    padding: 12px 20px !important;
    font-size: 15px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    font-weight: 500 !important;
  }

  .dropdown-item:last-child {
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    padding: 20px !important;
  }
  
  .nav-link {
    padding: 15px 0 !important;
    font-size: 16px !important;
  }
  
  .register-btn {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }
}
/* Sponsor Card Base Styles */
.sponsor-card {
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sponsor-card.available {
    opacity: 0.4;
}

.sponsor-card .tier-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    font-weight: 800;
}

.sponsor-card .logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sponsor-card .logo-container img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
}

.sponsor-card h5 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.sponsor-card .available-slot {
    width: 100%;
    height: 65px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.sponsor-card .available-slot span {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 600;
}

.sponsor-card .available-text {
    color: #9ca3af;
}

.sponsor-card .available-desc {
    color: #9ca3af;
    font-size: 0.75rem;
    font-style: italic;
}

/* Platinum Sponsor */
.sponsor-card.platinum-sponsor {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 215, 0, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.platinum-indicator {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #b45309;
}

.platinum-logo {
    height: 100px;
    margin-bottom: 24px;
}

.platinum-logo img {
    max-height: 80px;
}

.platinum-sponsor h5 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.platinum-sponsor .available-slot {
    height: 80px;
}

.platinum-sponsor .available-desc {
    font-size: 0.85rem;
}

/* Gold Sponsor */
.sponsor-card.gold-sponsor {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 215, 0, 0.05) 100%);
    backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 16px 50px rgba(255, 215, 0, 0.1);
}

.gold-indicator {
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #b45309;
}

.gold-logo {
    height: 90px;
    margin-bottom: 20px;
}

.gold-logo img {
    max-height: 70px;
}

.gold-sponsor h5 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.gold-sponsor .available-slot {
    height: 70px;
}

.gold-sponsor .available-desc {
    font-size: 0.8rem;
}

/* Silver Sponsor */
.sponsor-card.silver-sponsor {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(192, 192, 192, 0.05) 100%);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-radius: 18px;
    border: 2px solid rgba(192, 192, 192, 0.2);
    box-shadow: 0 14px 40px rgba(192, 192, 192, 0.08);
}

.silver-indicator {
    padding: 5px 12px;
    background: linear-gradient(135deg, #c0c0c0, #e5e7eb);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #4b5563;
}

.silver-sponsor h5 {
    margin-bottom: 10px;
}

/* Bronze Sponsor */
.sponsor-card.bronze-sponsor {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(205, 127, 50, 0.04) 100%);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(205, 127, 50, 0.15);
    box-shadow: 0 12px 32px rgba(205, 127, 50, 0.08);
}

.bronze-indicator {
    padding: 5px 12px;
    background: linear-gradient(135deg, #cd7f32, #d2691e);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

/* Networking Sponsor */
.sponsor-card.networking-sponsor {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(15, 86, 203, 0.03) 100%);
    backdrop-filter: blur(15px);
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(15, 86, 203, 0.15);
    box-shadow: 0 8px 24px rgba(15, 86, 203, 0.06);
}

.networking-indicator {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #0f56cb, #3b82f6);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
}

.networking-logo {
    height: 70px;
    margin-bottom: 16px;
}

.networking-logo img {
    max-height: 55px;
}

.networking-sponsor h5 {
    font-weight: 600;
    font-size: 0.85rem;
}

.networking-sponsor .available-slot {
    height: 55px;
}

.networking-sponsor .available-desc {
    font-size: 0.7rem;
}

/* =====================================================
ENHANCED KEYNOTE SECTION STYLES
===================================================== */

 .keynote {
     background: linear-gradient(135deg, #f8fafc 0%, white 50%, #f1f5f9 100%);
     position: relative;
     overflow: hidden;
     padding: 120px 0;
 }

.keynote-wrapper {
    position: relative;
}

/* Background decorative elements */
.keynote-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(190, 205, 43, 0.03) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(15, 86, 203, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.keynote-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.keynote-glow-1 {
    background: var(--yellow);
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.keynote-glow-2 {
    background: var(--green);
    bottom: -200px;
    right: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

/* Announcement Badge */
.keynote-announcement {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f59e0b;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(255, 193, 7, 0.3);
        transform: scale(1);
    }
    50% {
        border-color: rgba(255, 193, 7, 0.5);
        transform: scale(1.02);
    }
}

/* Main Keynote Layout */
.keynote-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Side */
.keynote-content {
    animation: slideInLeft 1s ease;
}

.keynote-intro {
    margin-bottom: 40px;
}

.keynote-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(15, 86, 203, 0.08);
    border-radius: 8px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.keynote-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.keynote-role {
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.keynote-tagline {
    font-size: 1rem;
    color: var(--yellow);
    font-weight: 700;
    font-style: italic;
}

/* Bio Section */
.keynote-bio {
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.bio-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 16px;
}

.keynote-bio p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Talk Details */
.keynote-talk {
    background: linear-gradient(135deg, rgba(190, 205, 43, 0.05), rgba(80, 146, 54, 0.05));
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(190, 205, 43, 0.15);
}

.talk-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.talk-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.talk-points {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.talk-points li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.talk-points li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.point-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.talk-points span:last-child {
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

/* Credentials */
.keynote-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.credential-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}

.credential-icon {
    font-size: 2rem;
}

.credential-card strong {
    display: block;
    color: var(--black);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.credential-card p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Speaking Engagements */
.keynote-speaking {
    padding: 24px;
    background: rgba(15, 86, 203, 0.03);
    border-radius: 16px;
    margin-bottom: 40px;
}

.speaking-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-align: center;
}

.speaking-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.logo-badge {
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(15, 86, 203, 0.2);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--blue);
    transition: all 0.2s ease;
}

.logo-badge:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

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

.btn-glow {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: left 0.6s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Visual Side */
.keynote-visual {
    position: sticky;
    top: 100px;
    animation: slideInRight 1s ease;
}

.visual-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 8px;
}

/* Frame corners */
.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--yellow);
    z-index: 2;
}

.frame-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 16px;
}

.frame-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 16px;
}

.frame-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 16px;
}

.frame-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 16px;
}

.keynote-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.keynote-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.keynote-visual:hover .keynote-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.6) 0%,
    transparent 30%,
    transparent 70%,
    rgba(190, 205, 43, 0.2) 100%
    );
    pointer-events: none;
}

.visual-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.badge-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.01em;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* Stats */
.keynote-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* =====================================================
   ENHANCED SPEAKERS SECTION STYLES
   ===================================================== */

.speakers-section {
    background: white;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.speakers-bg {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.5) 50%, transparent 100%),
            radial-gradient(circle at 10% 50%, rgba(190, 205, 43, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 50%, rgba(15, 86, 203, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Filter Bar */
.speaker-filter-bar {
    margin-bottom: 56px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-chip:hover {
    transform: translateY(-2px);
    border-color: var(--yellow);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(190, 205, 43, 0.15);
}

.filter-chip.active {
    background: linear-gradient(135deg, var(--yellow), var(--green));
    color: white;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(190, 205, 43, 0.3);
}

.chip-icon {
    font-size: 1.1rem;
}

.chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 900;
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Speaker Card */
.speaker-item {
    animation: fadeInUp 0.8s ease;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-item.fade-in {
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.speaker-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.speaker-item:hover .speaker-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

/* Featured Speaker */
.featured-speaker .speaker-card-inner {
    background: linear-gradient(135deg, white 0%, rgba(190, 205, 43, 0.05) 100%);
    border: 2px solid rgba(190, 205, 43, 0.2);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Speaker Image */
.speaker-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-item:hover .speaker-img {
    transform: scale(1.1);
}

/* Organization Logo Style */
.org-logo {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.logo-img {
    object-fit: contain !important;
    max-height: 120px;
    width: auto;
}

/* Overlay */
.speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.speaker-item:hover .speaker-overlay {
    opacity: 1;
}

.session-preview {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(190, 205, 43, 0.9);
    border-radius: 8px;
    display: inline-block;
    color: white;
    margin-bottom: 8px;
}

.achievement-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    background: rgba(15, 86, 203, 0.9);
    border-radius: 8px;
    display: inline-block;
    color: white;
}

.social-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--blue);
    color: white;
    transform: scale(1.1);
}

/* Speaker Details */
.speaker-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.speaker-position {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Tags */
.speaker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.s-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
}

.s-tag-leadership {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.s-tag-safety {
    background: linear-gradient(135deg, var(--green), #66a347);
}

.s-tag-tech {
    background: linear-gradient(135deg, var(--blue), #2563eb);
}

.s-tag-ops {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.s-tag-reg {
    background: linear-gradient(135deg, #64748b, #475569);
}

.s-tag-pending {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.speaker-bio {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* Panel Cards */
.panel-card {
    background: linear-gradient(135deg, white, rgba(248, 250, 252, 0.8));
    border: 2px solid rgba(15, 86, 203, 0.1);
}

.panel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(15, 86, 203, 0.1);
    color: var(--blue);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}

/* Coming Soon Card */
.coming-card {
    background: linear-gradient(135deg, rgba(190, 205, 43, 0.05), rgba(80, 146, 54, 0.05));
    border: 2px dashed rgba(190, 205, 43, 0.3);
    cursor: default;
}

.coming-soon-graphic {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(190, 205, 43, 0.1), rgba(80, 146, 54, 0.1));
}

.plus-icon {
    font-size: 4rem;
    font-weight: 300;
    color: var(--green);
    opacity: 0.5;
    margin-bottom: 8px;
}

.coming-soon-graphic span {
    font-weight: 700;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .keynote-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .keynote-visual {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .keynote {
        padding: 80px 0;
    }

    .keynote-name {
        font-size: 2rem;
    }

    .keynote-credentials {
        grid-template-columns: 1fr;
    }

    .keynote-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 8px;
    }

    .filter-chip {
        flex-shrink: 0;
    }

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

    .speaker-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .keynote-main {
        gap: 40px;
    }

    .talk-points li {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .keynote-cta {
        flex-direction: column;
    }

    .keynote-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .speaker-filter-bar {
        padding: 16px;
        margin-bottom: 32px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* =====================================================
   MOBILE OPTIMIZED SPEAKERS SECTION
   ===================================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    .speaker-filter-bar {
        padding: 20px;
    }

    .filter-wrapper {
        gap: 10px;
    }

    .filter-chip {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .chip-icon {
        font-size: 1rem;
    }
}

/* Mobile Styles (480px - 768px) */
@media (max-width: 768px) {
    .speakers-section {
        padding: 80px 0;
    }

    /* Make filter bar horizontally scrollable */
    .speaker-filter-bar {
        padding: 16px;
        margin-bottom: 40px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .filter-wrapper {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding: 0 20px 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Add scroll hint gradient */
    .speaker-filter-bar::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 10px;
        width: 40px;
        background: linear-gradient(to right, transparent, white);
        pointer-events: none;
    }

    .filter-chip {
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .chip-count {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
        padding: 0 6px;
    }

    /* Single column grid */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    /* Adjust speaker cards */
    .speaker-card-inner {
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .speaker-item:hover .speaker-card-inner {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

    .speaker-image-wrapper {
        height: 240px;
    }

    .speaker-details {
        padding: 20px;
    }

    .speaker-name {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .speaker-position {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .speaker-tags {
        gap: 6px;
        margin-bottom: 12px;
    }

    .s-tag {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .speaker-bio {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Panel cards on mobile */
    .panel-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .org-logo {
        padding: 30px 20px;
        height: 200px;
    }

    .logo-img {
        max-height: 80px;
    }

    /* Overlay adjustments */
    .speaker-overlay {
        padding: 20px;
    }

    .session-preview {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        bottom: 16px;
        right: 16px;
    }

    /* Featured speaker on mobile */
    .featured-speaker .speaker-card-inner {
        border-width: 1px;
    }

    .card-badge {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* Small Mobile Styles (< 480px) */
@media (max-width: 480px) {
    .speakers-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Even smaller filter buttons */
    .speaker-filter-bar {
        padding: 12px 0;
        margin-bottom: 32px;
    }

    .filter-wrapper {
        padding: 0 16px 8px;
        gap: 6px;
    }

    .filter-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .chip-icon {
        font-size: 0.9rem;
    }

    /* Compact speaker cards */
    .speakers-grid {
        gap: 16px;
        padding: 0 16px;
    }

    .speaker-card-inner {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .speaker-image-wrapper {
        height: 200px;
    }

    .speaker-details {
        padding: 16px;
    }

    .speaker-name {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .speaker-position {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .speaker-tags {
        gap: 4px;
        margin-bottom: 10px;
    }

    .s-tag {
        padding: 4px 8px;
        font-size: 0.6rem;
        border-radius: 12px;
    }

    .speaker-bio {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Smaller overlays */
    .speaker-overlay {
        padding: 16px;
    }

    .session-preview,
    .achievement-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
        border-radius: 6px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        bottom: 12px;
        right: 12px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    /* Panel adjustments */
    .org-logo {
        padding: 24px 16px;
        height: 160px;
    }

    .logo-img {
        max-height: 60px;
    }

    .panel-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }

    /* Coming soon card */
    .coming-soon-graphic {
        height: 200px;
    }

    .plus-icon {
        font-size: 3rem;
    }

    .coming-soon-graphic span {
        font-size: 0.85rem;
    }

    /* Hide hover effects on mobile */
    .speaker-item:hover .speaker-card-inner {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .speaker-item:hover .speaker-img {
        transform: none;
    }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 375px) {
    .speakers-grid {
        padding: 0 12px;
    }

    .filter-wrapper {
        padding: 0 12px 8px;
    }

    .filter-chip {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .chip-icon {
        display: none; /* Hide icons on very small screens */
    }

    .speaker-details {
        padding: 14px;
    }

    .speaker-name {
        font-size: 1rem;
    }

    .speaker-position {
        font-size: 0.8rem;
    }

    .speaker-bio {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .speaker-item:hover .speaker-card-inner {
        transform: translateY(0);
    }

    .speaker-item:hover .speaker-img {
        transform: scale(1);
    }

    .speaker-overlay {
        /* Always show important info on mobile */
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
        justify-content: flex-end;
        padding: 16px;
    }

    /* Make touch targets larger */
    .filter-chip {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .speaker-image-wrapper {
        height: 180px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile */
    .speaker-item {
        animation: none;
    }

    .speaker-item.fade-in {
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Simplify shadows for better performance */
    .speaker-card-inner {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Disable complex transitions on mobile */
    .speaker-img {
        transition: none;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    .filter-chip,
    .social-link,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve contrast on mobile */
    .speaker-bio {
        color: var(--dark-gray);
    }

    /* Add focus styles for keyboard navigation */
    .filter-chip:focus,
    .social-link:focus {
        outline: 2px solid var(--blue);
        outline-offset: 2px;
    }
}

/* Print styles for mobile */
@media print {
    .speaker-filter-bar {
        display: none;
    }

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

    .speaker-overlay {
        display: none;
    }

    .speaker-card-inner {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}
/* Speaker Links - Always Visible (NOT in overlays) */
.speaker-links {
    display: flex;
    gap: 10px;
    margin: 12px 0;
    align-items: center;
}

.link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(15, 86, 203, 0.08);
    border-radius: 50%;
    color: var(--blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

.link-icon:hover {
    background: var(--blue);
    color: white;
    transform: scale(1.1);
}

.link-icon svg {
    width: 18px;
    height: 18px;
}

.link-text {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.link-text:hover {
    color: var(--blue);
    transform: translateX(3px);
}

/* Session and Achievement Overlays (Separate from links) */
.speaker-session-overlay,
.achievement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.speaker-item:hover .speaker-session-overlay,
.speaker-item:hover .achievement-overlay {
    opacity: 1;
}

.speaker-session-overlay span,
.achievement-overlay span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    padding: 6px 12px;
    background: rgba(190, 205, 43, 0.9);
    border-radius: 6px;
}

.achievement-overlay span {
    background: rgba(15, 86, 203, 0.9);
}

/* Clean Filter Chips without emojis */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove any emoji/icon styling */
.chip-icon {
    display: none;
}

/* Performance Optimizations */
@media (max-width: 768px) {
    /* Optimize transform performance on mobile */
    .speaker-card-inner,
    .speaker-img {
        will-change: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Disable hover transforms on mobile */
    .speaker-item:hover .speaker-card-inner {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .speaker-item:hover .speaker-img {
        transform: none;
    }

    /* Always show session overlays on mobile */
    .speaker-session-overlay,
    .achievement-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    }

    /* Optimize link icons for mobile */
    .speaker-links {
        margin: 10px 0;
    }

    .link-icon {
        width: 30px;
        height: 30px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .link-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Small Mobile Optimizations */
@media (max-width: 480px) {
    .speaker-links {
        gap: 8px;
        margin: 8px 0;
    }

    .link-icon {
        width: 28px;
        height: 28px;
    }

    .link-text {
        font-size: 0.85rem;
    }

    /* Session overlay text smaller on mobile */
    .speaker-session-overlay span,
    .achievement-overlay span {
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 4px;
    }
}

/* Touch Device Specific */
@media (hover: none) {
    /* Remove ALL hover effects on touch devices */
    .speaker-item:hover .speaker-card-inner,
    .link-icon:hover,
    .filter-chip:hover,
    .logo-badge:hover,
    .credential-card:hover,
    .stat-item:hover,
    .talk-points li:hover {
        transform: none;
    }

    /* Keep overlays visible on touch */
    .speaker-session-overlay,
    .achievement-overlay {
        opacity: 1;
    }

    /* Active states for touch feedback */
    .link-icon:active {
        transform: scale(0.95);
        background: var(--blue);
        color: white;
    }

    .filter-chip:active {
        transform: scale(0.98);
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari bounce scroll */
    .filter-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    /* Fix for iOS tap highlight */
    .link-icon,
    .filter-chip,
    button,
    a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

/* Android Specific Fixes */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5) {
    /* Ensure proper rendering on high DPI Android devices */
    .speaker-card-inner {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Accessibility Enhancements */
.link-icon:focus-visible,
.filter-chip:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Skip outline on mouse click */
.link-icon:focus:not(:focus-visible),
.filter-chip:focus:not(:focus-visible) {
    outline: none;
}

/* Screen Reader Improvements */
.link-icon[aria-label]::after {
    content: none;
}

/* Loading State for Images */
.speaker-img {
    background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s linear infinite;
}

.speaker-img[src]:not([src=""]) {
    animation: none;
    background: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Print Styles */
@media print {
    .speaker-filter-bar,
    .keynote-glow,
    .keynote-bg-pattern {
        display: none;
    }

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

    .speaker-links {
        display: none; /* Hide links in print */
    }

    .speaker-card-inner {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .speaker-session-overlay,
    .achievement-overlay {
        position: static;
        opacity: 1;
        background: none;
        color: var(--black);
        padding: 8px 0;
    }

    .speaker-session-overlay span,
    .achievement-overlay span {
        background: none;
        color: var(--green);
        padding: 0;
        font-weight: 600;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .keynote-glow,
    .float {
        animation: none;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Ready for dark mode if you decide to implement it */
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .speaker-card-inner,
    .filter-chip {
        border-width: 2px;
        border-color: var(--black);
    }

    .link-icon {
        border: 2px solid currentColor;
    }
}

/* Landscape Phone Specific */
@media (max-width: 768px) and (orientation: landscape) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .speaker-image-wrapper {
        height: 180px;
    }

    .keynote {
        padding: 60px 0;
    }
}

/* Tablet Portrait Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for Filter Overflow on Mobile */
@media (max-width: 768px) {
    .speaker-filter-bar {
        position: relative;
        padding: 16px 0;
        margin-bottom: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .filter-wrapper {
        mask-image: linear-gradient(to right,
        transparent 0,
        black 20px,
        black calc(100% - 20px),
        transparent 100%
        );
        -webkit-mask-image: linear-gradient(to right,
        transparent 0,
        black 20px,
        black calc(100% - 20px),
        transparent 100%
        );
        padding: 0 24px 10px;
    }

    /* Visual scroll indicators */
    .speaker-filter-bar::before,
    .speaker-filter-bar::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border: 2px solid var(--gray);
        border-left: none;
        border-bottom: none;
        opacity: 0.5;
        z-index: 10;
    }

    .speaker-filter-bar::before {
        left: 5px;
        transform: translateY(-50%) rotate(-135deg);
    }

    .speaker-filter-bar::after {
        right: 5px;
        transform: translateY(-50%) rotate(45deg);
    }
}

/* Final Touch-ups */
.speaker-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-bio {
    margin-top: auto; /* Push bio to fill space */
}

/* Ensure coming soon card is properly styled */
.coming-card .speaker-details {
    justify-content: center;
}

.more-coming .link-text {
    margin-top: 12px;
    display: inline-block;
}

/* Fix any z-index issues */
.card-badge,
.panel-badge {
    z-index: 5;
}

.speaker-session-overlay,
.achievement-overlay {
    z-index: 3;
}

.speaker-links {
    position: relative;
    z-index: 4;
}
.keynote-talk {
    background: linear-gradient(135deg, rgba(190, 205, 43, 0.05), rgba(80, 146, 54, 0.05));
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid rgba(190, 205, 43, 0.15);
}

.talk-highlights {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.highlight-marker {
    color: var(--green);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.highlight-item span:last-child {
    color: var(--gray);
    line-height: 1.5;
    flex: 1;
}

/* Simplified Experience Section */
.keynote-experience {
    padding: 20px;
    background: rgba(15, 86, 203, 0.03);
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: center;
}

.experience-title {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.experience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.experience-list span:nth-child(even) {
    color: var(--gray);
    font-weight: 400;
}

/* Cleaner Visual Frame */
.visual-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    background: white;
}

.keynote-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 40%,
    transparent 100%
    );
    pointer-events: none;
}

/* Refined Badge */
.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.badge-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 4px;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

/* Simplified Impact Stats */
.keynote-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.impact-item {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--yellow);
}

.impact-value {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.impact-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Refined CTA */
.keynote-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.keynote-cta .btn {
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .keynote-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .keynote-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .highlight-item {
        padding: 10px 12px;
    }

    .highlight-marker {
        font-size: 1rem;
    }

    .keynote-impact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .experience-list {
        font-size: 0.85rem;
    }

    .keynote-cta {
        flex-direction: column;
    }

    .keynote-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .keynote-name {
        font-size: 2rem;
    }

    .talk-title {
        font-size: 1.25rem;
    }

    .talk-description {
        font-size: 0.95rem;
    }

    .visual-badge {
        padding: 12px 20px;
    }

    .badge-main {
        font-size: 1rem;
    }

    .badge-sub {
        font-size: 0.7rem;
    }
}