/* ===================================
   NEXOMIA — style.css
   All Black + Gold luxury executor site
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;600;700;800;900&display=swap');

/* ── TOKENS ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    #8a6d2e;
  --gold-glow:   rgba(201, 168, 76, 0.18);
  --gold-glow-s: rgba(201, 168, 76, 0.08);
  --black:       #000000;
  --bg:          #050505;
  --bg-1:        #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --border:      rgba(201,168,76,0.15);
  --border-dim:  rgba(255,255,255,0.06);
  --text:        #f0ece0;
  --text-dim:    #8a8578;
  --text-muted:  #4a4640;
  --online:      #3ecf8e;
  --updating:    #f59e0b;
  --patched:     #ef4444;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── PARTICLES CANVAS ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 99px; }

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── SECTION COMMON ── */
section { padding: 100px 0; position: relative; }
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold-dim); }

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #5865F2;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,0.4); }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled {
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 24px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-3); color: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('nexomia_hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, transparent 0%, rgba(5,5,5,0.7) 70%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.8s ease forwards;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--online);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,142,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(62,207,142,0); }
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.9s 0.1s ease both;
}
.hero-logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.hero-logo {
  width: 90px;
  height: 90px;
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  border-radius: 22px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(201,168,76,0.4);
  letter-spacing: -0.04em;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.9s 0.2s ease both;
  background: linear-gradient(180deg, #ffffff 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeSlideUp 0.9s 0.4s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeSlideUp 0.9s 0.5s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeSlideUp 0.9s 0.6s ease both;
}
.stat {
  padding: 0 40px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suffix { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border-dim); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── STATUS ── */
#status { background: var(--bg-1); }
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: var(--transition);
}
.status-card:hover { border-color: var(--border); background: var(--bg-3); }
.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-indicator.online { background: var(--online); box-shadow: 0 0 8px rgba(62,207,142,0.5); animation: pulse-green 2s infinite; }
.status-indicator.updating { background: var(--updating); box-shadow: 0 0 8px rgba(245,158,11,0.5); animation: pulse-orange 2s infinite; }
.status-indicator.patched { background: var(--patched); }
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(245,158,11,0); }
}
.status-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.status-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  width: fit-content;
}
.online-badge { background: rgba(62,207,142,0.12); color: var(--online); }
.updating-badge { background: rgba(245,158,11,0.12); color: var(--updating); }
.patched-badge { background: rgba(239,68,68,0.12); color: var(--patched); }
.status-version { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.status-updated { font-size: 0.8rem; color: var(--text-muted); text-align: right; }

/* ── FEATURES ── */
#features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--gold-glow-s), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--bg-3) 0%, rgba(201,168,76,0.05) 100%);
  border-color: var(--border);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--gold); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; }
.feature-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 99px;
  text-transform: uppercase;
}

/* ── SCRIPTS ── */
#scripts { background: var(--bg-1); }
.games-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-dim);
  background: var(--bg-2);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.filter-btn:hover { color: var(--gold); border-color: var(--gold-dim); }
.filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.game-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.game-card:hover { border-color: var(--border); background: var(--bg-3); transform: translateX(3px); }
.game-card[style*="display: none"] { display: none !important; }
.game-thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.game-thumb svg { width: 20px; height: 20px; }
.game-thumb.combat { background: rgba(239,68,68,0.12); color: #ef4444; }
.game-thumb.combat svg { color: #ef4444; }
.game-thumb.rpg { background: rgba(139,92,246,0.12); color: #8b5cf6; }
.game-thumb.rpg svg { color: #8b5cf6; }
.game-thumb.simulator { background: rgba(59,130,246,0.12); }
.game-thumb.simulator svg { color: #3b82f6; }
.game-thumb.other { background: rgba(201,168,76,0.12); }
.game-thumb.other svg { color: var(--gold); }
.game-info { flex: 1; }
.game-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.game-scripts { font-size: 0.75rem; color: var(--text-muted); }
.game-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.game-status-dot.online { background: var(--online); box-shadow: 0 0 6px rgba(62,207,142,0.5); }
.scripts-cta {
  text-align: center;
  padding: 24px;
  background: var(--bg-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-dim);
  font-size: 0.95rem;
}
.scripts-cta strong { color: var(--gold); }

/* ── DOWNLOAD ── */
#download { background: var(--bg); }
.download-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 40px;
}
.download-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.download-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.download-content .section-label { justify-content: center; }
.download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.download-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.dl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.dl-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.download-disclaimer { font-size: 0.78rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ── COMMUNITY ── */
#community { background: var(--bg-1); }
.discord-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.discord-left { display: flex; align-items: center; gap: 18px; }
.discord-icon {
  width: 52px;
  height: 52px;
  background: rgba(88,101,242,0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.discord-icon svg { width: 26px; height: 26px; color: #5865F2; }
.discord-info h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.discord-stats { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--online);
  font-weight: 600;
}
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: var(--online); flex-shrink: 0; }
.member-count { font-size: 0.82rem; color: var(--text-muted); }
.community-channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.channel:hover { border-color: var(--border); color: var(--text); }
.channel-hash { color: var(--gold-dim); font-weight: 700; font-size: 1rem; }
.channel span:nth-child(2) { flex: 1; }
.channel-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: 99px;
  color: var(--gold);
  white-space: nowrap;
}

/* ── FOOTER ── */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  margin-bottom: 48px;
  align-items: start;
}
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; max-width: 240px; line-height: 1.6; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-links-col a { font-size: 0.88rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border-dim); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-disclaimer { color: var(--text-muted) !important; font-size: 0.75rem !important; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  section { padding: 72px 0; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .download-card { padding: 40px 24px; }
  .discord-card { flex-direction: column; align-items: flex-start; }
}
