.outbound-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 237, 2, 0.28), transparent 24%),
    linear-gradient(112deg, #fff 0%, #fff7e6 48%, #ebeae8 100%);
}

.outbound-hero::after {
  height: 220px;
  background: linear-gradient(95deg, #000 0%, #FE8301 54%, #ED8BFA 100%);
  opacity: 0.94;
}

.outbound-engine {
  position: relative;
  z-index: 2;
  padding: 22px;
  border: 1.5px solid #000;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--bno-shadow-panel);
}

.engine-top {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: #fff;
  background: #000;
  border-radius: var(--radius);
}

.engine-top span {
  color: var(--bno-mellow-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

.engine-top strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.98;
  font-weight: 430;
}

.engine-flow {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.engine-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--bno-cool-gray);
}

.engine-flow b {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--bno-soft-yellow);
  border-radius: 50%;
}

.engine-flow span {
  display: block;
  margin-bottom: 4px;
  font-weight: 950;
}

.engine-flow small {
  grid-column: 2;
  color: rgba(0, 0, 0, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.compact article {
  min-height: 250px;
}

.modern-outbound {
  background: #000;
  color: #fff;
}

.modern-outbound .section-head h2 {
  color: #fff;
}

.modern-outbound .eyebrow,
.modern-outbound .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.outbound-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.outbound-stack article {
  min-height: 330px;
  padding: 24px;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--bno-cool-gray);
}

.outbound-stack article:nth-child(2) {
  background: var(--bno-soft-orange);
  color: #000;
}

.outbound-stack article:nth-child(3) {
  background: var(--bno-soft-yellow);
  color: #000;
}

.outbound-stack article:nth-child(4) {
  background: var(--bno-soft-pink);
  color: #000;
}

.outbound-stack h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
  font-weight: 480;
}

.outbound-stack p {
  margin: 0;
  line-height: 1.58;
}

.outbound-method article:nth-child(2n) {
  background: #fff;
}

.activation-map {
  background: var(--bno-cool-gray);
}

.activation-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.activation-grid article {
  min-height: 245px;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: #fff;
  border-top: 8px solid var(--bno-fiery-orange);
}

.activation-grid article:nth-child(2),
.activation-grid article:nth-child(5) {
  border-top-color: var(--bno-mellow-yellow);
}

.activation-grid article:nth-child(3),
.activation-grid article:nth-child(6) {
  border-top-color: var(--bno-slack-black);
}

.activation-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: var(--tracking-caps);
}

.activation-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.12;
}

.activation-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: 15px;
  line-height: 1.42;
}

@media (max-width: 1080px) {
  .outbound-stack,
  .activation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .outbound-stack,
  .activation-grid {
    grid-template-columns: 1fr;
  }

  .outbound-engine {
    box-shadow: var(--bno-shadow-soft);
  }

  .outbound-stack article,
  .activation-grid article {
    min-height: auto;
  }
}
