/* Aura Ask AI — floating assistant in Aura glass style (separate from main-site widgets). */
.aura-ai-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  width: 3.2rem; height: 3.2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(124,93,250,.85), rgba(56,189,248,.85));
  color: #fff; font-size: 1.35rem; cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.aura-ai-fab:hover { transform: translateY(-2px); }
.aura-ai-panel {
  position: fixed; right: 1.1rem; bottom: 5rem; z-index: 60;
  width: min(92vw, 24rem); max-height: min(70vh, 32rem); display: none; flex-direction: column;
  border-radius: 1.1rem; border: 1px solid rgba(255,255,255,.16); overflow: hidden;
  background: rgba(13,18,38,.92); color: #eef2ff;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.aura-ai-panel.open { display: flex; }
.aura-ai-head { display: flex; align-items: center; justify-content: space-between; padding: .7rem .9rem; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 600; }
.aura-ai-head button { background: transparent; border: 1px solid rgba(255,255,255,.2); color: inherit; border-radius: .6rem; width: 1.9rem; height: 1.9rem; cursor: pointer; }
.aura-ai-log { padding: .7rem; display: flex; flex-direction: column; gap: .5rem; overflow-y: auto; font-size: .88rem; line-height: 1.5; }
.aura-ai-msg { padding: .55rem .75rem; border-radius: .9rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.aura-ai-msg.me { background: linear-gradient(135deg, rgba(124,93,250,.35), rgba(56,189,248,.25)); align-self: flex-end; }
.aura-ai-msg a { color: #9fd6ff; }
.aura-ai-form { display: flex; gap: .5rem; padding: .6rem; border-top: 1px solid rgba(255,255,255,.1); }
.aura-ai-form input { flex: 1; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: inherit; padding: .55rem .9rem; font-size: .88rem; }
.aura-ai-form button { border-radius: 999px; border: none; padding: .55rem 1rem; font-weight: 600; cursor: pointer; color: #fff; background: linear-gradient(135deg, #7c5dfa, #38bdf8); }
.aura-ai-typing { opacity: .7; }
@media (prefers-reduced-motion: reduce) { .aura-ai-fab:hover { transform: none; } }
