/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/* ==========================================================================
   CSS Variables (Phase 1: Expanded Variables)
   ========================================================================== */

:root {
  /* Color Palette - ProHunters Brand Colors */
  --color-navy: #1a2332;
  --color-navy-light: #2d3e50;
  --color-gold: #C9A961;
  --color-gold-dark: #A88B4A;
  --color-white: #ffffff;
  --color-cream: #f8f9fa;
  --color-red: #A5171D;
  --color-red-light: #c91f26;
  --color-silver: #e4e6eb;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Common RGBA Colors */
  --text-on-glass: rgba(26, 35, 50, 0.75);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-95: rgba(255, 255, 255, 0.95);
  --gold-subtle: rgba(201, 169, 97, 0.08);

  /* Glass Morphism Effects */
  --glass-blur-strong: blur(20px);
  --glass-blur-medium: blur(14px);
  --glass-blur-light: blur(12px);
  --glass-saturation: saturate(120%);
  --glass-brightness: brightness(1.05);
  --glass-bg-light: rgba(255, 255, 255, 0.4);
  --glass-bg-medium: rgba(255, 255, 255, 0.35);
  --glass-bg-subtle: rgba(255, 255, 255, 0.05);
  --glass-border-light: rgba(255, 255, 255, 0.4);
  --glass-border-medium: rgba(255, 255, 255, 0.35);
  --glass-border-subtle: rgba(255, 255, 255, 0.12);

  /* Border Radius */
  --radius-xl: 50px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-full: 50%;

  /* Z-Index Layers */
  --z-background: -1;
  --z-base: 0;
  --z-overlay: 1;
  --z-content: 2;
  --z-header: 10;
  --z-modal: 9999;

  /* Animation Durations & Easing */
  --duration-fast: 0.2s;
  --duration-normal: 0.3s;
  --duration-slow: 0.4s;
  --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);

  --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  background-color: var(--color-white);
  overflow-x: hidden;
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: var(--color-gold);
  color: var(--color-white);
  text-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  color: var(--color-navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-accent);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-sm);
}

p {
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.8;
}

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

a:hover {
  color: var(--color-gold-dark);
}

/* ==========================================================================
   Layout Primitives
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red));
  border-radius: 2px;
}

/* ==========================================================================
   Utility Classes (Phase 3: New Utilities)
   ========================================================================== */

.glass-strong {
  backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
}

.glass-medium {
  backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
  -webkit-backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
}

.glass-surface {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  box-shadow: var(--shadow-glass);
}

.gpu-accelerated {
  transform: translateZ(0);
  will-change: auto;
}

.content-layer {
  position: relative;
  z-index: var(--z-content);
}

/* ==========================================================================
   Component: Buttons
   ========================================================================== */

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  text-align: center;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-md);
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-navy);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
}

.cta-button.secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
}

.cta-button.secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Apple 2025 Style Glass Button */
.glass-button {
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
  -webkit-backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  color: var(--color-white) !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  padding: 1.15rem 3rem;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  transition: all var(--duration-slow) ease;
  position: relative;
  z-index: var(--z-content);
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.glass-button:active {
  transform: translateY(0px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Glass Pills */
.glass-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: var(--z-overlay);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-95) !important;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--easing-smooth),
              background var(--duration-normal) var(--easing-smooth),
              border var(--duration-normal) var(--easing-smooth),
              box-shadow var(--duration-normal) var(--easing-smooth),
              backdrop-filter var(--duration-normal) var(--easing-smooth),
              opacity var(--duration-normal) var(--easing-smooth);
  cursor: pointer;
}

.glass-pill span {
  color: var(--white-95) !important;
}

.glass-pill .icon,
.glass-pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
  color: var(--white-95) !important;
  stroke: currentColor !important;
  fill: none !important;
}

.glass-pill:hover,
.glass-pill:hover span,
.glass-pill:hover .icon,
.glass-pill:hover svg {
  color: var(--white-95) !important;
}

.glass-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-pill:active,
.glass-pill:active span,
.glass-pill:active .icon,
.glass-pill:active svg {
  color: var(--white-95) !important;
}

.glass-pill:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-pill:focus,
.glass-pill:focus span,
.glass-pill:focus .icon,
.glass-pill:focus svg {
  color: var(--white-95) !important;
}

