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

:root {
  --primary: #00d4ff;
  --primary-dark: #0099bb;
  --primary-rgb: 0, 212, 255;
  --secondary: #ff4d6d;
  --secondary-rgb: 255, 77, 109;
  --accent: #8b5cf6;
  --accent-rgb: 139, 92, 246;
  --gold: #fbbf24;
  --gold-rgb: 251, 191, 36;
  --success: #10b981;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --bg-base: #04060e;
  --bg-dark: #070b18;
  --bg-elevated: #0c1024;

  --glass-1: rgba(255,255,255,0.03);
  --glass-2: rgba(255,255,255,0.06);
  --glass-3: rgba(255,255,255,0.1);
  --glass-border: rgba(255,255,255,0.08);

  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0,212,255,0.15);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease-spring: cubic-bezier(0.175,0.885,0.32,1.275);
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);

  --navbar-height: 70px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: var(--radius-full);
}

::selection { background: rgba(var(--primary-rgb),0.2); color: var(--primary); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}
.text-center { text-align: center; }

.section { padding: 6rem 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.10), rgba(var(--primary-rgb),0.04));
  border: 1px solid rgba(var(--primary-rgb),0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 12px rgba(var(--primary-rgb),0.08);
  transition: box-shadow 0.5s, border-color 0.5s, background 0.5s;
}
.section-label:hover {
  border-color: rgba(var(--primary-rgb),0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 20px rgba(var(--primary-rgb),0.18);
}

.section-title {
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 30%, rgba(var(--primary-rgb),0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.75;
}

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

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.13) 0%,
    rgba(255,255,255,0.07) 40%,
    rgba(var(--primary-rgb),0.06) 70%,
    rgba(255,255,255,0.10) 100%
  );
  backdrop-filter: blur(28px) saturate(1.6) brightness(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.05);

  border-radius: 24px;

  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 40px rgba(0,0,0,0.45),
    0 2px 8px  rgba(0,0,0,0.30),
    0 0 60px rgba(var(--primary-rgb),0.08);

  animation: fadeInDown 0.5s var(--ease-out) both;
  transition:
    box-shadow    0.4s var(--ease-smooth),
    background    0.4s var(--ease-smooth),
    backdrop-filter 0.4s var(--ease-smooth);
  will-change: transform;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.12) 48%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.12) 52%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: liquidShimmer 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-rgb),0.4) 30%,
    rgba(var(--accent-rgb),0.35) 60%,
    rgba(var(--secondary-rgb),0.3) 80%,
    transparent
  );
  opacity: 0.7;
  pointer-events: none;
}

.navbar.scrolled {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.09) 40%,
    rgba(var(--primary-rgb),0.08) 70%,
    rgba(255,255,255,0.12) 100%
  );
  backdrop-filter: blur(36px) saturate(1.8) brightness(1.06);
  -webkit-backdrop-filter: blur(36px) saturate(1.8) brightness(1.06);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.10),
    0 12px 50px rgba(0,0,0,0.55),
    0 4px 12px  rgba(0,0,0,0.35),
    0 0 80px rgba(var(--primary-rgb),0.12);
}

.nav-container {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s, filter 0.2s;
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb),0.35));
}

.logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  -webkit-filter: none;
}
.logo:hover { opacity: 0.85; filter: drop-shadow(0 0 14px rgba(var(--primary-rgb),0.55)); }

.nav-links { display: flex; list-style: none; gap: 0.25rem; position: relative; z-index: 1; }

.nav-links a {
  display: inline-block;
  padding: 0.45rem 1rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: 12px;
  transition: color 0.45s, background 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s, border-color 0.45s;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  border-color: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 4px 14px rgba(0,0,0,0.25);
}
.nav-links a.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb),0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 16px rgba(var(--primary-rgb),0.18);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.mobile-menu:hover { background: rgba(255,255,255,0.1); }
.mobile-menu span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
}

