/*
 * Nova Premium AI Integration — demo-specific styles
 * Shared layout and base styles are in /assets/css/main.css
 */

/* Premium AI leans into the purple accent for an enterprise/deep-tech feel */

/* Hero: purple-dominant glow */
.demo-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(162,89,255,0.07) 0%, rgba(0,200,255,0.03) 50%, transparent 75%);
}

/* Tag dot: purple */
.demo-hero-tag {
  border-color: rgba(162,89,255,0.3);
  background: rgba(162,89,255,0.07);
  color: var(--purple);
}
.demo-hero-tag-dot {
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

/* Section tags: purple */
.demo-section-tag {
  color: var(--purple);
}

/* Who cards: purple hover */
.demo-who-card:hover {
  border-color: rgba(162,89,255,0.28);
}

/* Step numbers: purple-leaning gradient */
.demo-step-num {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

/* Connector line: purple-dominant */
.demo-workflow-step:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(162,89,255,0.4), rgba(0,200,255,0.2), transparent);
}

/* Timeline box: purple border accent */
.demo-timeline-box {
  border-color: rgba(162,89,255,0.22);
}
.demo-timeline-box::before {
  background: linear-gradient(90deg, transparent, var(--purple), var(--blue), transparent);
}

/* Disclaimer box */
.premium-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(162,89,255,0.04);
  border: 1px solid rgba(162,89,255,0.15);
  border-left: 3px solid rgba(162,89,255,0.5);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.premium-disclaimer-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.premium-disclaimer-icon svg {
  width: 22px; height: 22px;
  stroke: var(--purple);
  opacity: 0.8;
}
.premium-disclaimer-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.4rem;
}
.premium-disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Custom item hover: purple highlight */
.demo-custom-item:hover {
  border-color: rgba(162,89,255,0.25);
}

/* Responsive */
@media (max-width: 420px) {
  .demo-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-cta-actions .btn-primary,
  .demo-cta-actions .btn-ghost {
    text-align: center;
    justify-content: center;
  }
  .premium-disclaimer {
    flex-direction: column;
    padding: 1.25rem 1.25rem;
  }
}
