.launch-hero {
  position: relative;
  overflow: hidden;
}

.launch-hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -160px;
  top: -30px;
  background: url("/assets/emerald-mark.png") no-repeat center / contain;
  opacity: .09;
  pointer-events: none;
}

.launch-hero > * {
  position: relative;
  z-index: 1;
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-chips span {
  padding: 7px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(252, 252, 248, .62);
  color: #586158;
  font-size: 12px;
  font-weight: 650;
}

.benefit-list strong {
  font-size: 15px;
  font-weight: 720;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.connection-steps {
  border-top: 1px solid var(--rule);
}

.connection-steps > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid var(--rule);
}

.connection-steps > div > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 760;
}

.connection-steps p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.connection-steps strong {
  color: var(--ink);
  font-weight: 720;
}

.tool-list > div {
  grid-template-columns: 180px 1fr;
}

@media (max-width: 680px) {
  .launch-hero::after {
    width: 380px;
    height: 380px;
    right: -170px;
    top: -10px;
  }

  .hero-chips {
    margin-top: 22px;
  }

  .tool-list > div {
    grid-template-columns: 1fr;
  }
}
