/* ──────────────────────────────────────────────────────────────────────────
   IMLG — Indian MLOps & LLMOps Group  |  Shared stylesheet
   ────────────────────────────────────────────────────────────────────────── */

body { font-family: 'Inter', sans-serif; }
.font-space { font-family: 'Space Grotesk', sans-serif; }
.font-mono  { font-family: 'JetBrains Mono', monospace; }

.hero-glow::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.pulse-dot::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00d4aa;
  margin-right: 8px;
  animation: pulse2 2s infinite;
}
@keyframes pulse2 { 0%,100%{opacity:1} 50%{opacity:.3} }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.track-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2px 7px;
  color: #8892a4;
  display: inline-block;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}
.pillar-cell {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Footer social links — icon + handle, LedgerNexa style ── */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a5a7a;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.social-link:hover { color: #00d4aa; }
.social-link .s-icon {
  width: 15px; height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
/* Meetup uses an img tag instead of svg */
.social-link .s-icon-img {
  width: 15px; height: 15px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity .2s;
  filter: grayscale(1);
}
.social-link:hover .s-icon-img {
  opacity: 1;
  filter: none;
}
