@charset "UTF-8";
/* Step timeline — horizontal numbered steps with dashed connectors
   (Figma 15006:20578). Gradient number badges, centered head. */
.step_timeline {
  padding: 80px 0;
  background: #ffffff;
}
.step_timeline * {
  color: inherit;
}
.step_timeline .step_timeline__head {
  margin-bottom: 56px;
  text-align: center;
}
.step_timeline .step_timeline__eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4a3bbe;
}
.step_timeline .step_timeline__title {
  margin: 0 auto;
  max-width: 1120px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
}
.step_timeline .step_timeline__items {
  display: flex;
  align-items: flex-start;
}
.step_timeline .step_timeline__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.step_timeline {
  /* Dashed connector runs from this badge's right edge to the next badge. */
}
.step_timeline .step_timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  border-top: 2px dashed #b9b2f7;
  z-index: 0;
}
.step_timeline .step_timeline__badge {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #16a9ff 47.29%, #614efa 100%);
  color: #f7f7f8;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.step_timeline .step_timeline__item-title {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #1a1a22;
}
.step_timeline .step_timeline__item-desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1a1a22;
}
@media screen and (max-width: 900px) {
  .step_timeline {
    padding: 48px 0;
  }
  .step_timeline .step_timeline__head {
    margin-bottom: 40px;
  }
  .step_timeline .step_timeline__title {
    font-size: 28px;
    line-height: 36px;
  }
  .step_timeline .step_timeline__items {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step_timeline .step_timeline__item {
    width: 100%;
    padding: 0;
  }
  .step_timeline .step_timeline__item:not(:last-child)::after {
    display: none;
  }
}
