/* Customation AS - Site Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, #0EA5E9, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Card hover effect */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Nav mobile menu transition */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
#mobile-menu.open {
  max-height: 400px;
}

/* Broadcast signal animation */
@keyframes pulse-signal {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}
.signal-arc {
  animation: pulse-signal 2s ease-in-out infinite;
}
.signal-arc:nth-child(2) { animation-delay: 0.3s; }
.signal-arc:nth-child(3) { animation-delay: 0.6s; }

/* Feature icon container */
.feature-icon {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