.glass-pill:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.glass-pill:focus:not(:focus-visible) {
  outline: none;
}

.glass-pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.glass-pill:focus-visible,
.glass-pill:focus-visible span,
.glass-pill:focus-visible .icon,
.glass-pill:focus-visible svg {
  color: var(--white-95) !important;
}

/* ==========================================================================
   Component: Icons
   ========================================================================== */

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Component: Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #2a2e3a 0%,
    #1a2d4a 16.66%,
    #2d3e56 33.33%,
    #1a3d2e 50%,
    #2d1a3d 66.66%,
    #3d1a1f 83.33%,
    #2a2e3a 100%
  );
  background-size: 700% 700%;
  animation: smooth-gradient 30s linear infinite;
  will-change: background-position;
  transform: translateZ(0);
  z-index: var(--z-background);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    225deg,
    rgba(45, 62, 86, 0.4) 0%,
    rgba(26, 61, 46, 0.35) 25%,
    rgba(45, 26, 61, 0.4) 50%,
    rgba(61, 26, 31, 0.35) 75%,
    rgba(26, 45, 74, 0.4) 100%
  );
  background-size: 800% 800%;
  animation: wave-gradient 45s ease-in-out infinite;
  mix-blend-mode: overlay;
  opacity: 0.6;
  will-change: background-position;
  transform: translateZ(0);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 20% 30%,
    rgba(201, 169, 97, 0.08) 0%,
    transparent 40%
  ),
  radial-gradient(
    ellipse at 80% 70%,
    rgba(165, 23, 29, 0.06) 0%,
    transparent 50%
  );
  animation: ambient-pulse 60s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  opacity: 0.5;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto var(--spacing-md);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.hero-title-prelude {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.5px;
  color: var(--color-white);
  opacity: 0.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  line-height: 1.3;
}

.hero-title-main {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  letter-spacing: -0.5px;
  color: var(--color-white);
  opacity: 1.0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  line-height: 1.1;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.12));
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: var(--spacing-lg);
  color: var(--color-cream);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Component: Benefits Section
   ========================================================================== */

.benefits {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0.6) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(248, 249, 250, 0.6) 100%
  );
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="3" type="fractalNoise"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.05"/></svg>');
  opacity: 1;
  pointer-events: none;
  z-index: var(--z-base);
  animation: noise-movement 50s ease-in-out infinite alternate;
  mix-blend-mode: overlay;
  transform: translateZ(0);
  will-change: auto;
}

.benefits::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.1) 0%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(201, 169, 97, 0.1) 50%,
    rgba(255, 255, 255, 0.08) 75%,
    rgba(248, 249, 250, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: mesh-morph 50s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: var(--z-base);
  mix-blend-mode: soft-light;
  transform: translateZ(0);
  will-change: auto;
}

.benefits > .container {
  position: relative;
  z-index: var(--z-overlay);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  border: 1px solid var(--glass-border-light);
  box-shadow: var(--shadow-glass);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transform: translateZ(0);
  contain: layout paint;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.25),
    rgba(165, 23, 29, 0.2)
  );
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-navy);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.benefit-card p {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: var(--text-on-glass);
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Component: Program Section (Timeline)
   ========================================================================== */

.program {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 169, 97, 0.08) 0%,
    rgba(26, 35, 50, 0.05) 40%,
    transparent 70%
  );
  animation: radial-pulse 35s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: var(--z-base);
  mix-blend-mode: overlay;
  transform: translateZ(0);
  will-change: auto;
}

.program::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.5) 0%, transparent 4px),
    radial-gradient(circle at 85% 30%, rgba(26, 35, 50, 0.4) 0%, transparent 5px),
    radial-gradient(circle at 40% 50%, rgba(201, 169, 97, 0.45) 0%, transparent 4px),
    radial-gradient(circle at 70% 70%, rgba(26, 35, 50, 0.5) 0%, transparent 6px),
    radial-gradient(circle at 25% 80%, rgba(201, 169, 97, 0.4) 0%, transparent 5px),
    radial-gradient(circle at 60% 15%, rgba(26, 35, 50, 0.45) 0%, transparent 4px),
    radial-gradient(circle at 90% 85%, rgba(201, 169, 97, 0.5) 0%, transparent 5px),
    radial-gradient(circle at 10% 60%, rgba(26, 35, 50, 0.4) 0%, transparent 6px),
    radial-gradient(circle at 50% 35%, rgba(201, 169, 97, 0.45) 0%, transparent 4px),
    radial-gradient(circle at 80% 55%, rgba(26, 35, 50, 0.4) 0%, transparent 5px),
    radial-gradient(circle at 35% 90%, rgba(201, 169, 97, 0.5) 0%, transparent 6px),
    radial-gradient(circle at 65% 10%, rgba(26, 35, 50, 0.45) 0%, transparent 4px);
  background-size: 100% 100%;
  animation: particle-float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: var(--z-base);
  opacity: 0.6;
  transform: translateZ(0);
  will-change: auto;
}