.page-hero {
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--navbar-height) + 4rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%,    rgba(var(--primary-rgb),  0.11) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 100%,  rgba(var(--accent-rgb),   0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%,  rgba(var(--secondary-rgb),0.06) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),0.25), transparent);
}
.page-hero h1 {
  font-size: clamp(2.2rem,6vw,3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-glow-1 {
  width: 950px; height: 950px;
  background: rgba(var(--primary-rgb), 0.13);
  top: -220px; left: -220px;
  animation: glowDrift 18s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 700px; height: 700px;
  background: rgba(var(--secondary-rgb), 0.11);
  bottom: -120px; right: -120px;
  animation: glowDrift 22s ease-in-out infinite alternate-reverse;
}
.hero-glow-3 {
  width: 600px; height: 600px;
  background: rgba(var(--accent-rgb), 0.09);
  bottom: 20%; left: 28%;
  animation: glowDrift 26s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--navbar-height) 2rem 0;
  margin-top: -120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--primary-rgb),0.04));
  border: 1px solid rgba(var(--primary-rgb),0.28);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(16px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(200%) brightness(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 20px rgba(var(--primary-rgb),0.1);
  animation: fadeInDown 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.8rem,8vw,5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
.hero h1 .line-1 { display: block; color: var(--text-primary); }
.hero h1 .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem,2.5vw,1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-out) 0.45s both;
}

.hero-float {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  animation: floatDrift var(--dur,12s) var(--del,0s) ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: max-content;
  text-align: center;

  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.scroll-hint span {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.scroll-hint-line {
  width: 1px;
  height: 36px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(var(--primary-rgb), 0.5));
  animation: scrollLine 2.4s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-smooth);
}
.btn:active { transform: scale(0.96) !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-base);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.55s var(--ease-smooth);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 10px 40px rgba(var(--primary-rgb),0.55), 0 0 20px rgba(var(--primary-rgb),0.2); }
.btn-primary:hover::before { left: 150%; }

