/* ════════════════════════════════════════════
   AFROBEAT HUB 2028 — iOS 27 Glassmorphism Design
   Dark-first, glassy, neon-accented, futuristic
   ════════════════════════════════════════════ */

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

:root {
  /* Core Palette */
  --black: #040407;
  --dark1: #080c0e;
  --dark2: #0d1117;
  --dark3: #111820;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.1);
  --yellow: #f5c518;
  --yellow-glow: rgba(245,197,24,0.35);
  --green: #1a6b2e;
  --green-neon: #22ff6e;
  --white: #ffffff;
  --grey: rgba(255,255,255,0.55);
  --grey2: rgba(255,255,255,0.35);

  /* Radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Blur */
  --blur-sm: blur(8px);
  --blur: blur(16px);
  --blur-lg: blur(32px);
  --blur-xl: blur(60px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── PARTICLES CANVAS ── */
.particle-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.4;
}

/* ── BUTTONS ── */
.btn-primary-glow {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  border: none; border-radius: var(--r-full);
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
  box-shadow: 0 0 20px var(--yellow-glow);
}
.btn-primary-glow:hover {
  background: #ffe135;
  box-shadow: 0 0 40px rgba(245,197,24,0.6), 0 8px 32px rgba(245,197,24,0.3);
  transform: translateY(-2px);
}
.btn-primary-glow:active { transform: scale(0.97); }

.btn-glass {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  font-weight: 600; font-size: 14px;
  border-radius: var(--r-full);
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.btn-glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-md { padding: 12px 28px; font-size: 14px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-xs { padding: 7px 14px; font-size: 12px; }

/* ── AD BANNER TOP ── */
.ad-banner-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: linear-gradient(90deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--glass-border);
  height: 32px; overflow: hidden; display: flex; align-items: center;
}
.ad-marquee {
  display: inline-flex; white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  font-size: 11px; font-weight: 600;
  color: var(--yellow); letter-spacing: 0.05em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── NAV ── */
.nav-glass {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 1000;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(4,4,7,0.7);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.nav-glass.scrolled {
  background: rgba(4,4,7,0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.nav-logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 8px; }
.logo-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--white); letter-spacing: 0.05em; line-height: 1;
}
.logo-wordmark small {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  color: var(--yellow); font-family: 'Outfit', sans-serif; font-weight: 600;
}

.nav-links {
  display: none; list-style: none; gap: 6px;
}
.nav-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey);
  padding: 7px 12px; border-radius: var(--r-full);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: var(--glass);
}

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

.hamburger {
  width: 44px; height: 44px; border: none; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: var(--r);
  cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8,12,14,0.96);
  backdrop-filter: var(--blur-lg);
  width: min(88vw, 360px); height: 100%;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 108px 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--glass-border);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }

.m-backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.m-backdrop.open { opacity: 1; pointer-events: all; }

.m-link {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600; color: var(--grey);
  padding: 13px 14px; border-radius: var(--r);
  transition: all 0.2s;
}
.m-link:hover { background: var(--glass); color: var(--white); }
.admin-link { color: var(--yellow) !important; margin-top: 8px; }
.m-divider { height: 1px; background: var(--glass-border); margin: 16px 0; }
.m-copyright { text-align: center; font-size: 12px; color: var(--grey2); margin-top: auto; padding-top: 24px; }

/* ── HERO ── */
.hero-2028 {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #0d1117 0%, #040407 100%);
}

.hero-overlay-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.orb1 { width: 600px; height: 600px; background: rgba(26,107,46,0.2); top: -100px; left: -100px; animation: orb-float 8s ease-in-out infinite; }
.orb2 { width: 500px; height: 500px; background: rgba(245,197,24,0.12); bottom: -100px; right: -50px; animation: orb-float 10s ease-in-out infinite reverse; }
.orb3 { width: 300px; height: 300px; background: rgba(147,51,234,0.15); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: orb-pulse 4s ease-in-out infinite; }

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%,-50%) scale(1.2); }
}

.hero-content-2028 {
  position: relative; z-index: 1;
  text-align: center; padding: 40px 20px;
  max-width: 780px; width: 100%;
}

.hero-badge-2028 {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  padding: 8px 20px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--grey); margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title-2028 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 14vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.glow-text {
  color: var(--yellow);
  text-shadow: 0 0 60px rgba(245,197,24,0.5), 0 0 120px rgba(245,197,24,0.2);
  font-style: normal;
}

