/* ─── STATS ─── */
.s_nexus_stats {
  padding: 80px 0;
  background: #130844;
}

.s_nexus_stats_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.s_nexus_stat_block {
  padding: 48px 36px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s_nexus_stat_block:last-child {
  border-right: none;
}

.s_nexus_stat_block:hover {
  background: rgba(255,255,255,0.07);
}

.s_nexus_stat_num {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #e02040;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.s_nexus_stat_label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}