.btn-secondary {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, border-color 0.5s, background 0.5s;
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.14), rgba(var(--primary-rgb),0.05));
  border-color: rgba(var(--primary-rgb),0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 8px 32px rgba(0,0,0,0.3), 0 0 24px rgba(var(--primary-rgb),0.15);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

.stats-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 90% 120% at 50% 50%, rgba(var(--primary-rgb), 0.05) 0%, transparent 65%),
    rgba(255, 255, 255, 0.018);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.04));
  backdrop-filter: blur(28px) saturate(220%) brightness(1.04);
  -webkit-backdrop-filter: blur(28px) saturate(220%) brightness(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1.5px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.35), transparent);
}
.stat-number {
  font-size: clamp(2rem,4vw,2.8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-section {
  padding: 1.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.flavor-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, border-color 0.5s;
}
.pill-cyan  { background: linear-gradient(135deg, rgba(var(--primary-rgb),0.10), rgba(var(--primary-rgb),0.04)); border: 1px solid rgba(var(--primary-rgb),0.22); color: var(--primary); }
.pill-pink  { background: linear-gradient(135deg, rgba(var(--secondary-rgb),0.10), rgba(var(--secondary-rgb),0.04)); border: 1px solid rgba(var(--secondary-rgb),0.22); color: var(--secondary); }
.pill-purple{ background: linear-gradient(135deg, rgba(var(--accent-rgb),0.10), rgba(var(--accent-rgb),0.04)); border: 1px solid rgba(var(--accent-rgb),0.22); color: var(--accent); }
.pill-gold  { background: linear-gradient(135deg, rgba(var(--gold-rgb),0.10), rgba(var(--gold-rgb),0.04)); border: 1px solid rgba(var(--gold-rgb),0.22); color: var(--gold); }
.flavor-pill:hover { transform: scale(1.07) translateY(-3px); }
.pill-cyan:hover  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 24px rgba(var(--primary-rgb),0.25); border-color: rgba(var(--primary-rgb),0.45); }
.pill-pink:hover  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 24px rgba(var(--secondary-rgb),0.25); border-color: rgba(var(--secondary-rgb),0.45); }
.pill-purple:hover{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 24px rgba(var(--accent-rgb),0.25); border-color: rgba(var(--accent-rgb),0.45); }
.pill-gold:hover  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 24px rgba(var(--gold-rgb),0.25); border-color: rgba(var(--gold-rgb),0.45); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-top, linear-gradient(90deg, var(--primary), var(--secondary)));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0.8;
}
.feature-card:hover {
  border-color: rgba(var(--icon-rgb, var(--primary-rgb)), 0.35);
  box-shadow:
    0 0 48px rgba(var(--icon-rgb, var(--primary-rgb)), 0.13),
    0 32px 72px rgba(0,0,0,0.52),
    inset 0 1.5px 0 rgba(255,255,255,0.52),
    inset 0 -1px 0 rgba(0,0,0,0.16);
  transform: translateY(-8px) scale(1.012);
}
.feature-card-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  opacity: 0.5;
}
.feature-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: rgba(var(--icon-rgb, 0, 212, 255), 0.1);
  border: 1px solid rgba(var(--icon-rgb, 0, 212, 255), 0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--icon-clr, var(--primary));
  font-size: 0.95rem;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s, background 0.55s, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover .feature-icon-wrap {
  background: rgba(var(--icon-rgb, 0, 212, 255), 0.18);
  box-shadow: 0 0 24px rgba(var(--icon-rgb, 0, 212, 255), 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  border-color: rgba(var(--icon-rgb, 0, 212, 255), 0.45);
  transform: scale(1.12) rotate(-4deg);
}
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0; letter-spacing: -0.01em; }
.feature-title::after {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: rgba(255, 255, 255, 0.13);
  margin-top: 0.65rem;
  margin-bottom: 0.65rem;
}
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.72; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
}
.schedule-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.schedule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.8;
}
.schedule-card:hover {
  border-color: rgba(var(--primary-rgb),0.38);
  box-shadow:
    0 0 48px rgba(var(--primary-rgb), 0.12),
    0 32px 72px rgba(0,0,0,0.52),
    inset 0 1.5px 0 rgba(255,255,255,0.50),
    inset 0 -1px 0 rgba(0,0,0,0.16);
  transform: translateY(-8px) scale(1.012);
}
.location-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  border: 1px solid rgba(16,185,129,0.28);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 12px rgba(16,185,129,0.12);
}
.open-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 1.5s ease infinite;
}
.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.time-slot:last-child { border-bottom: none; }
.day { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.time { font-size: 0.875rem; font-weight: 500; color: var(--primary); font-variant-numeric: tabular-nums; }
.time-slot.is-now { background: rgba(var(--primary-rgb),0.06); border-radius: var(--radius-sm); padding: 0.65rem 0.75rem; margin: 0 -0.75rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-title {
  font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 2rem;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.6rem 0.9rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), color 0.4s, box-shadow 0.5s, background 0.5s;
}
.features-list li:hover {
  border-color: rgba(var(--primary-rgb),0.28);
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.07), rgba(var(--primary-rgb),0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 16px rgba(var(--primary-rgb),0.08);
}
.features-list li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 0.8rem; }
.about-image-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-image-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.8;
}
.about-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin: 0 auto 1.5rem;
}
.about-card-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0; letter-spacing: -0.01em; }
.about-card-title::after {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: rgba(255,255,255,0.13);
  margin: 0.65rem auto;
}
.about-card-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.contact-grid {
  display: flex;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;

}
.contact-card {
  padding: 2.5rem;
  background: var(--glass-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.contact-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  letter-spacing: -0.01em;
}
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.93rem;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.08);
  transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s, background 0.5s;
}
.form-input:focus {
  outline: none;
  border-color: rgba(var(--primary-rgb),0.50);
  background: linear-gradient(145deg, rgba(var(--primary-rgb),0.06), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.12), inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 20px rgba(var(--primary-rgb),0.08);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 130px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s, color 0.4s, box-shadow 0.55s;
}
a.contact-item:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.07), rgba(var(--primary-rgb),0.02));
  border-color: rgba(var(--primary-rgb),0.22);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.06), inset 0 1px 0 rgba(255,255,255,0.10);
}
.contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--primary-rgb),0.04));
  border: 1px solid rgba(var(--primary-rgb),0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s, box-shadow 0.55s, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
a.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.20), rgba(var(--primary-rgb),0.08));
  border-color: rgba(var(--primary-rgb),0.40);
  box-shadow: 0 0 18px rgba(var(--primary-rgb),0.28);
  transform: scale(1.1) rotate(-6deg);
}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-item-value { font-size: 0.9rem; font-weight: 500; }

.events-card {
  padding: 1.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb),0.04), rgba(var(--accent-rgb),0.04));
  border: 1px solid rgba(var(--secondary-rgb),0.12);
  border-radius: var(--radius-lg);
}
.events-title { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.55rem; }
.events-title i { color: var(--secondary); font-size: 0.8rem; }
.events-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.events-list li { font-size: 0.83rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.45rem; }
.events-list li i { color: var(--secondary); font-size: 0.7rem; width: 14px; text-align: center; flex-shrink: 0; }