.hero-sub-2028 {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--grey);
  max-width: 560px; margin: 0 auto 32px;
  line-height: 1.75;
}

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

.hero-stats-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur);
  border-radius: var(--r-xl); padding: 20px 40px;
  width: fit-content; margin: 0 auto;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--yellow); }
.hero-stat span { font-size: 12px; color: var(--grey); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--grey2); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ── LIVE STRIP ── */
.live-strip {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(34,255,110,0.08);
  border-top: 1px solid rgba(34,255,110,0.2);
  border-bottom: 1px solid rgba(34,255,110,0.2);
  padding: 12px 24px;
}
.live-badge {
  background: rgba(255,40,40,0.15);
  border: 1px solid rgba(255,40,40,0.4);
  border-radius: var(--r-full);
  color: #ff4444; font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; padding: 4px 12px;
  animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.live-content { flex: 1; font-size: 14px; color: var(--grey); }
.live-viewers { color: var(--green-neon); font-weight: 600; margin-left: 16px; }

/* ── SECTIONS ── */
.section-dark {
  position: relative; z-index: 1;
  padding: 80px 24px;
  background: var(--dark1);
}
.section-glass {
  position: relative; z-index: 1;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%);
}

.section-header {
  text-align: center; margin-bottom: 48px;
}
.eyebrow-glow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow);
  padding: 6px 16px; border-radius: var(--r-full);
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.25);
  margin-bottom: 16px;
}
.section-title-2028 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1; color: var(--white); letter-spacing: 0.02em;
}
.section-title-2028.white { color: var(--white); }
.accent-yellow { color: var(--yellow); }

/* ── ARTISTS CAROUSEL ── */
.artists-track-wrap { overflow: hidden; padding: 20px 0; }
.artists-track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  padding: 0 24px;
}

.artist-card-2028 {
  flex: 0 0 200px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.artist-card-2028:hover {
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 8px 40px rgba(245,197,24,0.15);
  transform: translateY(-6px);
}
.artist-photo {
  height: 200px; width: 100%;
  background: linear-gradient(135deg, var(--dark3), var(--dark1));
  background-size: cover; background-position: center;
}
.artist-info { padding: 16px; }
.artist-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.artist-genre { font-size: 11px; color: var(--yellow); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.track-controls {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px;
}
.track-controls button {
  width: 44px; height: 44px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 18px;
  border-radius: var(--r-full); cursor: pointer;
  transition: all 0.2s;
}
.track-controls button:hover { background: var(--yellow); color: var(--black); }

/* ── EVENTS GRID ── */
.events-grid-2028 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}

.event-card-2028 {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s;
}
.event-card-2028:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(245,197,24,0.3);
}
.event-card-2028.featured {
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 0 40px rgba(245,197,24,0.1);
}

.event-img {
  height: 180px; position: relative;
}
.event-img-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 16px;
}
.event-tag-badge {
  background: rgba(0,0,0,0.6);
  backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-border);
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-full);
  letter-spacing: 0.08em;
}
.event-tag-badge.hot { background: rgba(245,197,24,0.2); border-color: rgba(245,197,24,0.5); color: var(--yellow); }

.event-body { padding: 20px; }
.event-date-chip {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--yellow);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: var(--r-full);
  margin-bottom: 12px;
}
.event-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.event-desc { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 14px; }
.event-meta-row { display: flex; gap: 16px; font-size: 12px; color: var(--grey2); margin-bottom: 4px; flex-wrap: wrap; }

/* ── AD BLOCKS ── */
.ad-block-mid {
  position: relative; z-index: 1;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(26,107,46,0.15), rgba(245,197,24,0.1));
  border-top: 1px solid rgba(26,107,46,0.3);
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.ad-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--grey2); text-transform: uppercase; margin-bottom: 8px;
}
.ad-content-mid {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ad-icon-lg { font-size: 36px; }
.ad-text-mid { flex: 1; }
.ad-text-mid strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ad-text-mid span { font-size: 13px; color: var(--grey); }

.ad-banner-bottom {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 1px;
  background: var(--glass-border);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.ad-card {
  flex: 1 1 220px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--dark2);
  font-size: 13px;
}
.ad-tag {
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  padding: 2px 7px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.08); color: var(--grey2);
  flex-shrink: 0;
}
.ad-card strong { color: var(--white); flex-shrink: 0; }
.ad-card span { color: var(--grey); flex: 1; font-size: 12px; }

