/* 상태 배지 */
.status {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.status.loading {
  background: #64748b;
  color: #fff;
}

.status.live {
  background: #22c55e;
  color: #022c22;
  animation: pulse 2s infinite;
}

.status.off {
  background: #facc15;
  color: #422006;
}

/* 히어로 */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 14px;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* 카드 효과 */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #38bdf8, transparent);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover::before {
  opacity: 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