.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(var(--primary-rgb),0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-image-slot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1.5px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(0,0,0,0.14);
  transition: box-shadow 0.65s cubic-bezier(0.22,1,0.36,1), border-color 0.65s, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.cta-image-slot:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1.5px 0 rgba(255,255,255,0.36), 0 0 40px rgba(var(--primary-rgb),0.08);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-4px) scale(1.01);
}
.cta-image-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.08) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: liquidShimmer 8s linear infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.cta-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.cta-social { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s, border-color 0.55s, background 0.55s;
}
.social-btn i { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.social-btn:hover { transform: translateY(-4px) scale(1.04); }
.social-btn:hover i { transform: scale(1.2) rotate(-8deg); }
.social-btn-fb {
  background: linear-gradient(135deg, rgba(24,119,242,0.12), rgba(24,119,242,0.04));
  border: 1px solid rgba(24,119,242,0.25);
  color: #5b9cf6;
}
.social-btn-fb:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 36px rgba(24,119,242,0.28); border-color: rgba(24,119,242,0.45); }
.social-btn-tt {
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-primary);
}
.social-btn-tt:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 36px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.35); }

.footer {
  padding: 4rem 0 1.5rem;
  background: var(--bg-base);
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),0.25), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 1rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a { transition: color 0.45s, transform 0.5s cubic-bezier(0.22,1,0.36,1), text-shadow 0.5s; }
.footer-col a:hover { color: var(--primary); transform: translateX(5px); text-shadow: 0 0 16px rgba(var(--primary-rgb),0.4); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.55s, color 0.4s, transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s;
}
.footer-social-link i { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.footer-social-link:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--primary-rgb),0.04));
  border-color: rgba(var(--primary-rgb),0.38);
  color: var(--primary);
  transform: translateY(-4px) scale(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 22px rgba(var(--primary-rgb),0.2);
}
.footer-social-link:hover i { transform: rotate(-10deg) scale(1.15); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(64px) scale(0.93) rotateX(4deg);
  filter: blur(14px);
  will-change: opacity, transform, filter;
  transform-origin: center bottom;
  transition:
    opacity   2.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter    2.00s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-64px) scale(0.93) rotateY(-4deg);
  filter: blur(14px);
  will-change: opacity, transform, filter;
  transform-origin: left center;
  transition:
    opacity   2.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter    2.00s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(64px) scale(0.93) rotateY(4deg);
  filter: blur(14px);
  will-change: opacity, transform, filter;
  transform-origin: right center;
  transition:
    opacity   2.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter    2.00s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.32s; }
.d4 { transition-delay: 0.48s; }
.d5 { transition-delay: 0.64s; }
.d6 { transition-delay: 0.82s; }

@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes float      { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
@keyframes floatDrift {
  0%,100% { transform:translateY(0) rotate(0deg) scale(1); }
  33%  { transform:translateY(-18px) rotate(6deg) scale(1.06); }
  66%  { transform:translateY(9px) rotate(-4deg) scale(0.94); }
}
@keyframes glowDrift  { 0% { transform:translate(0,0) scale(1); } 100% { transform:translate(55px,35px) scale(1.12); } }
@keyframes bgOrbDrift {
  0%   { transform: translate(-50%, -50%) scale(1);    }
  100% { transform: translate(-50%, -50%) translate(80px, 55px) scale(1.20); }
}
@keyframes pulseDot   { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
@keyframes scrollLine {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}
@keyframes marqueeScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes floatUp {
  0%   { transform:translateY(0) rotate(0deg); opacity:0.45; }
  100% { transform:translateY(-100vh) rotate(360deg); opacity:0; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --navbar-height: 62px; }
  .section { padding: 4rem 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--navbar-height) + 8px); left: 0; right: 0;

    background:
      linear-gradient(
        135deg,
        rgba(255,255,255,0.11) 0%,
        rgba(255,255,255,0.06) 40%,
        rgba(var(--primary-rgb),0.05) 70%,
        rgba(255,255,255,0.09) 100%
      ),
      rgba(4,6,14,0.72);
    backdrop-filter: blur(28px) saturate(1.6) brightness(1.05);
    -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.05);

    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border-radius: 24px;
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 rgba(0,0,0,0.18),
      0 0 0 1px rgba(255,255,255,0.08),
      0 8px 40px rgba(0,0,0,0.45),
      0 2px 8px rgba(0,0,0,0.30),
      0 0 60px rgba(var(--primary-rgb),0.08);
    overflow: hidden;
  }

  .nav-links.open::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255,255,255,0.12) 48%,
      rgba(255,255,255,0.22) 50%,
      rgba(255,255,255,0.12) 52%,
      transparent 70%
    );
    background-size: 200% 100%;
    animation: liquidShimmer 6s linear infinite;
    pointer-events: none;
    z-index: 0;
  }

  .nav-links.open::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 1px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(var(--primary-rgb),0.4) 30%,
      rgba(var(--accent-rgb),0.35) 60%,
      rgba(var(--secondary-rgb),0.3) 80%,
      transparent
    );
    opacity: 0.7;
    pointer-events: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 2rem; font-size: 1rem; text-align: center; width: 100%; justify-content: center; }
  .mobile-menu { display: flex; }

  .hero h1 { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-image-slot { aspect-ratio: 16 / 9; }
  .schedule-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-list { grid-template-columns: 1fr; }
  .events-list { grid-template-columns: 1fr; }
  .cta-social { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1rem; }
  .btn { padding: 0.8rem 1.6rem; font-size: 0.9rem; }
  .cta-buttons { gap: 0.75rem; flex-direction: column; align-items: center; }
  .contact-card { padding: 1.75rem 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.8s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.4s !important;
  }
}