/* ── LIVE TV ── */
.tv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.tv-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-xl); overflow: hidden;
  cursor: pointer; transition: all 0.3s;
}
.tv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.tv-card.live-now { border-color: rgba(255,40,40,0.4); box-shadow: 0 0 30px rgba(255,40,40,0.1); }

.tv-thumb {
  height: 160px; position: relative;
  background: linear-gradient(135deg, var(--dark3), var(--dark1));
  display: flex; align-items: flex-end; padding: 14px;
}
.tv-thumb.tv-live { background: linear-gradient(135deg, #1a0000, #3d0000); }
.live-indicator {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 800; color: #ff4444;
  background: rgba(255,40,40,0.15);
  border: 1px solid rgba(255,40,40,0.4);
  padding: 3px 10px; border-radius: var(--r-full);
}
.tv-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: rgba(255,255,255,0.8);
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.tv-title { position: relative; z-index: 1; font-size: 13px; font-weight: 700; }
.tv-viewers { position: absolute; bottom: 14px; right: 14px; font-size: 11px; color: var(--grey); }
.tv-meta { display: flex; justify-content: space-between; padding: 14px; font-size: 12px; color: var(--grey); }
.tv-host { font-weight: 600; color: var(--white); }

/* ── GALLERY ── */
.gallery-2028 {
  position: relative; z-index: 1;
  background: var(--dark1);
}
.gallery-grid-2028 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  padding: 0 0 80px;
}
.gallery-item-2028 {
  position: relative; overflow: hidden;
  border-radius: var(--r); cursor: pointer;
}
.gallery-item-2028.tall { grid-row: span 2; }
.gallery-item-2028.wide { grid-column: span 2; }
.gallery-item-2028:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: var(--blur-sm);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-overlay span { font-size: 13px; font-weight: 600; }

/* ── COMMUNITY ── */
.community-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
  align-items: center;
}
.community-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.newsletter-card-2028 {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm);
  border-radius: var(--r-xl); padding: 36px;
}
.newsletter-card-2028 h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.newsletter-card-2028 p { font-size: 14px; color: var(--grey); margin-bottom: 20px; }
.newsletter-form-2028 { display: flex; gap: 8px; }
.newsletter-form-2028 input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border); color: var(--white);
  padding: 11px 16px; border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif; font-size: 13px; outline: none;
}
.newsletter-form-2028 input::placeholder { color: var(--grey2); }
.newsletter-form-2028 input:focus { border-color: rgba(245,197,24,0.4); }
.nl-sub { font-size: 11px; color: var(--grey2); margin-top: 12px; }

/* ── LEADERS ── */
.leaders-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 900px; margin: 0 auto;
}
.leader-card-2028 {
  display: flex; gap: 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-sm); border-radius: var(--r-xl); padding: 24px;
  transition: all 0.3s;
}
.leader-card-2028:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.3); }
.leader-img {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: var(--r-lg); border: 2px solid var(--glass-border);
  background: var(--dark3);
}
.leader-info { flex: 1; }
.leader-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.leader-name-row h3 { font-size: 16px; font-weight: 700; }
.verified {
  background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.leader-role { font-size: 12px; color: var(--yellow); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.leader-info p { font-size: 13px; color: var(--grey); line-height: 1.65; }
.leader-social { display: flex; gap: 8px; margin-top: 12px; }
.social-chip {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-full); color: var(--grey);
  transition: all 0.2s;
}
.social-chip:hover { background: var(--yellow); color: var(--black); border-color: transparent; }

/* ── CONTACT ── */
.contact-section {
  position: relative; z-index: 1;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--dark3) 0%, var(--dark1) 100%);
  border-top: 1px solid var(--glass-border);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; max-width: 1000px; margin: 0 auto;
  align-items: start;
}
.contact-info-items { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { font-size: 15px; color: var(--grey); }
.contact-info-item a { color: var(--yellow); transition: color 0.2s; }
.contact-info-item a:hover { color: #ffe135; }

.contact-form-2028 { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-2028 input,
.contact-form-2028 select,
.contact-form-2028 textarea {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); padding: 12px 16px;
  border-radius: var(--r); font-family: 'Outfit', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.contact-form-2028 input::placeholder,
.contact-form-2028 textarea::placeholder { color: var(--grey2); }
.contact-form-2028 input:focus,
.contact-form-2028 select:focus,
.contact-form-2028 textarea:focus { border-color: rgba(245,197,24,0.5); }
.contact-form-2028 select option { background: var(--dark2); }

/* ── FOOTER ── */
.footer-2028 {
  position: relative; z-index: 1;
  background: var(--dark1);
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.75; margin: 14px 0 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r); font-size: 16px; cursor: pointer;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--yellow); border-color: transparent; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--grey); transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--glass-border); padding-top: 24px;
  font-size: 12px; color: var(--grey2);
  max-width: 1200px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
}

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: var(--blur);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-glass {
  background: rgba(13,17,23,0.95);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-lg);
  border-radius: var(--r-xl); padding: 40px;
  width: 100%; max-width: 420px; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--grey); width: 32px; height: 32px;
  border-radius: var(--r); cursor: pointer; font-size: 14px;
}
.modal-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; text-align: center; }
.social-login-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.social-login-btn {
  padding: 12px; border-radius: var(--r); border: 1px solid var(--glass-border);
  background: var(--glass); color: var(--white); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif;
}
.social-login-btn:hover { background: var(--glass-hover); }
.modal-divider {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}
.modal-divider span { font-size: 12px; color: var(--grey2); }
.modal-input {
  width: 100%; background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); padding: 12px 16px; border-radius: var(--r);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none;
  margin-bottom: 10px; transition: border-color 0.2s;
}
.modal-input:focus { border-color: rgba(245,197,24,0.4); }
.modal-sub { text-align: center; font-size: 13px; color: var(--grey); margin-top: 16px; }

