/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #a855f7;
  --purple-light: #c084fc;
  --purple-dark:  #7c3aed;
  --purple-glow:  rgba(168, 85, 247, 0.35);
  --bg:           #05030a;
  --bg2:          #0a0612;
  --surface:      rgba(255,255,255,0.04);
  --border:       rgba(168,85,247,0.18);
  --text:         #f1eeff;
  --text-muted:   #8b7fa8;
  --font:         'Inter', sans-serif;
  --mono:         'JetBrains Mono', monospace;
  --radius:       14px;
  --radius-lg:    22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── BACKGROUND GIF ─── */
.bg-gif-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.22;
  filter: saturate(1.4) hue-rotate(10deg);
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(109,40,217,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(76,29,149,0.14) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,3,10,0.55) 0%, rgba(5,3,10,0.72) 50%, rgba(5,3,10,0.95) 100%);
}

/* ─── CANVASES ─── */
#lightning-canvas,
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#lightning-canvas { z-index: 2; }

/* ─── CONTENT WRAPPER ─── */
section, nav, footer { position: relative; z-index: 10; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 4px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5,3,10,0.75);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--purple));
}
.logo-text {
  background: linear-gradient(135deg, #fff 30%, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-dashboard {
  text-decoration: none;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 18px rgba(168,85,247,0.35);
}
.btn-dashboard:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(168,85,247,0.55);
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(5,3,10,0.9);
  backdrop-filter: blur(20px);
}
.nav-mobile a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn-dashboard {
  margin-top: 16px;
  text-align: center;
  padding: 12px;
}
.nav-mobile.open { display: flex; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 40px;
  padding: 7px 16px 7px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 28px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}
.hero-badge:hover { background: rgba(168,85,247,0.18); border-color: rgba(168,85,247,0.5); }
.badge-tag {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge-arrow { color: var(--purple-light); font-size: 1rem; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, #e879f9 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.4));
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 0 28px rgba(168,85,247,0.4), 0 4px 16px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(168,85,247,0.6), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-arrow { font-size: 1.1rem; }
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.35);
  color: #b6bcff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-discord:hover {
  background: rgba(88,101,242,0.25);
  border-color: rgba(88,101,242,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--purple); background: var(--surface); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ─── EDITOR ─── */
.hero-right { position: relative; }
.editor-window {
  background: rgba(10,6,20,0.82);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(168,85,247,0.15),
    0 24px 64px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}
.editor-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.editor-filename {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.file-icon { font-size: 0.9rem; }
.editor-collapse {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
}

.editor-body {
  display: flex;
  min-height: 320px;
}
.editor-sidebar {
  width: 140px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  flex-shrink: 0;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.sidebar-icons { cursor: pointer; font-size: 0.75rem; }
.sidebar-item {
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-item:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.sidebar-item.active {
  background: rgba(168,85,247,0.12);
  color: var(--purple-light);
  border-left: 2px solid var(--purple);
}

.editor-code {
  flex: 1;
  padding: 16px;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.7;
  overflow: hidden;
}
.code-line {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}
.line-num {
  color: rgba(139,127,168,0.4);
  user-select: none;
  min-width: 18px;
  text-align: right;
}
.c-comment { color: #6b7280; font-style: italic; }
.c-kw      { color: #c084fc; }
.c-fn      { color: #818cf8; }
.c-str     { color: #86efac; }
.c-var     { color: #f1eeff; }
.c-op      { color: #9ca3af; }
.c-paren   { color: #e879f9; }

.typed-text { color: #c084fc; }
.cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--purple-light);
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.editor-footer {
  padding: 8px 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  font-family: var(--mono);
}
.editor-execute {
  width: 100%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.editor-execute:hover { opacity: 0.88; }
.exec-icon { font-size: 0.75rem; }

/* ORBs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}
.orb-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(168,85,247,0.28), transparent 70%);
  top: -60px; right: -60px;
  animation: float 6s ease-in-out infinite;
}
.orb-2 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(232,121,249,0.2), transparent 70%);
  bottom: -40px; left: -40px;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:0.4;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(1.15)}
}

/* ─── SECTION SHARED ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--purple-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 60px;
  max-width: 560px;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.feature-card:hover {
  border-color: rgba(168,85,247,0.45);
  background: rgba(168,85,247,0.07);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.12);
}
.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px var(--purple-glow));
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── SHOWCASES ─── */
.showcases {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.showcase-card:hover {
  border-color: rgba(168,85,247,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.12);
}
.showcase-thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(109,40,217,0.4), rgba(76,29,149,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.sc-2 { background: linear-gradient(135deg, rgba(49,46,129,0.5), rgba(88,28,135,0.4)); }
.sc-3 { background: linear-gradient(135deg, rgba(88,28,135,0.5), rgba(109,40,217,0.3)); }
.showcase-play {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.showcase-card:hover .showcase-play {
  background: rgba(168,85,247,0.35);
  transform: scale(1.1);
}
.showcase-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(168,85,247,0.25);
  border: 1px solid rgba(168,85,247,0.4);
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.showcase-info { padding: 18px 20px; }
.showcase-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.showcase-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── PRICING ─── */
.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
  border-color: rgba(168,85,247,0.35);
  transform: translateY(-4px);
}
.plan-featured {
  border-color: rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.07);
  box-shadow: 0 0 40px rgba(168,85,247,0.14), 0 12px 40px rgba(0,0,0,0.3);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.plan-price {
  margin-bottom: 4px;
}
.price-val {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  gap: 8px;
}
.plan-features li.muted { color: var(--text-muted); opacity: 0.5; }
.btn-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-plan.btn-primary {
  display: block;
  box-shadow: 0 0 20px rgba(168,85,247,0.35);
}
.btn-plan.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}
.btn-plan.btn-outline:hover {
  border-color: var(--purple);
  color: var(--text);
  background: rgba(168,85,247,0.08);
}

/* ─── CTA ─── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.14), transparent 70%);
  pointer-events: none;
}
.cta-section .section-sub { margin: 0 auto 40px; }
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 0;
  background: rgba(5,3,10,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand {
  max-width: 300px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── AOS ANIMATIONS ─── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ─── HERO ENTER ─── */
.hero-left {
  animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-right {
  animation: heroSlideIn 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 560px; margin: 0 auto; width: 100%; }
  .features-grid, .showcase-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .features-grid, .showcase-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .section-inner { padding: 0 16px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-discord { width: 100%; justify-content: center; }
}

/* ─── NAV LOGO IMAGE ─── */
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.5));
}
