/* ONX: Outcomes Section Styles */
#onx-outcomes {
  padding: 80px 20px;
  background: #000;
}

#onx-outcomes h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 48px;
  color: #fff;
}

.onx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.onx-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
}

.onx-metric::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 0, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease;
}

.onx-metric.in::before {
  opacity: 1;
}

.onx-number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.onx-sub {
  font-size: 14px;
  color: #BDBDBD;
  line-height: 1.5;
  opacity: 0.85;
}

.onx-spark {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 4px;
  border-radius: 9999px;
  overflow: hidden;
  background: transparent;
}

.onx-spark > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff2a2a, #b00000);
  transition: width 0.9s ease;
}

@media (max-width: 768px) {
  #onx-outcomes {
    padding: 60px 20px;
  }

  .onx-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .onx-metric {
    padding: 28px 20px;
  }
}