/* ── AI ASSISTANT ── */
.ai-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 30px rgba(26,107,46,0.5);
  transition: all 0.3s;
}
.ai-bubble:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(26,107,46,0.7); }
.ai-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--green-neon);
  animation: ai-ring 2s ease-in-out infinite;
  opacity: 0;
}
@keyframes ai-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}
.ai-icon { font-size: 22px; }
.ai-label { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; color: var(--black); }

.ai-panel {
  position: fixed; bottom: 100px; right: 28px; z-index: 1499;
  width: 340px; max-height: 500px;
  background: rgba(8,12,14,0.98); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-lg); border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); opacity: 0;
  pointer-events: none; transition: all 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.ai-panel.open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}
.ai-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--glass-border);
}
.ai-avatar { font-size: 32px; }
.ai-name { font-size: 14px; font-weight: 700; }
.ai-status { font-size: 11px; color: var(--green-neon); }
.ai-close {
  margin-left: auto; background: none; border: none;
  color: var(--grey); font-size: 16px; cursor: pointer;
}
.ai-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.ai-msg { display: flex; }
.ai-msg.bot { justify-content: flex-start; }
.ai-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%; padding: 10px 14px; border-radius: var(--r-lg);
  font-size: 13px; line-height: 1.6;
}
.ai-msg.bot .msg-bubble {
  background: rgba(26,107,46,0.2); border: 1px solid rgba(26,107,46,0.3);
  border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 4px;
}
.ai-msg.user .msg-bubble {
  background: var(--yellow); color: var(--black); font-weight: 600;
  border-radius: var(--r-lg) var(--r-lg) 4px var(--r-lg);
}
.ai-input-area {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--glass-border);
}
.ai-input-area input {
  flex: 1; background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); padding: 10px 14px; border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif; font-size: 13px; outline: none;
}
.ai-input-area input::placeholder { color: var(--grey2); }
.ai-send {
  background: var(--yellow); color: var(--black); border: none;
  width: 38px; height: 38px; border-radius: 50%; font-size: 16px;
  cursor: pointer; transition: all 0.2s;
}
.ai-send:hover { background: #ffe135; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(13,17,23,0.95); border: 1px solid var(--glass-border);
  color: var(--white); padding: 12px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  opacity: 0; transition: all 0.4s; z-index: 3000;
  backdrop-filter: var(--blur);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

@media (max-width: 900px) {
  .community-split { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid-2028 { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-2028.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .hero-stats-row { padding: 16px 20px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat strong { font-size: 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid-2028 { grid-template-columns: 1fr; }
  .gallery-item-2028.tall, .gallery-item-2028.wide { grid-row: unset; grid-column: unset; }
  .ai-panel { width: calc(100vw - 40px); right: 20px; }
}