.program > .container {
  position: relative;
  z-index: var(--z-overlay);
}

.timeline {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.8px;
  top: 10px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(201, 169, 97, 0.6),
    rgba(165, 23, 29, 0.4)
  );
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.9),
    rgba(201, 169, 97, 0.6)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15), 0 4px 12px rgba(201, 169, 97, 0.3);
}

.timeline-item.highlight::before {
  background: radial-gradient(
    circle,
    rgba(165, 23, 29, 0.9),
    rgba(165, 23, 29, 0.6)
  );
  box-shadow: 0 0 0 4px rgba(165, 23, 29, 0.15), 0 4px 12px rgba(165, 23, 29, 0.3);
}

.timeline-item.award::before {
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.95),
    rgba(201, 169, 97, 0.7)
  );
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2), 0 4px 16px rgba(201, 169, 97, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
  animation: awardGlow 3s ease-in-out infinite;
}

.timeline-time {
  display: inline-block;
  background: rgba(26, 35, 50, 0.08);
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  border: 1px solid rgba(26, 35, 50, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.timeline-content {
  background: var(--glass-bg-medium);
  backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  border: 1px solid var(--glass-border-medium);
  box-shadow: var(--shadow-glass);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  transform: translateZ(0);
  contain: layout paint;
}

.timeline-item.award .timeline-content {
  position: relative;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(26, 35, 50, 0.03) 100%);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.timeline-content h3 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.timeline-content p {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: var(--text-on-glass);
  line-height: 1.7;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.timeline-item.award .timeline-content h3 {
  color: var(--color-gold);
}

.timeline-content ul {
  margin: var(--spacing-sm) 0;
  padding-left: var(--spacing-md);
}

.timeline-content ul li {
  color: var(--text-on-glass);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Speaker Mini Cards in Timeline */
.speakers-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.speaker-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform var(--duration-normal) ease;
  max-width: 100px;
}

.speaker-mini-card:hover {
  transform: scale(1.05);
}

.speaker-mini-card img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-normal) ease;
}

.speaker-mini-card:hover img {
  border-color: var(--color-red);
  box-shadow: 0 6px 16px rgba(165, 23, 29, 0.3);
}

.speaker-mini-card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: center;
  line-height: 1.3;
}

/* Moderator Accent Block */
.moderator-accent-block {
  max-width: 600px;
  margin: 32px auto;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--color-gold);
  overflow: hidden;
}

.moderator-accent-block__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
}

.moderator-accent-block__text {
  flex: 1;
}

.moderator-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-subtle);
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.moderator-badge .badge-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.moderator-accent-block__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 4px 0;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  line-height: 1.3;
}

.moderator-accent-block__title {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-body, 'Montserrat', sans-serif);
}

.moderator-accent-block__photo-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.moderator-accent-block__photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--color-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Award Ceremony Highlight */
.award-ceremony-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  animation: award-glow 4s ease-in-out infinite;
  will-change: filter;
  pointer-events: none;
}

/* Award Confetti Container */
.award-confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-overlay);
  overflow: hidden;
}

