#home {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,45,120,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,255,157,0.06) 0%, transparent 60%),
    var(--dark);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,45,120,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,120,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

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

.glitch-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  animation: blink 2.5s step-end infinite;
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h1.hero-title .line1 {
  color: var(--pink);
  text-shadow: 0 0 40px rgba(255,45,120,0.5), 0 0 80px rgba(255,45,120,0.2);
  display: block;
  animation: glitch1 6s infinite;
}
h1.hero-title .line2 {
  color: var(--green);
  text-shadow: 0 0 40px rgba(0,255,157,0.4);
  display: block;
}
h1.hero-title .line3 {
  color: var(--text);
  display: block;
  font-size: 55%;
  letter-spacing: 0.3em;
  font-family: var(--font-mono);
  font-weight: 400;
  margin-top: 0.3em;
}

@keyframes glitch1 {
  0%, 92%, 100% { clip-path: none; transform: none; }
  93% { clip-path: inset(30% 0 50% 0); transform: translateX(-4px); color: var(--cyan); }
  94% { clip-path: inset(60% 0 10% 0); transform: translateX(4px); color: var(--pink); }
  95% { clip-path: none; transform: none; }
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.hero-desc strong { color: var(--pink-light); }
.hero-desc em { color: var(--green); font-style: normal; font-family: var(--font-mono); font-size: 0.9em; }

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pink);
  text-shadow: 0 0 20px rgba(255,45,120,0.4);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3em;
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.blob-1 { width: 300px; height: 300px; background: rgba(255,45,120,0.12); top: 20%; left: -5%; }
.blob-2 { width: 200px; height: 200px; background: rgba(0,255,157,0.08); bottom: 15%; right: 5%; animation-delay: -3s; }
.blob-3 { width: 150px; height: 150px; background: rgba(0,229,255,0.07); top: 60%; left: 60%; animation-delay: -6s; }

@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
}
