/* ─── Effects & Animations ───────────────────────────────────── */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow utilities */
.glow-green { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
.glow-cyan  { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }

/* Hero background grid */
.hero-grid {
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Scroll-triggered section reveal */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