.confetti-particle {
  position: absolute;
  top: -10px;
  left: var(--start-x);
  opacity: 0;
  will-change: transform, opacity;
  animation: confetti-fall 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.confetti-particle.gold {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, rgba(201, 169, 97, 0.7) 40%, transparent 90%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(201, 169, 97, 0.5), 0 0 30px rgba(201, 169, 97, 0.3);
  filter: blur(1px);
}

.confetti-particle.red {
  width: 7px;
  height: 7px;
  background: radial-gradient(circle, rgba(201, 31, 38, 0.85) 0%, rgba(165, 23, 29, 0.6) 40%, transparent 90%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px rgba(165, 23, 29, 0.7), 0 0 16px rgba(165, 23, 29, 0.4), 0 0 24px rgba(165, 23, 29, 0.2);
  filter: blur(0.8px);
}

.confetti-particle.navy {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(45, 62, 80, 0.8) 0%, rgba(26, 35, 50, 0.5) 40%, transparent 90%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 6px rgba(45, 62, 80, 0.6), 0 0 12px rgba(26, 35, 50, 0.3), 0 0 18px rgba(26, 35, 50, 0.15);
  filter: blur(0.7px);
}

/* ==========================================================================
   Component: Venue Section
   ========================================================================== */

.venue {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 250, 0.6) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(248, 249, 250, 0.6) 100%
  );
  position: relative;
  overflow: hidden;
}

.venue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.08) 0%,
    rgba(201, 169, 97, 0.12) 20%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(165, 23, 29, 0.08) 60%,
    rgba(248, 249, 250, 0.08) 80%,
    rgba(201, 169, 97, 0.1) 100%
  );
  background-size: 700% 700%;
  animation: aurora-flow 45s ease-in-out infinite;
  pointer-events: none;
  z-index: var(--z-base);
  mix-blend-mode: overlay;
  transform: translateZ(0);
  will-change: auto;
}

.venue > .container {
  position: relative;
  z-index: var(--z-overlay);
}

.venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.venue-detail {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-saturation) var(--glass-brightness);
  border: 1px solid var(--glass-border-light);
  box-shadow: var(--shadow-glass);
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  transform: translateZ(0);
  contain: layout paint;
}

.venue-detail .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 12px;
  background: rgba(201, 169, 97, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.venue-detail h4 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.venue-detail p {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: var(--text-on-glass);
  line-height: 1.65;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.venue-detail strong {
  font-weight: 600;
  color: var(--color-navy);
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  padding: 8px 16px;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--radius-xl);
  transition: all 200ms var(--easing-smooth);
}

.map-link:hover {
  background: rgba(201, 169, 97, 0.12);
  border-color: rgba(201, 169, 97, 0.3);
  color: var(--color-gold-dark);
}

.venue-map {
  padding: 8px;
  background: var(--glass-bg-medium);
  backdrop-filter: var(--glass-blur-strong) saturate(120%);
  -webkit-backdrop-filter: var(--glass-blur-strong) saturate(120%);
  border: 1px solid var(--glass-border-medium);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  height: 450px;
  overflow: hidden;
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Component: CTA Section
   ========================================================================== */

.cta-section {
  padding: 96px 0 0 0;
  min-height: 50vh;
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    #2d1a3d 50%,
    var(--color-red) 100%
  );
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(201, 169, 97, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 169, 97, 0.08) 0%,
      transparent 60%
    );
  animation: shimmer-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: var(--z-base);
  transform: translateZ(0);
  will-change: auto;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(201, 169, 97, 0.6) 0%, transparent 10px),
    radial-gradient(circle at 75% 35%, rgba(201, 169, 97, 0.5) 0%, transparent 12px),
    radial-gradient(circle at 40% 60%, rgba(201, 169, 97, 0.55) 0%, transparent 8px),
    radial-gradient(circle at 85% 70%, rgba(201, 169, 97, 0.5) 0%, transparent 10px),
    radial-gradient(circle at 15% 80%, rgba(201, 169, 97, 0.6) 0%, transparent 12px),
    radial-gradient(circle at 60% 15%, rgba(201, 169, 97, 0.4) 0%, transparent 9px),
    radial-gradient(circle at 90% 50%, rgba(201, 169, 97, 0.55) 0%, transparent 11px),
    radial-gradient(circle at 30% 45%, rgba(201, 169, 97, 0.5) 0%, transparent 10px),
    radial-gradient(circle at 70% 85%, rgba(201, 169, 97, 0.6) 0%, transparent 12px),
    radial-gradient(circle at 10% 40%, rgba(201, 169, 97, 0.45) 0%, transparent 8px);
  background-size: 100% 100%;
  filter: blur(4px);
  animation: powder-drift 25s ease-in-out infinite;
  pointer-events: none;
  z-index: var(--z-base);
  opacity: 0.7;
  mix-blend-mode: screen;
  transform: translateZ(0);
  will-change: auto;
}

