.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  cursor: default;
}

.card.is-spotlight {
  border-color: rgba(135, 80, 255, .52);
  box-shadow: 0 26px 70px rgba(135, 80, 255, .18);
}

.interactive-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(88px, 8vw, 128px) max(40px, calc((100vw - 1180px) / 2));
  background: #050507;
  color: #fff;
}

.interactive-band .interactive-block {
  width: min(1180px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.interactive-band .section-label {
  color: #9a85c8;
}

.interactive-band .lead {
  color: rgba(255, 255, 255, .7);
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.solution-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.solution-tab.is-active {
  background: #8750ff;
  border-color: #8750ff;
  color: #fff;
}

.solution-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.flow-card {
  padding: 30px;
  min-height: 340px;
  background: #120c1f;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  overflow: hidden;
}

.flow-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.flow-card p {
  color: rgba(255, 255, 255, .72);
}

.flow-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.flow-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.flow-step strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #8750ff;
}

.chat-panel {
  padding: 30px;
  background: #fff;
  color: #050507;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.chat-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 18px;
  background: #eee8ff;
  color: #24202d;
  font-weight: 700;
}

.chat-bubble.alt {
  justify-self: end;
  background: #8750ff;
  color: #fff;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.compare-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(5, 5, 7, .08);
}

.compare-panel.after {
  background: #13091f;
  color: #fff;
}

.compare-panel h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.compare-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(5, 5, 7, .12);
  font-weight: 750;
}

.compare-panel.after li {
  border-top-color: rgba(255, 255, 255, .16);
}

.switcher {
  align-self: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.switcher button {
  width: 58px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #8750ff;
  position: relative;
  cursor: pointer;
}

.switcher button::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 29px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s ease;
}

.comparison.show-before .switcher button::after {
  left: 5px;
}

.comparison.show-before .compare-panel.after {
  opacity: .35;
}

.comparison:not(.show-before) .compare-panel.before {
  opacity: .35;
}

.process-detail {
  margin-top: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: rgba(255, 255, 255, .78);
}

.step {
  cursor: pointer;
}

.step.is-active {
  background: #21143b;
  outline: 2px solid rgba(135, 80, 255, .7);
  outline-offset: -2px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  background: #fff;
  color: #050507;
  font: inherit;
  font-size: 18px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: #8750ff;
  font-size: 28px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 900px) {
  .solution-stage,
  .comparison {
    grid-template-columns: 1fr;
  }

  .switcher {
    order: -1;
  }
}

@media (max-width: 560px) {
  .interactive-band {
    padding: 72px 20px;
  }

  .interactive-band .interactive-block {
    width: 100%;
  }

  .flow-card,
  .chat-panel,
  .compare-panel {
    padding: 24px;
  }
}