.map-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    padding: 0 15px;
}

.map-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper {
        margin: 20px 0;
        padding: 0 10px;
    }

    .map-frame {
        height: 350px;
        border-radius: 12px;
    }
}
@media (max-width: 480px) {
    .map-frame {
        height: 300px;
        border-radius: 10px;
    }
}

.footer-link {
    background: linear-gradient(90deg, #ffffff, #03ffdd, #ffffff);
    background-size: 200%;
    background-position: 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: background-position 1.2s ease, transform 0.3s ease;
}

.footer-link:hover {
    background-position: 100%;
    transform: translateX(3px);
}

.gallery-section {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--glass-border);
  overflow: visible;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 65%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%);
}

.gallery-header {
  margin-bottom: 2.5rem;
}

.gallery-viewport {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: visible;
}

.gallery-wrapper {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 78%;
  min-width: 78%;
  opacity: 0.45;
  transition: opacity 0.5s;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-img {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
  background: #0a0806;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 50px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img img {
  max-width: 75%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .gallery-img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .gallery-img {
    height: 220px;
  }
}

.gallery-slide.active .gallery-img img {
  transform: scale(1.03);
}

.gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,6,14,0.82) 0%,
    rgba(4,6,14,0.25) 45%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 480px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  backdrop-filter: blur(22px) saturate(200%) brightness(1.06);
  -webkit-backdrop-filter: blur(22px) saturate(200%) brightness(1.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1.5px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(0,0,0,0.12);
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.gallery-slide-caption h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gallery-slide-caption p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: linear-gradient(145deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.10) 100%);
  backdrop-filter: blur(24px) saturate(200%) brightness(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(1.08);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.40),
    0 2px 8px rgba(0,0,0,0.22),
    inset 0 1.5px 0 rgba(255,255,255,0.40),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0;
  font-weight: bold;
}

.gallery-viewport:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: linear-gradient(145deg,
    rgba(var(--primary-rgb),0.28) 0%,
    rgba(var(--primary-rgb),0.12) 50%,
    rgba(var(--primary-rgb),0.20) 100%);
  border-color: rgba(var(--primary-rgb), 0.60);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.40),
    0 2px 8px rgba(0,0,0,0.22),
    0 0 24px rgba(var(--primary-rgb), 0.35),
    inset 0 1.5px 0 rgba(255,255,255,0.40),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  transform: translateY(-50%) scale(1.15);
  color: #fff;
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-prev {
  left: 1.5rem;
}

.gallery-arrow-next {
  right: 1.5rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s, width 0.35s, transform 0.2s;
}

.gallery-dot.active {
  background: var(--primary);
  width: 26px;
}