.cta-section .snowflakes {
  z-index: var(--z-overlay);
}

.cta-section .snowflakes .snowflake {
  color: rgba(255, 255, 255, 0.6);
}

.cta-content {
  position: relative;
  z-index: var(--z-content);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-content p {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--white-90);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cta-note {
  margin-top: 32px;
  display: inline-block;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: var(--glass-blur-light) saturate(110%);
  -webkit-backdrop-filter: var(--glass-blur-light) saturate(110%);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.cta-note a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.4);
  text-underline-offset: 2px;
  transition: all 200ms ease;
  padding: 8px 4px;
  display: inline-block;
  min-height: 44px;
  line-height: 1.75;
}

.cta-note a:hover {
  color: var(--white-95);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Component: Footer
   ========================================================================== */

.footer {
  margin-top: 80px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: none;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(201, 169, 97, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(201, 169, 97, 0.03) 0%,
      transparent 60%
    );
  animation: ambient-glow-pulse 70s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: var(--z-base);
  mix-blend-mode: screen;
  opacity: 0.8;
  transform: translateZ(0);
  will-change: auto;
}

.footer > .container {
  position: relative;
}

.footer-content {
  background: var(--glass-bg-subtle);
  backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
  -webkit-backdrop-filter: var(--glass-blur-medium) var(--glass-saturation);
  border: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px 48px 40px;
  position: relative;
  z-index: var(--z-content);
}

.footer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 50%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
  z-index: -1;
}

.footer-logo img {
  max-width: 140px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: all 300ms var(--easing-smooth);
}

.footer-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(201, 169, 97, 0.3));
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 6px 0;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-info p:first-child {
  font-weight: 500;
  color: var(--white-90);
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Component: Speaker Modal
   ========================================================================== */

.speaker-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
}

.speaker-modal.active {
  display: block;
  animation: fadeIn var(--duration-normal) ease;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  margin: 7.5vh auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: slideUp var(--duration-slow) var(--easing-smooth);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(165, 23, 29, 0.4);
}

.modal-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-photo {
  position: sticky;
  top: 0;
  height: fit-content;
}

.modal-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-info {
  padding: 1rem 0;
}

.modal-name {
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-weight: 700;
  line-height: 1.2;
}

.modal-position {
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.modal-bio {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.modal-bio p {
  margin-bottom: 1rem;
}

.modal-bio p:last-child {
  margin-bottom: 0;
}

.modal-bio ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.modal-bio ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-bio ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.modal-topic {
  padding-top: 2rem;
  border-top: 2px solid var(--color-silver);
  margin-top: 2rem;
}

.modal-topic strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.modal-topic p {
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--color-cream);
  border-radius: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 5px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-dark);
}

/* ==========================================================================
   Decorative Elements: Snowflakes, Sparkles, Confetti
   ========================================================================== */

/* Snowflakes */
.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--z-overlay);
}

.snowflake {
  position: absolute;
  top: -10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2em;
  user-select: none;
  animation: fall linear infinite;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 8px rgba(200, 220, 255, 0.6), 0 0 12px rgba(180, 200, 255, 0.4);
  will-change: transform, opacity;
}

.snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
  font-size: 1.5em;
  opacity: 0.8;
  filter: blur(0.8px);
}

.snowflake:nth-child(2) {
  left: 30%;
  animation-duration: 22s;
  animation-delay: 3s;
  font-size: 1.6em;
  opacity: 0.75;
  filter: blur(1px);
}

.snowflake:nth-child(3) {
  left: 60%;
  animation-duration: 19s;
  animation-delay: 6s;
  font-size: 1.4em;
  opacity: 0.8;
  filter: blur(0.9px);
}

.snowflake:nth-child(4) {
  left: 85%;
  animation-duration: 21s;
  animation-delay: 2s;
  font-size: 1.5em;
  opacity: 0.77;
  filter: blur(1px);
}

.snowflake:nth-child(5) {
  left: 20%;
  animation-duration: 16s;
  animation-delay: 1s;
  font-size: 1.1em;
  opacity: 0.7;
  filter: blur(0.5px);
}

.snowflake:nth-child(6) {
  left: 45%;
  animation-duration: 17s;
  animation-delay: 4s;
  font-size: 1.2em;
  opacity: 0.68;
  filter: blur(0.4px);
}

.snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 18s;
  animation-delay: 2.5s;
  font-size: 1em;
  opacity: 0.7;
  filter: blur(0.5px);
}

.snowflake:nth-child(8) {
  left: 95%;
  animation-duration: 16.5s;
  animation-delay: 5s;
  font-size: 1.15em;
  opacity: 0.7;
  filter: blur(0.6px);
}

.snowflake:nth-child(9) {
  left: 15%;
  animation-duration: 13s;
  animation-delay: 0.5s;
  font-size: 0.8em;
  opacity: 0.55;
}

.snowflake:nth-child(10) {
  left: 40%;
  animation-duration: 12s;
  animation-delay: 3.5s;
  font-size: 0.75em;
  opacity: 0.6;
}

.snowflake:nth-child(11) {
  left: 65%;
  animation-duration: 14s;
  animation-delay: 1.5s;
  font-size: 0.85em;
  opacity: 0.5;
}

.snowflake:nth-child(12) {
  left: 80%;
  animation-duration: 13.5s;
  animation-delay: 4.5s;
  font-size: 0.7em;
  opacity: 0.58;
}

/* Sparkles */
.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-overlay);
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--color-gold), 0 0 20px rgba(201, 169, 97, 0.5);
  animation: twinkle 3s ease-in-out infinite;
  opacity: 0;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; left: 85%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 60%; left: 25%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 70%; left: 75%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { top: 40%; left: 10%; animation-delay: 1.5s; }
.sparkle:nth-child(6) { top: 50%; left: 90%; animation-delay: 2.5s; }
.sparkle:nth-child(7) { top: 80%; left: 35%; animation-delay: 1.2s; }
.sparkle:nth-child(8) { top: 15%; left: 65%; animation-delay: 0.8s; }

/* ==========================================================================
   Animations & Keyframes (Phase 9: Consolidated)
   ========================================================================== */

@keyframes ambient-glow-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@keyframes ambient-pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes aurora-flow {
  0% {
    background-position: 0 50%;
  }
  25% {
    background-position: 50% 75%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 25%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes award-glow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(201, 169, 97, 0.3));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.6));
    opacity: 1;
  }
}

@keyframes awardGlow {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(201, 169, 97, 0.2),
      0 4px 16px rgba(201, 169, 97, 0.4),
      0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(201, 169, 97, 0.25),
      0 6px 20px rgba(201, 169, 97, 0.5),
      0 0 30px rgba(255, 215, 0, 0.4);
  }
}

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

@keyframes confetti-fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(320px) translateX(var(--drift-x)) rotate(25deg) scale(1.1);
    opacity: 0;
  }
}

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

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

@keyframes fall {
  0% {
    transform: translateY(0vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

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

@keyframes mesh-morph {
  0% {
    background-position: 0 50%;
  }
  33% {
    background-position: 50% 100%;
  }
  66% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes noise-movement {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.05;
  }
  50% {
    transform: translate(2px, 2px);
    opacity: 0.07;
  }
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -15px);
  }
  50% {
    transform: translate(-8px, 12px);
  }
  75% {
    transform: translate(12px, 8px);
  }
}

@keyframes powder-drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, 15px) rotate(2deg);
  }
  50% {
    transform: translate(12px, -10px) rotate(-2deg);
  }
  75% {
    transform: translate(-8px, -12px) rotate(1deg);
  }
}

@keyframes radial-pulse {
  0%, 100% {
    opacity: 0.03;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.1);
  }
}

@keyframes shimmer-pulse {
  0%, 100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
}

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

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

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

@keyframes wave-gradient {
  0% {
    background-position: 0 30%;
  }
  25% {
    background-position: 40% 60%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 60% 40%;
  }
  100% {
    background-position: 0 30%;
  }
}

