/* Axencia.co — Section Tag: Blue Dot Realtime Indicator (All Pages) */

/* Global realtime dot — applies to ALL section-tags */
.section-tag {
  position: relative;
  padding-left: 1.5rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  box-shadow: 
    0 0 0 0 rgba(96, 165, 250, 0.7),
    0 0 12px rgba(96, 165, 250, 0.5),
    0 0 20px rgba(96, 165, 250, 0.2);
  animation: sectionTagLivePulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sectionTagLivePulse {
  0%, 100% { 
    opacity: 1; 
    transform: translateY(-50%) scale(1); 
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.6), 0 0 12px rgba(96, 165, 250, 0.4), 0 0 20px rgba(96, 165, 250, 0.15);
  }
  50% { 
    opacity: 1; 
    transform: translateY(-50%) scale(1.08); 
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15), 0 0 18px rgba(96, 165, 250, 0.6), 0 0 30px rgba(96, 165, 250, 0.2);
  }
}

/* Section-header tags — pill + dot (match page-header) */
.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 32px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-header .section-tag::before {
  left: 12px;
}

/* Pill-style tags (page-header, hero, cs-hero) — dot position */
.page-header .section-tag::before,
.hero-page-header .hero-content .section-tag::before,
.cs-hero .section-tag.cs-hero-tag::before {
  left: 12px;
}

/* Page-header — subtle 3D depth (lightweight) */
.page-header {
  perspective: 1400px;
  transform-style: preserve-3d;
}
