/* ─── REVENUE ─── */
.s_nexus_revenue {
  background: #0d0730;
  text-align: center;
  padding: 100px 0;
}

.s_nexus_rev_inner {
  max-width: 700px;
  margin: 0 auto;
}

.s_nexus_rev_ring {
  width: 200px;
  height: 200px;
  margin: 50px auto;
  position: relative;
}

.s_nexus_rev_ring svg {
  transform: rotate(-90deg);
}

.s_nexus_ring_bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 16;
}

.s_nexus_ring_fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 402;
  animation: s_nexus_ringFill 2s 0.5s ease forwards;
}

@keyframes s_nexus_ringFill {
  from { stroke-dashoffset: 502; }
  to   { stroke-dashoffset: 402; }
}

.s_nexus_rev_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.s_nexus_rev_pct {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.s_nexus_rev_pct_label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.s_nexus_rev_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 20px;
}

.s_nexus_rev_card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s;
}

.s_nexus_rev_card:hover {
  border-color: rgba(224,32,64,0.35);
}

.s_nexus_rev_card_title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.s_nexus_rev_card_desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}