
/* ── Voice bar animation ── */
.voice-bar {
  animation: pulseBar 1.5s ease-in-out infinite;
  transform-origin: center bottom;
  box-shadow: 0 0 12px rgba(76, 141, 255, 0.3);
}

@keyframes pulseBar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ── Orb drift animation ── */
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

/* ── Pulse ring ── */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 217, 138, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(57, 217, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 217, 138, 0); }
}

/* ── Capability pills ── */
.pill {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 0.88rem;
  color: #b9c4dd;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
  cursor: default;
}

.pill:hover {
  border-color: rgba(76, 141, 255, 0.4);
  color: #eaf0ff;
  background: rgba(76, 141, 255, 0.08);
}

/* ── FAQ content overflow ── */
.faq .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
  color: #b9c4dd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq .content a {
  color: #72a7ff;
  text-decoration: underline;
}

.faq-accordion {
  padding: 1rem;
  cursor: pointer;
}

/* ── Footer links ── */
.footer-link {
  color: #b9c4dd;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-link:hover {
  color: #eaf0ff;
}

/* ── Header links ── */
.header-links {
  color: rgba(234, 240, 255, 0.7);
  text-decoration: none;
  transition: color 160ms ease;
}

.header-links:hover {
  color: #eaf0ff;
}

/* ── Collapsible header ── */
.collapsible-header[data-open="false"] {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-header {
    display: flex !important;
  }
}

.collapsible-header[data-open="true"] {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── GSAP reveal fallback (visible by default if JS fails) ── */
.reveal-up {
  opacity: 1;
  transform: none;
}

/* ── Button base ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #4c8dff 0%, #b567ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .voice-bar,
  .tw-animate-\[drift_20s_ease-in-out_infinite\],
  .tw-animate-\[drift_24s_ease-in-out_infinite_reverse\] {
    animation: none !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* ── Chat Widget Position Guard ── */
/* Pins the LeadConnector chat widget to bottom-right and overrides injected inline styles */
.lc-chat-widget,
[class*="lc-chat"],
[class*="leadconnector"],
[class*="chat-widget"],
[data-widget-id] iframe,
#lc-chat-widget,
#chat-widget-container,
#chat-widget-container * {
  position: fixed !important;
  top: auto !important;
  right: 1rem !important;
  left: auto !important;
  bottom: 1rem !important;
}