.gallery-dot:hover:not(.active) {
  background: rgba(255,255,255,0.3);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-viewport {
    padding: 0 1rem;
    overflow: visible;
  }

  .gallery-wrapper {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .gallery-img {
    height: 260px;
  }

  .gallery-slide-caption {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
    max-width: calc(100% - 2rem);
  }

  .gallery-slide-caption h3 {
    font-size: 1.15rem;
  }

  .gallery-slide-caption p {
    font-size: 0.82rem;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    opacity: 1;
  }

  .gallery-arrow-prev {
    left: 1rem;
  }

  .gallery-arrow-next {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 2rem 0;
  }

  .gallery-viewport {
    padding: 0 0.5rem;
    overflow: visible;
  }

  .gallery-wrapper {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  .gallery-img {
    height: 200px;
  }

  .gallery-slide-caption {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 1rem);
    padding: 0.8rem 1rem;
  }

  .gallery-slide-caption h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .gallery-slide-caption p {
    font-size: 0.75rem;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    opacity: 1;
  }

  .gallery-arrow-prev {
    left: 0.5rem;
  }

  .gallery-arrow-next {
    right: 0.5rem;
  }
}

.live-banner {
  position: sticky;
  top: var(--navbar-height);
  z-index: 90;
  background: linear-gradient(90deg, rgba(16,185,129,0.18) 0%, rgba(16,185,129,0.08) 100%);
  border-bottom: 1px solid rgba(16,185,129,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.live-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.live-banner-pulse {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-banner-text {
  flex: 1;
  min-width: 0;
}

.live-banner-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.live-banner-location {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-banner-time {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  opacity: 0.85;
}

@media (max-width: 480px) {
  .live-banner-location { font-size: 0.9rem; }
  .live-banner-time { font-size: 0.78rem; }
}

.time-slot.is-now {
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-sm);
  position: relative;
}

.time-slot.is-now .day { color: var(--success); font-weight: 700; }
.time-slot.is-now .time { color: var(--success); }

.feature-card,
.schedule-card,
.contact-card,
.events-card,
.about-image-card,
.about-map-card,
.stat-item {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(48px) saturate(260%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(260%) brightness(1.06);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.50),
    0  4px 14px rgba(0, 0, 0, 0.28),
    inset 0  1.5px 0 rgba(255, 255, 255, 0.44),
    inset 0   -1px 0 rgba(0,   0,   0,   0.14),
    0 0 0 0.5px rgba(255, 255, 255, 0.10);
}

.feature-card:hover {
  box-shadow:
    0 0 60px rgba(var(--icon-rgb, var(--primary-rgb)), 0.18),
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.56),
    inset 0  -1px 0 rgba(0,   0,   0,   0.18),
    0 0 0 0.5px rgba(255, 255, 255, 0.15);
}

.contact-card,
.events-card {
  overflow: hidden;
  position: relative;
}

.time-slot {
  transition: background 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s, border-color 0.45s;
  border-radius: 6px;
}

.time-slot:hover:not(.is-now) {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.07), rgba(var(--primary-rgb),0.02));
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb),0.12);
}

.time-slot:hover:not(.is-now) .day {
  color: var(--primary);
}

.stat-item {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 40px rgba(var(--primary-rgb), 0.14),
    0 24px 56px rgba(0,0,0,0.50),
    inset 0 1.5px 0 rgba(255,255,255,0.44);
  border-color: rgba(var(--primary-rgb), 0.30);
}

.stat-item:hover .stat-number {
  filter: drop-shadow(0 0 18px rgba(var(--primary-rgb), 0.75));
}

.feature-title,
.feature-desc,
.stat-number,
.stat-label,
.location-name,
.contact-card-title,
.events-title {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              filter    0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
}

.feature-card:hover .feature-title { transform: scale(1.035); }
.feature-card:hover .feature-desc  { transform: scale(1.018); }

.stat-item:hover .stat-number { transform: scale(1.07); }
.stat-item:hover .stat-label  { transform: scale(1.03); }

.schedule-card:hover .location-name { transform: scale(1.03); }

.contact-card:hover .contact-card-title { transform: scale(1.03); }

.events-card:hover .events-title { transform: scale(1.03); }

.feature-card::after,
.schedule-card::after,
.contact-card::after,
.events-card::after,
.about-map-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: liquidShimmer 12s linear infinite;
  pointer-events: none;
}

.about-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(200%) brightness(1.02);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.02);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.5),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.about-map-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: rgba(var(--primary-rgb), 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-map-frame {
  width: 100%;
  min-height: 400px;
  border: 0;
  display: block;
  filter: brightness(0.88) contrast(1.05) saturate(0.75);
}

@media (max-width: 768px) {
  .about-map-frame { min-height: 260px; }
}

.cta-section::before {
  background: radial-gradient(ellipse 80% 90% at 70% 50%,
    rgba(var(--primary-rgb), 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 10% 80%,
    rgba(var(--accent-rgb), 0.05) 0%, transparent 55%);
}

.navbar {
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 12px 50px rgba(0, 0, 0, 0.50),
    0 4px 12px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(var(--primary-rgb), 0.10);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 55px 55px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.contact-info a i {
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Full-width banner ── */
.hero {
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero::before {
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
