.hero { 
  text-align: center;
  padding: 72px 10px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,14,36,.65);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .8px;
  margin-bottom: 18px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 rgba(34,197,94,.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 56px;
  font-weight: 1000;
  letter-spacing: -1px;
}

.grad {
  background: linear-gradient(90deg,#fff,#c7d2fe,#fff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleFlow 7s linear infinite;
}

@keyframes titleFlow {
  to { background-position: 200%; }
}

.lead {
  margin: 0 auto 18px;
  max-width: 860px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stat {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.stat-num {
  font-size: 22px;
  font-weight: 1000;
}

.stat-label {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 4px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .grid-3,
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.card {
  display: block;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  color: var(--text-main);
  transition: transform .2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

main > section.panel {
  margin-bottom: 1px;
}

main > section.panel:last-of-type {
  margin-bottom: 0;
}

.panel {
  box-shadow: 0 28px 64px rgba(0,0,0,.55);
}
