/**
 * Home — Outcomes section (centered bento spotlight cards).
 */
.mkt-section--outcomes.mkt-section--value {
  background: transparent;
  border-bottom: none;
}

.mkt-outcomes-head {
  text-align: center;
  max-width: 42em;
  margin: 0 auto clamp(24px, 3vw, 32px);
}

.mkt-outcomes-head__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.22);
  color: var(--portal-purple-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-outcomes-head h2 {
  font-size: clamp(1.625rem, 4.2vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--portal-ink);
}

.mkt-outcomes-head__lead {
  margin: 0;
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--portal-ink-muted);
}

.mkt-outcomes-bento {
  display: grid;
  gap: clamp(16px, 2.5vw, 20px);
}

@media (min-width: 720px) {
  .mkt-outcomes-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .mkt-outcomes-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mkt-outcome-spot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 36px) clamp(18px, 3vw, 24px);
  border-radius: calc(var(--portal-radius-lg) + 6px);
  border: 1px solid var(--spot-border, rgba(37, 99, 235, 0.14));
  background: var(--spot-bg, rgba(255, 255, 255, 0.9));
  box-shadow: var(--portal-shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.mkt-outcome-spot::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 70%;
  transform: translateX(-50%);
  background: var(--spot-halo, rgba(37, 99, 235, 0.14));
  filter: blur(36px);
  pointer-events: none;
}

.mkt-outcome-spot:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--portal-shadow-md);
}

.mkt-outcome-spot--purple {
  --spot-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%);
  --spot-border: rgba(37, 99, 235, 0.18);
  --spot-halo: rgba(37, 99, 235, 0.2);
  --spot-ring: rgba(37, 99, 235, 0.35);
  --spot-icon-bg: rgba(37, 99, 235, 0.14);
  --spot-icon-color: #1e3a5f;
}

.mkt-outcome-spot--pink {
  --spot-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 249, 0.98) 100%);
  --spot-border: rgba(71, 85, 105, 0.18);
  --spot-halo: rgba(71, 85, 105, 0.18);
  --spot-ring: rgba(71, 85, 105, 0.32);
  --spot-icon-bg: rgba(71, 85, 105, 0.14);
  --spot-icon-color: #334155;
}

.mkt-outcome-spot--mint {
  --spot-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 253, 245, 0.98) 100%);
  --spot-border: rgba(16, 185, 129, 0.18);
  --spot-halo: rgba(16, 185, 129, 0.16);
  --spot-ring: rgba(16, 185, 129, 0.3);
  --spot-icon-bg: rgba(16, 185, 129, 0.14);
  --spot-icon-color: #059669;
}

.mkt-outcome-spot--sky {
  --spot-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.98) 100%);
  --spot-border: rgba(14, 165, 233, 0.18);
  --spot-halo: rgba(14, 165, 233, 0.16);
  --spot-ring: rgba(14, 165, 233, 0.3);
  --spot-icon-bg: rgba(14, 165, 233, 0.14);
  --spot-icon-color: #0284c7;
}

.mkt-outcome-spot__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mkt-outcome-spot__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--spot-ring);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.mkt-outcome-spot__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--spot-icon-bg);
  color: var(--spot-icon-color);
}

.mkt-outcome-spot__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spot-icon-color);
  opacity: 0.85;
}

.mkt-outcome-spot__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--portal-ink);
}

.mkt-outcome-spot__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 26ch;
  font-size: 14px;
  line-height: 1.62;
  color: var(--portal-ink-muted);
}

@media (prefers-reduced-motion: reduce) {
  .mkt-outcome-spot {
    transition: none;
  }

  .mkt-outcome-spot:hover {
    transform: none;
  }
}
