.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.outcomes__card {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.outcomes__card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 68%);
  pointer-events: none;
}

.outcomes__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.outcomes__number {
  display: block;
  color: var(--accent-strong);
  font-size: 48px;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.outcomes__card h3 {
  margin-top: 22px;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.outcomes__card p {
  max-width: 310px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
