/* Tailwind via CDN is loaded in head — this file is for custom styles */

/* Glow effects */
.glow-green { text-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
.glow-purple { text-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }

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

/* Hero gradient background */
.hero-gradient {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

/* Card hover */
.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

/* Terminal mockup */
.terminal {
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.6;
}
.terminal-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Comparison table */
.comparison-check { color: #00ff88; }
.comparison-x { color: #ff4444; }

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
