/* 7uNeon 首页专属样式 */

/* HERO */
.hero { padding-top: 88px; }

.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* 信任条 */
.brand-strip {
  padding: 26px 0; border-top: 1px solid rgba(0, 229, 255, .1);
  border-bottom: 1px solid rgba(0, 229, 255, .1);
  background: rgba(10, 14, 31, .5);
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  color: var(--text-dim); font-size: 14px;
}
.strip-inner .num { font-family: var(--font-num); font-size: 18px; font-weight: 700; color: var(--cyan); }
.strip-inner .sep { color: rgba(0, 229, 255, .35); font-size: 10px; }

@media (max-width: 768px) {
  .hero { padding-top: 52px; }
  .strip-inner { gap: 10px; font-size: 13px; }
}
