/* Homepage: outcome paths + trust signals */

.dm-home-outcomes {
  --dm-o-card-bg: #fff;
  position: relative;
  overflow: hidden;
}

/* Match research-driven band (#research-roots) — dark blue gradient + glow */
.dm-home-outcomes--research-band {
  color: #e2e8f0;
  background: linear-gradient(135deg, #0b1220 0%, #152a4a 45%, #1a1744 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dm-home-outcomes--research-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(47, 87, 239, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(185, 102, 231, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Same “graph paper” veil as #research-roots (.dm-research-roots--visual::after) */
.dm-home-outcomes--research-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 82%);
  pointer-events: none;
}

.dm-home-outcomes--research-band .container {
  position: relative;
  z-index: 1;
}

.dm-home-outcomes--research-band .dm-kicker {
  color: #93c5fd !important;
}

.dm-home-outcomes--research-band #dm-home-outcomes-heading {
  color: #f8fafc !important;
}

.dm-home-outcomes--research-band header .text-muted {
  color: #cbd5e1 !important;
}

/* Dark glass panels — aligned with .dm-research-roots__card (not white inserts) */
.dm-home-outcomes--research-band .dm-home-outcomes__card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.dm-home-outcomes--research-band .dm-home-outcomes__card:hover {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(147, 197, 253, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.dm-home-outcomes--research-band .dm-home-outcomes__badge {
  color: #93c5fd;
}

.dm-home-outcomes--research-band .dm-home-outcomes__title {
  color: #f1f5f9;
}

.dm-home-outcomes--research-band .dm-home-outcomes__meta {
  color: #94a3b8;
}

.dm-home-outcomes--research-band .dm-home-outcomes__steps li {
  color: #cbd5e1;
}

.dm-home-outcomes--research-band .dm-home-outcomes__steps li::before {
  background: linear-gradient(135deg, #93c5fd, rgba(185, 102, 231, 0.95));
  opacity: 1;
}

/* Outline CTAs on dark cards — mirror .dm-research-roots .btn-dm-outline */
.dm-home-outcomes--research-band .btn-dm-outline {
  --bs-btn-color: #e2e8f0;
  --bs-btn-border-color: rgba(255, 255, 255, 0.35);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.5);
  --bs-btn-hover-color: #fff;
}

body.dm-page-home .dm-home-outcomes--research-band header .dm-kicker {
  font-family: var(--dm-research-serif, ui-serif, Georgia, serif);
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(147, 197, 253, 0.28);
  display: inline-block;
  padding-bottom: 0.35rem;
}

.dm-home-outcomes__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .dm-home-outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.dm-home-outcomes__card {
  height: 100%;
  border-radius: var(--radius-card, 1rem);
  border: 1px solid var(--hs-border, #e6e3f1);
  background: var(--dm-o-card-bg);
  box-shadow: var(--shadow-card, 0 4px 20px rgba(25, 35, 53, 0.06));
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dm-home-outcomes__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover, 0 16px 48px rgba(47, 87, 239, 0.12));
}

.dm-home-outcomes__badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-primary, #2f57ef);
  margin-bottom: 0.35rem;
}

.dm-home-outcomes__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hs-heading, #192335);
  margin: 0 0 0.75rem;
}

.dm-home-outcomes__meta {
  font-size: 0.8125rem;
  color: var(--hs-body, #6b7385);
  margin-bottom: 1rem;
}

.dm-home-outcomes__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.dm-home-outcomes__steps li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: var(--hs-body);
  line-height: 1.45;
}

.dm-home-outcomes__steps li:last-child {
  margin-bottom: 0;
}

.dm-home-outcomes__steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-secondary, #b966e7));
  opacity: 0.85;
}

.dm-home-outcomes__footer {
  margin-top: auto;
  padding-top: 0.25rem;
}
