/* ═══════════════════════════════════════════════════════
   AstroKamya™ · For You Intelligence Styles
   WHY · OUTCOME · TIMELINE badges + AI Banner
   ═══════════════════════════════════════════════════════ */

/* ═══ AI-POWERED BANNER ═══ */
.fyi-ai-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(124,92,252,0.06), rgba(76,219,196,0.04));
  border: 1px solid rgba(124,92,252,0.1);
  border-radius: 12px;
  animation: fyiFadeIn 0.5s ease;
}
@keyframes fyiFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.fyi-ai-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: fyiPulse 2s ease-in-out infinite;
}
@keyframes fyiPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }

.fyi-ai-text {
  font-size: 12px; color: rgba(240,240,245,0.55);
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}
.fyi-ai-text strong { color: rgba(240,240,245,0.85); }

/* ═══ BADGE STRIP ON PRODUCT CARDS ═══ */
.fyi-badge-strip {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 12px 0 8px; padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  animation: fyiSlideIn 0.5s ease forwards; opacity: 0;
}
@keyframes fyiSlideIn { to { opacity: 1; } }

/* Match Ring */
.fyi-match-ring { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.fyi-match-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fyi-match-fill { transition: stroke-dasharray 1.2s ease; }
.fyi-match-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; color: #E0A526;
}

/* Badges */
.fyi-badges { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.fyi-badge {
  font-size: 10px; color: rgba(240,240,245,0.55); line-height: 1.4;
  display: flex; align-items: center; gap: 4px;
  padding: 2px 0;
}
.fyi-badge-icon { font-size: 10px; flex-shrink: 0; }
.fyi-badge-label {
  font-size: 8px; font-weight: 800; letter-spacing: 0.8px;
  padding: 1px 5px; border-radius: 3px; flex-shrink: 0;
  margin-right: 4px;
}

.fyi-why .fyi-badge-label { background: rgba(224,165,38,0.12); color: #E0A526; }
.fyi-outcome .fyi-badge-label { background: rgba(34,197,94,0.12); color: #22C55E; }
.fyi-timeline .fyi-badge-label { background: rgba(124,92,252,0.12); color: #A78BFA; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 640px) {
  .fyi-badge-strip { flex-direction: column; align-items: center; text-align: center; }
  .fyi-badges { align-items: center; }
}
