/* Custom Styles for Trikarana Landing Page */

/* Voice Pill Animation */
.voice-pill {
  animation: pulse 4s infinite ease-in-out;
}

.voice-waveform {
  animation: waveform-pulse 3s infinite ease-in-out;
}

.waveform-inner {
  animation: waveform-inner-pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes waveform-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes waveform-inner-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* OLQ Report Styles */
.clip-path-congruence {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.radar-chart {
  background:
    radial-gradient(circle, transparent 60%, rgba(212, 175, 55, 0.2) 60%, rgba(212, 175, 55, 0.2) 62%, transparent 62%),
    radial-gradient(circle, transparent 40%, rgba(212, 175, 55, 0.2) 40%, rgba(212, 175, 55, 0.2) 42%, transparent 42%);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .voice-pill,
  .voice-waveform,
  .waveform-inner {
    animation: none;
  }
  
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile Menu */
#mobile-menu {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
#waitlist-form input,
#waitlist-form select {
  border: 2px solid #E5E7EB;
  transition: border-color 0.3s ease;
}

#waitlist-form input:focus,
#waitlist-form select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Utility Classes */
.text-brass {
  color: #D4AF37;
}

.bg-brass {
  background-color: #D4AF37;
}

.border-brass {
  border-color: #D4AF37;
}

.hover\:bg-amber-600:hover {
  background-color: #b45309;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .voice-pill {
    width: 200px;
    height: 200px;
  }
  
  .voice-waveform {
    width: 140px;
    height: 140px;
  }
  
  .waveform-inner {
    width: 100px;
    height: 100px;
  }
}