/* ===================================================================
   YOUNG ENTREPRENEURS SUMMIT – YES 2026
   VTU's Visvesvaraya Research & Innovation Foundation (VRIF)
   Design System & Professional Light Enterprise Theme
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  /* Official YES 2026 Poster Palette (Warm Executive Ivory, Deep Royal Navy & Sunrise Orange) */
  --bg-dark: #f7f4ee;
  --bg-canvas: #f7f4ee;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfbf9;
  --bg-glass: rgba(247, 244, 238, 0.95);
  --border-subtle: #e8e3d8;
  --border-focus: #ff5400;

  --text-main: #0a196e;        /* Deep Royal Navy */
  --text-dark: #071047;
  --text-muted: #536077;       /* Slate Navy Neutral */
  --text-dim: #6b7a99;

  /* Accent Colors (YES 2026 Official Brand) */
  --primary: #ff5400;          /* Signature Celebration Sunrise Orange */
  --primary-hover: #e04a00;
  --primary-glow: rgba(255, 84, 0, 0.22);
  --secondary: #0284c7;        /* Karnataka Tech Blue */
  --secondary-glow: rgba(2, 132, 199, 0.2);
  --accent-orange: #ff5400;
  --accent-navy: #0a196e;
  --accent-blue: #0284c7;
  --accent-gold: #d97706;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;

  /* Category Branding */
  --faculty-purple: #7c3aed;
  --faculty-gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
  --vip-gold: #d97706;
  --vip-gradient: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
  --delegate-blue: #0284c7;
  --delegate-gradient: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  --participant-purple: #ff5400;
  --participant-gradient: linear-gradient(135deg, #e04a00 0%, #ff5400 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(10, 25, 110, 0.05);
  --shadow-card: 0 4px 20px rgba(10, 25, 110, 0.05), 0 1px 3px rgba(10, 25, 110, 0.03);
  --shadow-hover: 0 14px 30px -4px rgba(10, 25, 110, 0.1), 0 4px 10px -2px rgba(10, 25, 110, 0.04);
  --shadow-glow: 0 0 30px rgba(255, 84, 0, 0.2);
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 14% 10%, rgba(255, 84, 0, 0.035) 0%, transparent 45%),
    radial-gradient(circle at 86% 30%, rgba(10, 25, 110, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(255, 84, 0, 0.025) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.gradient-text {
  background: linear-gradient(135deg, #0f172a 20%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-accent {
  background: linear-gradient(135deg, #ea580c 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ===================================================================
   NAVBAR (POSTER INSTITUTIONAL HEADER)
   =================================================================== */
header {
  background: #ffffff !important;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff !important;
  border-top: 3px solid #ff5400;
  border-bottom: 1px solid rgba(10, 25, 110, 0.09);
  padding: 6px 0;
  box-shadow: 0 2px 8px rgba(10, 25, 110, 0.05);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1360px;
}

/* Institutional Partner Logos Lineup */
.nav-partners-lineup {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-partner-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.nav-partner-item:hover {
  transform: translateY(-1px) scale(1.04);
  opacity: 0.92;
}

.nav-partner-img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 1px 1.5px rgba(10, 25, 110, 0.04));
  vertical-align: middle;
}

/* Optical balance per partner logo */
.nav-partner-img[src*="vrif"], .nav-partner-img[alt*="VRIF"] { height: 38px; max-width: 135px; }
.nav-partner-img[src*="ktech"], .nav-partner-img[alt*="K-tech"] { height: 26px; max-width: 85px; }
.nav-partner-img[src*="itbt"], .nav-partner-img[alt*="IT & BT"], .nav-partner-img[alt*="itbt"] { height: 34px; max-width: 110px; }
.nav-partner-img[src*="startup"], .nav-partner-img[alt*="Startup"] { height: 26px; max-width: 110px; }
.nav-partner-img[src*="early"], .nav-partner-img[alt*="Early"] { height: 28px; max-width: 105px; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.95;
}

.nav-vrif-logo {
  height: 75px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

.nav-yes-logo {
  height: 56px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

.brand-divider {
  width: 2px;
  height: 48px;
  background: rgba(10, 25, 110, 0.18);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #0a196e;
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-subtle {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link-subtle:hover {
  color: var(--text-main);
  background: rgba(10, 25, 110, 0.05);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #c2410c 100%);
  color: white;
  box-shadow: 0 3px 12px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  color: white;
}

.btn-secondary {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: rgba(124, 58, 237, 0.08);
  border: 1.5px solid var(--faculty-purple);
  color: #7c3aed;
}

.btn-outline-purple:hover {
  background: var(--faculty-purple);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-outline-gold {
  background: rgba(217, 119, 6, 0.08);
  border: 1.5px solid var(--vip-gold);
  color: #b45309;
}

.btn-outline-gold:hover {
  background: var(--vip-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-outline-cyan {
  background: rgba(2, 132, 199, 0.08);
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline-cyan:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

/* ===================================================================
   INSTITUTIONAL PARTNER STRIP & ECOSYSTEM LOGOS
   =================================================================== */
.partners-bar-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.partners-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.partner-logo-item:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.partner-card-img-wrap {
  height: 68px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.partner-card-img-wrap img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
}

/* Hero Showcase Poster Card */
.hero-poster-preview-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-poster-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.hero-poster-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===================================================================
   HERO SECTION (YES 2026 OFFICIAL POSTER 2-COLUMN LAYOUT)
   =================================================================== */
.hero-poster-section {
  position: relative;
  padding: 120px 0 65px;
  background-color: var(--bg-canvas);
  overflow: hidden;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
}

/* Background watermark illustration of rocket rising */
.hero-watermark-rocket {
  position: absolute;
  top: 48%;
  left: 36%;
  transform: translate(-50%, -50%) rotate(18deg);
  width: 380px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

/* Decorative corner & border accents - removed per user request */
.deco-cross,
.deco-dots-col,
.deco-stripes-bottom-left {
  display: none !important;
}

/* Hero 2-Column Grid */
.hero-poster-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Left Column: Stacked YES Typography & Meta */
.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.poster-yes-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(52px, 7.8vw, 96px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.poster-title-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
}

.poster-initial {
  color: #ff5400;
  font-weight: 950;
  margin-right: 2px;
  text-shadow: 0 2px 8px rgba(255, 84, 0, 0.18);
}

.poster-rest {
  color: #0a196e;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.poster-tagline {
  font-size: clamp(17px, 1.8vw, 22px);
  color: #1e293b;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 580px;
}

.poster-tagline strong, 
.poster-tagline mark,
.poster-tagline .tagline-orange {
  color: #ff5400;
  background: transparent;
  font-weight: 800;
}

/* Date & Venue Meta Badges */
.poster-meta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.poster-meta-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.poster-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(10, 25, 110, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a196e;
  flex-shrink: 0;
}

.poster-meta-text {
  font-size: 14.5px;
  line-height: 1.3;
}

.poster-meta-text strong {
  display: block;
  font-weight: 800;
  color: #0a196e;
  font-size: 15px;
}

.poster-meta-text span {
  font-size: 13.5px;
  color: #526079;
  font-weight: 500;
}

/* Celebration Strip at Bottom of Left Col */
.poster-celebrate-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-top: 2px solid #ff5400;
  padding-top: 14px;
  width: 100%;
  max-width: 440px;
}

.celebrate-caption {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #0a196e;
}

.celebrate-hashtag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.celebrate-slash {
  color: #0a196e;
  font-size: 18px;
  font-weight: 800;
}

.celebrate-hashtag-pill {
  background: #ff5400;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 4px 16px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 84, 0, 0.3);
}

/* Right Column: Elevated Floating Registration Card */
.hero-right-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.poster-quick-reg-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 36px 32px;
  box-shadow: 0 20px 50px -10px rgba(10, 25, 110, 0.12), 0 0 0 1px rgba(10, 25, 110, 0.05);
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 3;
}

.quick-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #0a196e;
  line-height: 1.15;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.quick-card-orange {
  color: #ff5400;
}

.quick-card-navy {
  color: #0a196e;
}

.quick-card-desc {
  font-size: 13.5px;
  color: #526079;
  line-height: 1.45;
  margin-bottom: 24px;
}

.quick-reg-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quick-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.quick-field-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a196e;
  pointer-events: none;
}

.quick-field-input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border: 1.5px solid #0a196e;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 500;
  color: #0a196e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.quick-field-input::placeholder {
  color: #8392a5;
  font-weight: 400;
}

.quick-field-input:focus {
  border-color: #ff5400;
  box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.15);
}

/* Hero CTA Action Button */
.hero-action-row {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 38px;
  background: linear-gradient(135deg, #ff5400 0%, #ff6f26 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 84, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 84, 0, 0.45);
  color: #ffffff !important;
}

.hero-cta-btn svg {
  transition: transform 0.22s ease;
}

.hero-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Right Column: Mascot Showcase */
.hero-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mascot-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-mascot-showcase-img {
  max-width: 290px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(10, 25, 110, 0.15));
  animation: floatMascot 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.desktop-mascot-img {
  display: block;
}

.mobile-yes-logo-img {
  display: none !important;
}

.hero-mascot-showcase-img:hover {
  transform: scale(1.04) rotate(1deg);
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@media (max-width: 992px) {
  .hero-poster-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-left-col {
    align-items: flex-start;
    text-align: left;
  }
  .poster-yes-title {
    align-items: flex-start;
    text-align: left;
  }
  .poster-title-row {
    justify-content: flex-start;
    text-align: left;
  }
  .poster-tagline {
    text-align: left;
    margin-left: 0;
  }
  .poster-meta-row {
    justify-content: flex-start;
  }
  .hero-action-row {
    justify-content: flex-start;
  }
  .poster-celebrate-strip {
    align-items: flex-start;
    margin: 0;
  }
  .hero-mascot-showcase-img {
    max-width: 210px;
  }
}

@media (max-width: 640px) {
  .nav-partners-lineup {
    gap: 8px;
  }
  .nav-partner-img {
    height: 28px;
  }
  .poster-yes-title {
    font-size: clamp(40px, 12vw, 58px);
  }
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }
}

.hero-meta-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

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

/* Countdown Timer */
.countdown-box {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.countdown-unit {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  min-width: 86px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.countdown-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.countdown-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  font-weight: 700;
}

/* ===================================================================
   OFFICIAL PARTNERS & GOVERNMENT ECOSYSTEM STRIP
   =================================================================== */
.partner-strip {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.partner-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 800;
  margin-bottom: 22px;
}

.partner-badges-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

.partner-badge {
  background: #ffffff;
  border: 1px solid #e8e3d8;
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(10, 25, 110, 0.04);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.partner-badge:hover {
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10, 25, 110, 0.08);
}

.partner-badge-logo-wrap {
  width: 52px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  padding: 4px 6px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(10, 25, 110, 0.04);
  transition: all 0.2s ease;
}

.partner-badge:hover .partner-badge-logo-wrap {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.partner-badge-logo {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.partner-badge .name {
  font-size: 13.5px;
  font-weight: 750;
  color: #0a196e;
  display: block;
  line-height: 1.25;
}

.partner-badge .sub {
  font-size: 10.5px;
  color: #0284c7;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
  display: block;
}

/* About Overview Card & Grid */
.about-card-wrap {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 40px;
  box-shadow: var(--shadow-card);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.about-lead-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 88, 12, 0.08);
  color: var(--primary);
  border: 1px solid rgba(234, 88, 12, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.about-lead-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.about-headline {
  font-size: 26px;
  font-weight: 850;
  color: #0a196e;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 22px;
}

.about-features-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 1px 3px rgba(10, 25, 110, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-feature-chip:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.about-venue-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(10, 25, 110, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-venue-box:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(10, 25, 110, 0.06);
}

.about-venue-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
}

.about-venue-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-venue-label {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-venue-title {
  font-size: 16px;
  font-weight: 800;
  color: #0a196e;
  margin: 0;
}

.about-venue-body {
  font-size: 13.5px;
  line-height: 1.6;
}

.about-venue-org {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  font-size: 14px;
}

.about-venue-address {
  color: #64748b;
  margin-bottom: 14px;
}

.about-venue-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.about-venue-dates svg {
  flex-shrink: 0;
}

/* 5 Summit Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.pillar-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pillar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.pillar-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.35;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pillar-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Logistics & Support Strip */
.logistics-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
  box-shadow: var(--shadow-card);
}

.logistics-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.logistics-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.logistics-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 700;
}

.logistics-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================================================
   GOVERNMENT & ECOSYSTEM PARTNERS SECTION (BELOW HERO - SINGLE ROW)
   =================================================================== */
.partners-endorsement-section {
  padding: 40px 0 38px;
  background-color: var(--bg-canvas);
  border-top: 1px solid rgba(10, 25, 110, 0.07);
  border-bottom: 1px solid rgba(10, 25, 110, 0.07);
  position: relative;
  z-index: 5;
}

.partners-single-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 54px;
  max-width: 1380px;
  margin: 0 auto;
}

.partner-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.partner-logo-item:hover {
  transform: translateY(-2px);
}

.partner-row-logo {
  display: block;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.partner-row-logo.logo-gov {
  height: 96px;
  max-width: 155px;
}

.partner-row-logo.logo-ktech {
  height: 54px;
  max-width: 185px;
}

.partner-row-logo.logo-startup {
  height: 48px;
  max-width: 250px;
}

.partner-row-logo.logo-earlyfounders {
  height: 54px;
  max-width: 160px;
}

@media (max-width: 1200px) {
  .partners-single-row {
    gap: 24px 48px;
  }
  .partner-row-logo.logo-gov { height: 86px; }
  .partner-row-logo.logo-ktech { height: 48px; }
  .partner-row-logo.logo-startup { height: 44px; }
  .partner-row-logo.logo-earlyfounders { height: 48px; }
}

@media (max-width: 992px) {
  .partners-endorsement-section {
    padding: 34px 0 30px;
  }
  .partners-single-row {
    gap: 20px 38px;
  }
  .partner-row-logo.logo-gov { height: 78px; }
  .partner-row-logo.logo-ktech { height: 44px; }
  .partner-row-logo.logo-startup { height: 40px; }
  .partner-row-logo.logo-earlyfounders { height: 44px; }
}

@media (max-width: 768px) {
  .partners-endorsement-section {
    padding: 22px 0 20px;
  }
  .partners-endorsement-section .container {
    padding: 0 12px;
  }
  .partners-single-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .partner-logo-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner-row-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .partner-row-logo.logo-gov { height: 56px; max-width: 84px; }
  .partner-row-logo.logo-ktech { height: 28px; max-width: 86px; }
  .partner-row-logo.logo-startup { height: 25px; max-width: 108px; }
  .partner-row-logo.logo-earlyfounders { height: 28px; max-width: 86px; }
}

@media (max-width: 480px) {
  .partners-endorsement-section {
    padding: 16px 0 15px;
  }
  .partners-endorsement-section .container {
    padding: 0 8px;
  }
  .partners-single-row {
    gap: 6px;
  }
  .partner-row-logo.logo-gov { height: 48px; max-width: 70px; }
  .partner-row-logo.logo-ktech { height: 24px; max-width: 72px; }
  .partner-row-logo.logo-startup { height: 21px; max-width: 88px; }
  .partner-row-logo.logo-earlyfounders { height: 24px; max-width: 72px; }
}

/* ===================================================================
   OUR NUMBERS SPEAK - ROLLING IMPACT CAROUSEL
   =================================================================== */
.stats-carousel-section {
  padding: 56px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(10, 25, 110, 0.08);
  border-bottom: 1px solid rgba(10, 25, 110, 0.08);
  overflow: hidden;
  position: relative;
}

.numbers-bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.numbers-bg-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
}

.numbers-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900;
  color: #0a196e;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.numbers-accent {
  color: #0284c7;
  position: relative;
  display: inline-block;
}

.numbers-subheading {
  font-size: 14.5px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.stats-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 28px;
  padding: 14px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  z-index: 2;
}

.stats-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
}

.stats-marquee-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  animation: rollStatsMarquee 38s linear infinite;
  will-change: transform;
}

.stats-marquee-wrapper:hover .stats-marquee-group {
  animation-play-state: paused;
}

@keyframes rollStatsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 22px));
  }
}

.num-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px 22px;
  width: 235px;
  min-width: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 18px rgba(10, 25, 110, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  user-select: none;
  flex-shrink: 0;
  cursor: default;
}

.num-card:hover {
  transform: translateY(-5px);
  border-color: #0284c7;
  box-shadow: 0 12px 28px rgba(10, 25, 110, 0.1);
}

.num-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.num-card-val {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.num-card-lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  line-height: 1.35;
}

/* Fallback & Legacy support */
.stats-strip {
  padding: 44px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}

/* ===================================================================
   SECTION COMMONS
   =================================================================== */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(2, 132, 199, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-title {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-main);
  font-weight: 800;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   ENHANCED REGISTRATION PATHWAYS SECTION (#register-pathways)
   =================================================================== */
.register-pathways-section {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  position: relative;
}

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

.badge-mobile,
.pill-mobile,
.title-mobile,
.btn-text-mobile {
  display: none !important;
}

.badge-full,
.pill-full,
.title-full,
.btn-text-full {
  display: inline !important;
}

.pathway-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid #e2e8f0;
  padding: 34px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(10, 25, 110, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

/* Colored accent bar along top */
.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--card-accent, #ea580c);
}

.pathway-card.tier-innovator {
  --card-accent: #ea580c;
  --card-glow: rgba(234, 88, 12, 0.16);
}

.pathway-card.tier-delegate {
  --card-accent: #0284c7;
  --card-glow: rgba(2, 132, 199, 0.16);
}

.pathway-card.tier-faculty {
  --card-accent: #7c3aed;
  --card-glow: rgba(124, 58, 237, 0.16);
}

.pathway-card.tier-media {
  --card-accent: #e11d48;
  --card-glow: rgba(225, 29, 72, 0.16);
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px var(--card-glow, rgba(10, 25, 110, 0.12));
  border-color: var(--card-accent);
}

/* Floating Track Badge */
.pathway-top-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-popular {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

.badge-executive {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.badge-academic {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.badge-media {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  border: 1px solid rgba(225, 29, 72, 0.25);
}

/* Card Icon Box */
.pathway-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.tier-innovator .pathway-icon-box {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(249, 115, 22, 0.08));
  color: #ea580c;
  border: 1.5px solid rgba(234, 88, 12, 0.2);
}

.tier-delegate .pathway-icon-box {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(14, 165, 233, 0.08));
  color: #0284c7;
  border: 1.5px solid rgba(2, 132, 199, 0.2);
}

.tier-faculty .pathway-icon-box {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(147, 51, 234, 0.08));
  color: #7c3aed;
  border: 1.5px solid rgba(124, 58, 237, 0.2);
}

.tier-media .pathway-icon-box {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(244, 63, 94, 0.08));
  color: #e11d48;
  border: 1.5px solid rgba(225, 29, 72, 0.2);
}

/* Pill category */
.pathway-pill-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.tier-innovator .pathway-pill-cat { color: #ea580c; }
.tier-delegate .pathway-pill-cat { color: #0284c7; }
.tier-faculty .pathway-pill-cat { color: #7c3aed; }
.tier-media .pathway-pill-cat { color: #e11d48; }

/* Card title & description */
.pathway-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #0a196e;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pathway-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Key Features list */
.pathway-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}

.pathway-features li {
  font-size: 13.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  font-weight: 500;
}

.pathway-features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.tier-innovator .pathway-features li svg { color: #ea580c; }
.tier-delegate .pathway-features li svg { color: #0284c7; }
.tier-faculty .pathway-features li svg { color: #7c3aed; }

/* Highlighting the Register CTA */
.pathway-cta-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-pathway-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.btn-pathway-register .btn-arrow {
  transition: transform 0.2s ease;
  font-size: 16px;
  display: inline-block;
}

.btn-pathway-register:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-pathway-register:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Distinct highlighted buttons per track */
.tier-innovator .btn-pathway-register {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.38);
}

.tier-innovator .btn-pathway-register:hover {
  box-shadow: 0 8px 26px rgba(234, 88, 12, 0.52);
}

.tier-delegate .btn-pathway-register {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.38);
}

.tier-delegate .btn-pathway-register:hover {
  box-shadow: 0 8px 26px rgba(2, 132, 199, 0.52);
}

.tier-faculty .btn-pathway-register {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.38);
}

.tier-faculty .btn-pathway-register:hover {
  box-shadow: 0 8px 26px rgba(124, 58, 237, 0.52);
}

.tier-media .btn-pathway-register {
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.38);
}

.tier-media .btn-pathway-register:hover {
  box-shadow: 0 8px 26px rgba(225, 29, 72, 0.52);
}

/* Micro Footnote / Pass Guarantee */
.pathway-pass-footnote {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .register-pathways-section {
    padding: 44px 0 52px;
  }
}

/* ===================================================================
   MINIMALIST & HIGH-AESTHETIC SUMMIT AGENDA (YES 2026)
   =================================================================== */
.agenda-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.agenda-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  box-shadow: inset 0 1px 3px rgba(10, 25, 110, 0.04);
}

.schedule-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 40px;
  border: none;
  background: transparent;
  color: #64748b;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.schedule-tab-btn:hover {
  color: #0a196e;
}

.schedule-tab-btn.active {
  background: #ffffff;
  color: #0a196e;
  box-shadow: 0 4px 14px rgba(10, 25, 110, 0.1);
}

.agenda-tab-pill {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 84, 0, 0.1);
  color: #ff5400;
  transition: all 0.2s ease;
}

.schedule-tab-btn.active .agenda-tab-pill {
  background: #ff5400;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(255, 84, 0, 0.3);
}

.agenda-tab-text {
  font-weight: 800;
}

/* Timeline Container */
.agenda-timeline-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.agenda-timeline.day-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Agenda Item Row */
.agenda-item {
  display: grid;
  grid-template-columns: 125px 28px 1fr;
  align-items: stretch;
  gap: 16px;
  position: relative;
}

.agenda-time {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  padding-top: 13px;
  text-align: right;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.agenda-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 16px;
}

.agenda-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #ff5400;
  box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.12);
  z-index: 2;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.agenda-item:hover .agenda-dot {
  transform: scale(1.25);
}

.agenda-line {
  position: absolute;
  top: 30px;
  bottom: -16px;
  width: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.agenda-item:last-child .agenda-line {
  display: none;
}

/* Content Box */
.agenda-content {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 13px 18px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(10, 25, 110, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agenda-item:hover .agenda-content {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(10, 25, 110, 0.05);
  transform: translateY(-1px);
}

.agenda-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.agenda-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

/* Minimal Tags */
.agenda-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.tag-orange { background: #fff7ed; color: #c2410c; }
.tag-blue { background: #f0f9ff; color: #0284c7; }
.tag-navy { background: #f1f5f9; color: #0a196e; }
.tag-purple { background: #faf5ff; color: #7c3aed; }
.tag-amber { background: #fefce8; color: #b45309; }
.tag-cyan { background: #ecfeff; color: #0891b2; }
.tag-rose { background: #fff1f2; color: #e11d48; }
.tag-emerald-solid { background: #10b981; color: #ffffff; font-weight: 800; box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3); }

/* Dot colors */
.dot-orange { border-color: #ff5400; box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.15); }
.dot-blue { border-color: #0284c7; box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15); }
.dot-navy { border-color: #0a196e; box-shadow: 0 0 0 3px rgba(10, 25, 110, 0.15); }
.dot-purple { border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15); }
.dot-amber { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15); }
.dot-cyan { border-color: #06b6d4; box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15); }
.dot-rose { border-color: #f43f5e; box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15); }
.dot-emerald { border-color: #10b981; background: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25); }

/* Sublist for grouped activities */
.agenda-sublist {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.agenda-subitem {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-time {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 2px 8px;
  border-radius: 5px;
  white-space: nowrap;
}

.sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

/* Green Highlight Session (Day 2 Speaker Session) */
.agenda-highlight .agenda-content {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.agenda-highlight .highlight-time {
  color: #047857;
  font-weight: 800;
}

.agenda-highlight .highlight-title {
  color: #065f46;
  font-weight: 800;
}

/* Mobile Responsiveness for Minimal Agenda */
@media (max-width: 720px) {
  #schedule {
    padding: 44px 0 54px;
    overflow-x: hidden;
  }

  .agenda-nav-wrap {
    margin-bottom: 22px;
    padding: 0 8px;
  }

  .agenda-nav {
    width: 100%;
    max-width: 360px;
    padding: 4px;
    gap: 6px;
  }

  .schedule-tab-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 8px 10px;
    font-size: 12.5px;
    gap: 7px;
    min-height: 42px;
  }

  .agenda-tab-pill {
    font-size: 9.5px;
    padding: 2.5px 7px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }

  .agenda-tab-text {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .agenda-timeline-wrap {
    padding: 0 4px;
  }

  .agenda-timeline.day-schedule {
    gap: 14px;
  }

  /* 2-row grid on mobile: Col 1 has the marker spine; Col 2 has Time (Row 1) and Card (Row 2) */
  .agenda-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    grid-template-areas:
      "marker time"
      "marker content";
    column-gap: 12px;
    row-gap: 5px;
    align-items: start;
    position: relative;
  }

  .agenda-marker {
    grid-area: marker;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 5px;
    height: 100%;
  }

  .agenda-dot {
    width: 12px;
    height: 12px;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.12);
    flex-shrink: 0;
  }

  .agenda-line {
    position: absolute;
    top: 20px;
    bottom: -18px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
  }

  .agenda-item:last-child .agenda-line {
    display: none;
  }

  .agenda-time {
    grid-area: time;
    display: inline-flex;
    align-items: center;
    padding: 2.5px 8px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: fit-content;
    line-height: 1.2;
    letter-spacing: -0.1px;
    margin-bottom: 2px;
  }

  .agenda-content {
    grid-area: content;
    padding: 12px 14px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .agenda-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }

  .agenda-title {
    font-size: 14.5px;
    line-height: 1.35;
    flex: 1 1 180px;
  }

  .agenda-tag {
    font-size: 10px;
    padding: 2.5px 7.5px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  /* Sub-items responsive styling */
  .agenda-sublist {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
    gap: 6px;
  }

  .agenda-subitem {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }

  .sub-time {
    font-size: 10.5px;
    padding: 1.5px 6px;
    border-radius: 4px;
    flex-shrink: 0;
    line-height: 1.2;
  }

  .sub-title {
    font-size: 12.5px;
    line-height: 1.35;
  }
}

/* Ultra-compact screens (small phones, e.g. <= 380px) */
@media (max-width: 380px) {
  .agenda-item {
    grid-template-columns: 18px 1fr;
    column-gap: 9px;
    row-gap: 4px;
  }

  .agenda-dot {
    width: 11px;
    height: 11px;
  }

  .agenda-line {
    top: 18px;
    bottom: -18px;
  }

  .agenda-content {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .agenda-title {
    font-size: 13.5px;
  }

  .agenda-tag {
    font-size: 9.5px;
    padding: 2px 6px;
  }

  .schedule-tab-btn {
    padding: 7px 6px;
    font-size: 11.5px;
    gap: 5px;
  }

  .agenda-tab-pill {
    font-size: 8.5px;
    padding: 2px 5px;
  }

  .agenda-tab-text {
    font-size: 11.5px;
  }
}

@media (hover: none) {
  .agenda-content:active {
    transform: scale(0.99);
  }
  .schedule-tab-btn:active {
    transform: scale(0.97);
  }
}

/* ===================================================================
   UNIVERSITY LEADERSHIP & DIGNITARIES
   =================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.leadership-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.leadership-photo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 16px;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leadership-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #f8fafc;
}

.leadership-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--secondary);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.leadership-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
}

.leadership-role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
  line-height: 1.25;
}

.leadership-org {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.35;
  margin-bottom: 8px;
}

.leadership-org:last-child {
  margin-bottom: 0;
}

.leadership-exec-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.leadership-card-ceo {
  width: 100%;
  max-width: 328px;
}

/* Fallback Speakers Grid */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.speaker-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 28px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.speaker-avatar-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.2);
}

.speaker-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
}

.speaker-name {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 800;
}

.speaker-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.speaker-org {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===================================================================
   VENUE & CONTACT
   =================================================================== */
.venue-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.venue-details h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.venue-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.venue-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.venue-map-card {
  height: 290px;
  background: #f8fafc;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.venue-map-img-card {
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(10, 25, 110, 0.07);
}

.venue-static-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.venue-map-img-card:hover .venue-static-map-img {
  transform: scale(1.04);
}

.venue-map-overlay-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 25, 110, 0) 0%, rgba(10, 25, 110, 0.86) 35%, rgba(10, 25, 110, 0.96) 100%);
  padding: 24px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.venue-map-footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  color: #ffffff;
}

.venue-map-footer-text strong {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.venue-map-footer-text span {
  font-size: 11.5px;
  color: #cbd5e1;
  font-weight: 500;
}

.venue-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #ea580c;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.venue-map-directions-btn:hover {
  background: #c2410c;
  transform: translateY(-1px);
}

.map-radar-pin {
  width: 20px;
  height: 20px;
  background: #dc2626;
  border-radius: 50%;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 0 12px #dc2626;
}

.map-radar-pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid #dc2626;
  border-radius: 50%;
  animation: radarPing 2s infinite;
}

/* ===================================================================
   FORM CONTROLS & UTILITIES
   =================================================================== */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
  background: #ffffff;
}

.form-control::placeholder {
  color: #94a3b8;
}

/* Category Pills */
.pill-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-cat-participant {
  background: rgba(234, 88, 12, 0.1);
  color: #c2410c;
  border: 1px solid rgba(234, 88, 12, 0.25);
}

.pill-cat-delegate {
  background: rgba(2, 132, 199, 0.1);
  color: #0369a1;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.pill-cat-faculty {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.pill-cat-vip {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.pill-cat-media {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  border: 1px solid rgba(225, 29, 72, 0.25);
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 60px 0 30px;
  color: #94a3b8;
  font-size: 14px;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ea580c;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

/* ===================================================================
   KEYFRAMES & ANIMATIONS
   =================================================================== */
@keyframes pulseOrange {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes radarPing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   =================================================================== */
@media (max-width: 1024px) {
  .hero-poster-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left-col {
    align-items: flex-start;
    text-align: left;
  }
  .poster-yes-title {
    align-items: flex-start;
    text-align: left;
  }
  .poster-title-row {
    justify-content: flex-start;
    text-align: left;
  }
  .poster-tagline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .poster-meta-row {
    justify-content: flex-start;
  }
  .poster-celebrate-strip {
    margin: 0;
  }
  .poster-quick-reg-card {
    max-width: 480px;
    margin: 0 auto;
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .venue-box { grid-template-columns: 1fr; gap: 32px; }
  .timeline-card { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-card-wrap { padding: 28px 22px; }
}

@media (max-width: 768px) {
  /* Container Fluid Padding */
  .container {
    padding: 0 16px;
  }

  /* Navbar Mobile Optimization */
  .navbar {
    padding: 6px 0;
  }
  .navbar .container {
    padding: 0 14px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }
  .brand-logo {
    gap: 10px;
  }
  .nav-vrif-logo {
    height: 36px;
    max-width: 110px;
    object-fit: contain;
  }
  .nav-yes-logo {
    height: 32px;
    max-width: 115px;
    object-fit: contain;
  }
  .brand-divider {
    height: 26px;
  }

  .nav-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  #nav-admin-btn {
    padding: 6px 8px;
    font-size: 12px;
  }
  #nav-register-btn {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* Hero Poster Section Mobile */
  .hero-poster-section {
    padding: 86px 0 36px;
  }
  .hero-watermark-rocket {
    display: none !important;
  }
  .desktop-mascot-img {
    display: none !important;
  }
  .mobile-yes-logo-img {
    display: block !important;
    max-width: 300px;
    width: 96%;
    height: auto;
    margin: 14px auto 0;
    animation: none;
    filter: drop-shadow(0 4px 14px rgba(10, 25, 110, 0.08));
  }
  .hero-left-col {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .poster-yes-title {
    font-size: clamp(34px, 10.5vw, 54px);
    line-height: 0.96;
    margin-bottom: 18px;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .poster-title-row {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .poster-tagline {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .poster-meta-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
  }
  .poster-meta-pill {
    background: #ffffff;
    border: 1px solid #e8e3d8;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(10, 25, 110, 0.04);
    justify-content: flex-start;
    width: 100%;
  }
  .poster-celebrate-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
  }
  .celebrate-left {
    flex-direction: column;
    gap: 4px;
  }
  .poster-quick-reg-card {
    padding: 24px 18px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(10, 25, 110, 0.08);
    width: 100%;
  }
  .quick-field-input {
    height: 46px;
    font-size: 14px;
    border-radius: 10px;
  }
  .quick-btn-submit {
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
  }
  .hero-celebrating-mascot {
    width: 60px;
    right: 4px;
    bottom: -12px;
    opacity: 0.8;
  }

  /* Countdown Clock */
  .countdown-box { gap: 8px; }
  .countdown-unit { min-width: 62px; padding: 8px 6px; }
  .countdown-val { font-size: 20px; }
  .countdown-lbl { font-size: 9px; }

  /* Section Containers */
  section { padding: 42px 0; }
  .section-title { font-size: 24px; }
  .section-desc { font-size: 14px; margin-bottom: 22px; }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* About Overview & Catalyzing Section Mobile */
  .about-card-wrap {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }
  .about-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .about-headline {
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .about-text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }
  .about-features-row {
    gap: 6px !important;
  }
  .about-feature-chip {
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    border-radius: 8px !important;
  }
  .about-venue-box {
    padding: 18px 14px !important;
    border-radius: 14px !important;
  }
  .about-venue-header {
    gap: 10px !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }
  .about-venue-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
  }
  .about-venue-icon svg {
    width: 17px !important;
    height: 17px !important;
  }
  .about-venue-title {
    font-size: 15px !important;
  }
  .about-venue-org {
    font-size: 13px !important;
  }
  .about-venue-address {
    font-size: 12.5px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
  }
  .about-venue-dates {
    font-size: 11px !important;
    padding-top: 10px !important;
  }
  /* Pathways Grid - 2 Tiles per Line on Mobile */
  .badge-full,
  .pill-full,
  .title-full,
  .btn-text-full {
    display: none !important;
  }
  .badge-mobile,
  .pill-mobile,
  .title-mobile,
  .btn-text-mobile {
    display: inline !important;
  }

  .register-pathways-section .container {
    padding: 0 12px;
  }

  .pathways-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 18px !important;
  }

  .pathway-card {
    padding: 16px 8px 14px !important;
    border-radius: 16px !important;
    text-align: center;
    align-items: center;
    min-width: 0;
    box-shadow: 0 4px 14px rgba(10, 25, 110, 0.05);
  }

  .pathway-top-badge {
    position: static !important;
    margin-bottom: 8px !important;
    font-size: 8.5px !important;
    padding: 3px 8px !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-radius: 8px;
    width: fit-content;
    display: inline-block;
  }

  .pathway-icon-box {
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 6px !important;
    border-radius: 10px !important;
    padding: 6px !important;
  }

  .pathway-icon-box svg {
    width: 18px !important;
    height: 18px !important;
  }

  .pathway-pill-cat {
    font-size: 8.5px !important;
    margin-bottom: 3px !important;
    white-space: nowrap;
    font-weight: 700;
  }

  .pathway-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
  }

  .pathway-desc {
    display: none !important;
  }

  .pathway-cta-wrap {
    margin-top: auto;
    width: 100%;
  }

  .btn-pathway-register {
    padding: 8px 6px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 4px !important;
    box-shadow: none !important;
  }

  .btn-pathway-register .btn-arrow {
    font-size: 10px;
  }

  .pathway-pass-footnote {
    font-size: 8px !important;
    margin-top: 5px !important;
    gap: 3px !important;
    justify-content: center;
  }

  .pathway-pass-footnote svg {
    width: 11px !important;
    height: 11px !important;
  }

  /* Schedule & Timelines Mobile Base */
  #schedule .section-head { margin-bottom: 24px; }

  /* University Leadership */
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 18px;
  }

  /* Venue & Map */
  .venue-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .venue-static-map-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
  }

  /* Footer Mobile Optimization */
  footer {
    padding: 38px 0 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-bottom: 28px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4px;
  }

  .footer-brand-col .brand-logo {
    justify-content: center;
    margin-bottom: 10px !important;
  }

  .footer-brand-col p {
    margin: 0 auto;
    max-width: 320px;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    color: #94a3b8;
  }

  .footer-col-reg,
  .footer-col-nav {
    display: flex;
    flex-direction: column;
  }

  .footer-col h4 {
    color: #f1f5f9;
    font-size: 12.5px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px !important;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    font-size: 12px;
    color: #94a3b8;
    padding: 2px 0;
    display: inline-block;
  }

  .footer-links a:active,
  .footer-links a:hover {
    color: var(--primary);
  }

  /* User Requirement: Remove VRIF Secretariat from footer in mobile view */
  .footer-col-secretariat {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
    padding-top: 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Extra Small Viewport Padding */
  .container {
    padding: 0 12px;
  }

  /* Navbar Extra Small */
  .navbar .container {
    padding: 0 10px;
    gap: 6px;
  }
  .brand-logo {
    gap: 6px;
  }
  .nav-vrif-logo {
    height: 30px;
    max-width: 95px;
  }
  .nav-yes-logo {
    height: 26px;
    max-width: 98px;
  }
  .brand-divider {
    height: 22px;
  }
  #nav-admin-btn {
    display: none;
  }
  #nav-register-btn {
    padding: 6px 10px;
    font-size: 11.5px;
  }

  /* Typography & Poster */
  .poster-yes-title {
    font-size: clamp(28px, 9.5vw, 42px);
  }
  .poster-tagline {
    font-size: 13.5px;
  }
  .hero-celebrating-mascot {
    display: none;
  }
  .countdown-box {
    gap: 6px;
  }
  .countdown-unit {
    min-width: 54px;
    padding: 8px 4px;
  }
  .countdown-val {
    font-size: 17px;
  }
  .countdown-lbl {
    font-size: 8px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr !important;
  }

  /* Impact Number Marquee Mobile */
  .stats-marquee-group {
    gap: 12px;
  }
  .num-card {
    width: 185px;
    min-width: 185px;
    padding: 16px 12px;
    border-radius: 16px;
  }
  .num-val {
    font-size: 26px;
  }
  .num-lbl {
    font-size: 12px;
  }

  /* About Card Extra Small */
  .about-card-wrap {
    padding: 20px 14px;
    border-radius: 14px;
  }

  /* Partner Pills Extra Small */
  .partner-pill-card {
    width: calc(50% - 6px);
    min-width: 120px;
    height: 62px;
    padding: 8px 12px;
    border-radius: 12px;
    justify-content: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  .navbar .container {
    padding: 0 8px;
  }
  .nav-vrif-logo {
    max-width: 82px;
    height: 26px;
  }
  .nav-yes-logo {
    max-width: 86px;
    height: 24px;
  }
  #nav-register-btn {
    padding: 5px 8px;
    font-size: 11px;
  }
  .partner-pill-card {
    width: 100%;
    height: 58px;
  }
  .poster-quick-reg-card {
    padding: 18px 12px;
  }
  .num-card {
    width: 170px;
    min-width: 170px;
    padding: 14px 10px;
  }
}
