.hero-banner {
  background: transparent;
}

.hero-chip {
  background-color: rgba(255, 105, 0, 0.08);
}

.hero-gradient-text {
  background-image: linear-gradient(90deg, #ff6900 0%, #fe9a00 52%, #f0b100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-glow-left {
  background-color: rgba(255, 105, 0, 0.18);
}

.hero-glow-right {
  background-color: rgba(254, 154, 0, 0.16);
}

.hero-scroll-indicator {
  animation: mouseFloat 1.8s ease-in-out infinite !important;
}

.hero-scroll-dot {
  animation: mouseDotMove 1.8s ease-in-out infinite !important;
}

.feature-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 14px;
}

.dark .feature-row {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.5);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(20, 184, 166, 0.22));
  color: #34d399;
}

.feature-title {
  color: #0f172a;
  font-weight: 600;
  font-size: 16px;
}

.feature-copy {
  color: #64748b;
  margin-top: 2px;
  font-size: 14px;
}

.dark .feature-title {
  color: #f8fafc;
}

.dark .feature-copy {
  color: #94a3b8;
}

.stack-tile {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px 14px;
  text-align: center;
}

.stack-tile p {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.dark .stack-tile {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.6);
}

.dark .stack-tile p {
  color: #f1f5f9;
}

.hero-glow {
  animation: pulseGlow 6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  filter: saturate(0.85);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: saturate(1);
}

article:hover,
section .rounded-3xl:hover,
section .rounded-2xl:hover {
  transform: translateY(-3px);
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateX(-50%) scale(1.12);
    opacity: 1;
  }
}

@keyframes mouseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes mouseDotMove {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
