.developers_stack_section {
  background: #f4f4f5;
  padding: 120px 0 80px;
  position: relative;
  overflow-x: hidden;
}
.developers_stack_section > .container {
  position: relative;
  z-index: 1;
}

.stack_bg_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  margin-top: -13px;
  overflow: hidden;
}
.stack_bg_img img {
  width: 2728px;
  max-width: none;
  height: 505px;
  display: block;
}

.stack_heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1a1a22;
  text-align: center;
  margin-bottom: 40px;
}

.stack_table_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.stack_table {
  min-width: 968px;
  max-width: 968px;
  margin: 0 auto;
  display: flex;
}

.stack_labels_col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.stack_label {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 32px 0 32px 24px;
}
.stack_label .label_eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #434351;
}
.stack_label .label_sdk {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #4a3bbe;
}

.stack_cells_card {
  flex: 5;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e7e7ea;
  border-radius: 24px;
}

.stack_row {
  display: flex;
  align-items: stretch;
}

.stack_row--second {
  border-top: 1px solid rgba(97, 97, 112, 0.2);
}

.stack_cell {
  flex: 1;
  padding: 32px;
  border-right: 1px solid rgba(97, 97, 112, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  height: 108px;
}
.stack_cell:last-child {
  border-right: none;
}
.stack_cell .cell_pointer {
  position: absolute;
  top: 34px;
  left: 14px;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.stack_cell .cell_pointer--gray {
  filter: brightness(0);
  opacity: 0.2;
}
.stack_cell .cell_tag {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: #434351;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stack_cell .cell_value {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #1a1a22;
}
.stack_cell--highlight {
  background: linear-gradient(150deg, #614efa 0%, #4c3ec5 55%, #372d8f 100%);
  border-right: none;
  box-shadow: inset 0 0 0 2px #cfcafa;
}
.stack_cell--highlight .cell_pointer {
  filter: none;
  opacity: 1;
}
.stack_cell--highlight .cell_tag {
  color: rgba(247, 247, 248, 0.65);
}
.stack_cell--highlight .cell_value {
  font-size: 14px;
  color: #f7f7f8;
}
.stack_cell--empty {
  background: transparent;
}

.stack_divider {
  max-width: 968px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #e7e7ea;
}
.stack_divider:first-of-type {
  margin-bottom: 40px;
}
.stack_divider:last-of-type {
  margin-top: 40px;
}

.stack_platforms {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 968px;
  margin: 0 auto;
}

.platforms_text {
  flex: 1;
  min-width: 0;
}
.platforms_text .platforms_heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #1a1a22;
  margin-bottom: 8px;
}
.platforms_text .platforms_body {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #434351;
}

.platforms_logos {
  flex: 0 0 424px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.platform_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform_item img {
  height: 56px;
  width: auto;
}

@media screen and (max-width: 1100px) {
  .stack_platforms,
  .stack_divider {
    max-width: 100%;
  }
  .stack_label {
    padding: 24px 0 24px 16px;
  }
  .stack_cell {
    padding: 24px 16px;
  }
  .stack_platforms {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .platforms_text {
    flex: none;
  }
  .platforms_logos {
    width: 240px;
    flex: 0 0 240px;
  }
  .platforms_logos img {
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .developers_stack_section {
    padding: 64px 0 60px;
  }
  .stack_bg_img {
    display: none;
  }
  .stack_heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 28px;
  }
  .stack_table_scroll {
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .stack_table {
    margin-bottom: 0;
    width: 708px;
  }
  .stack_cells_card {
    min-width: 464px;
  }
  .stack_labels_col {
    flex: 0 0 120px;
  }
  .stack_label {
    padding: 20px 0 20px 12px;
    flex: none;
  }
  .stack_cell {
    padding: 20px 12px;
    max-width: 116px;
    height: 106px;
  }
  .stack_cell .cell_pointer {
    display: none;
  }
  .stack_platforms {
    align-items: center;
  }
  .platforms_text {
    text-align: center;
  }
  .platforms_logos {
    margin: 0 auto;
    flex: 0 0 106px;
  }
  .platforms_br {
    display: none;
  }
}