/* ==========================================================================
   Responsive Design (Phase 10: Consolidated Media Queries)
   ========================================================================== */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .venue-content {
    grid-template-columns: 1fr;
  }

  .venue-map {
    height: 350px;
  }

  .modal-content {
    max-width: 95%;
    margin: 2.5vh auto;
    max-height: 95vh;
  }

  .modal-body {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .modal-photo {
    position: relative;
  }

  .modal-photo img {
    height: 400px;
  }

  .modal-name {
    font-size: 1.875rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .glass-button {
    margin-bottom: 1.75rem;
  }

  .glass-pills {
    margin-top: 1.75rem;
  }

  .program::after {
    opacity: 0.4;
  }

  .cta-section::after {
    opacity: 0.5;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .hero-logo {
    max-width: 150px;
  }

  .hero-background {
    background-size: 600% 600%;
    animation-duration: 35s;
  }

  .hero-title {
    gap: 0.35rem;
  }

  .hero-title-prelude {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    letter-spacing: 0.3px;
  }

  .hero-title-main {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    letter-spacing: -0.3px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 1rem;
  }

  .hero-details {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .scroll-indicator {
    display: none;
  }

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

  .benefit-card {
    backdrop-filter: var(--glass-blur-light) var(--glass-saturation) var(--glass-brightness);
    -webkit-backdrop-filter: var(--glass-blur-light) var(--glass-saturation) var(--glass-brightness);
  }

  .timeline::before {
    left: 9px;
    top: 5px;
  }

  .timeline-item {
    padding-left: var(--spacing-lg);
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-item.award .timeline-content {
    padding: 20px;
  }

  .award-ceremony-icon {
    width: 24px;
    height: 24px;
    top: 12px;
    right: 12px;
  }

  .timeline-item.award .timeline-content h3 {
    font-size: 1.05em;
    padding-right: 32px;
  }

  .speakers-preview {
    gap: 1rem;
  }

  .speaker-mini-card img {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .speaker-mini-card span {
    font-size: 0.75rem;
  }

  .moderator-accent-block {
    max-width: 100%;
    margin: 24px 0;
  }

  .moderator-accent-block__content {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 16px;
  }

  .moderator-accent-block__text {
    order: 2;
  }

  .moderator-accent-block__photo-wrapper {
    order: 1;
    width: 60px;
    height: 60px;
  }

  .moderator-badge {
    font-size: 9px;
    padding: 3px 10px;
  }

  .moderator-badge .badge-icon {
    width: 12px;
    height: 12px;
  }

  .moderator-accent-block__name {
    font-size: 20px;
  }

  .moderator-accent-block__title {
    font-size: 14px;
  }

  .venue-map {
    height: 300px;
  }

  .map-link {
    padding: 12px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .modal-content {
    border-radius: var(--radius-md);
  }

  .modal-body {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
  }

  .modal-photo img {
    height: 350px;
  }

  .modal-name {
    font-size: 1.625rem;
  }

  .modal-position {
    font-size: 1rem;
  }

  .modal-bio {
    font-size: 0.9375rem;
  }

  .sparkle {
    display: none;
  }

  .snowflake:nth-child(n+7) {
    display: none;
  }

  .cta-section {
    padding: 64px 0 0;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .glass-button {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    width: 100%;
    max-width: 380px;
    margin-bottom: 1.5rem;
  }

  .glass-pills {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  .glass-pill {
    width: 100%;
    max-width: 380px;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }

  .footer {
    margin-top: 60px;
    padding: 0;
  }

  .footer-content {
    padding: 40px 32px 40px 32px;
    border-radius: 18px 18px 0 0;
    backdrop-filter: var(--glass-blur-light) var(--glass-saturation);
    -webkit-backdrop-filter: var(--glass-blur-light) var(--glass-saturation);
  }

  .footer-logo img {
    max-width: 120px;
  }

  .program::after {
    opacity: 0.2;
    animation-duration: 30s;
  }

  .cta-section::after {
    opacity: 0.3;
    animation-duration: 35s;
    filter: blur(5px);
  }

  .benefits::before {
    opacity: 0.03;
  }

  .cta-section::after {
    filter: blur(3px);
  }

  .confetti-particle:nth-child(n+7) {
    display: none;
  }

  .confetti-particle {
    animation-duration: 3.5s;
  }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    text-align: left;
    padding: 0 0.5rem;
  }

  .hero-logo,
  .footer-logo img {
    max-width: 120px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .venue-detail .icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .venue-detail,
  .timeline-content {
    padding: 20px 16px;
  }

  .venue-map {
    height: 250px;
  }

  .timeline-time {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
  }

  .moderator-accent-block__content {
    padding: 16px 20px;
  }

  .moderator-accent-block__photo-wrapper {
    width: 50px;
    height: 50px;
  }

  .moderator-accent-block__name {
    font-size: 18px;
  }

  .moderator-accent-block__title {
    font-size: 13px;
  }

  .cta-section {
    padding: 48px 0 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-note {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .glass-button {
    padding: 0.95rem 1.75rem;
    font-size: 1rem;
  }

  .glass-pill {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .glass-pill .icon {
    width: 18px;
    height: 18px;
  }

  .footer {
    margin-top: 48px;
    padding: 0;
  }

  .footer-content {
    padding: 36px 24px 36px 24px;
    gap: 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    max-width: calc(100% - 32px);
  }

  .footer-logo img {
    max-width: 100px;
  }

  .footer-info p {
    font-size: 0.8125rem;
  }

  .footer-info p:first-child {
    font-size: 0.875rem;
  }

  .program::after,
  .cta-section::after {
    display: none;
  }

  .benefits::before {
    animation: none;
    opacity: 0.02;
  }

  .award-confetti-container {
    display: none;
  }
}

/* Tiny Mobile: 375px */
@media (max-width: 375px) {
  .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0 0.25rem;
  }

  .hero-logo,
  .footer-logo img {
    max-width: 100px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .venue-detail .icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .venue-detail,
  .timeline-content {
    padding: 16px 12px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .venue-map {
    height: 220px;
  }

  .glass-pill {
    max-width: calc(100vw - 2rem);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-background,
  .hero-background::before,
  .hero-background::after {
    animation: none !important;
  }

  .hero-background {
    background-position: 0 50%;
  }

  .hero-title-main {
    filter: none;
  }

  .snowflake,
  .sparkle,
  .timeline-item.award::before {
    animation: none;
    display: none;
  }

  .award-ceremony-icon {
    animation: none !important;
    filter: drop-shadow(0 0 4px rgba(201, 169, 97, 0.3));
    opacity: 1;
  }

  .award-confetti-container {
    display: none !important;
  }

  .moderator-accent-block,
  .speaker-modal.active,
  .modal-content,
  .modal-close,
  .speaker-mini-card {
    animation: none;
    transition: none;
  }

  .glass-button,
  .glass-pill {
    transition: none;
  }

  .glass-button:hover,
  .glass-pill:hover {
    transform: none;
  }

  .benefits::before,
  .benefits::after,
  .venue::before,
  .footer::after,
  .program::before,
  .program::after,
  .cta-section::before,
  .cta-section::after {
    animation: none !important;
  }

  .benefits::after {
    background-position: 50% 50%;
  }

  .venue::before {
    background-position: 50% 50%;
  }

  .footer::after {
    opacity: 0.6;
    transform: scale(1);
  }

  .program::before {
    opacity: 0.05;
    transform: scale(1);
  }

  .program::after,
  .cta-section::after {
    transform: translate(0, 0);
  }

  .cta-section::before {
    opacity: 0.08;
  }
}

/* High Contrast */
@media (prefers-contrast: more) {
  .glass-button {
    background: rgba(201, 169, 97, 0.5) !important;
    border-width: 2px;
  }

  .glass-pill {
    background: rgba(255, 255, 255, 0.15);
    border-width: 1.5px;
  }
}

/* ==========================================================================
   Performance Optimizations
   ========================================================================== */

.benefit-card:hover,
.venue-detail:hover,
.timeline-content:hover {
  will-change: transform;
}

.benefits,
.venue,
.program,
.cta-section {
  contain: layout paint;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(20px)) {
  .glass-button {
    background: rgba(201, 169, 97, 0.85) !important;
  }

  .glass-pill {
    background: rgba(26, 35, 50, 0.7);
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .hero-background,
  .scroll-indicator,
  .cta-button,
  .venue-map {
    display: none;
  }
}

/* ==========================================================================
   Helper Classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

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

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Naming Convention Documentation (Phase 7)
   ========================================================================== */

/*
 * NAMING CONVENTIONS:
 *
 * This project uses a hybrid naming approach:
 * - Component names: kebab-case (e.g., .hero-section, .benefit-card)
 * - Modifiers: double-dash for BEM-like modifiers (e.g., .moderator-accent-block__content)
 * - State classes: single word or hyphenated (e.g., .active, .highlight, .award)
 *
 * Future refactoring consideration: Full BEM (Block__Element--Modifier) convention
 * would improve maintainability but requires HTML updates.
 */
