.a .feature-showcase {
  padding-top: 92px;
  padding-bottom: 78px;
}

.a .feature-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .62fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.a .feature-showcase-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: var(--type-h2);
  line-height: var(--leading-h2);
}

.a .feature-showcase-head .section-lead {
  margin: 0 0 4px;
  font-size: var(--type-lead);
  line-height: var(--leading-body);
}

.a .feature-showcase-layout {
  position: relative;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(128, 88, 232, .18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 247, 255, .9));
  box-shadow: 0 30px 90px rgba(66, 52, 106, .12);
}

.a .feature-showcase-layout::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 48, 69, .24), transparent 34%, transparent 68%, rgba(128, 88, 232, .26));
  filter: blur(16px);
  opacity: .46;
}

.a .feature-showcase-rail {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 8px;
  border: 1px solid #e8e9ef;
  border-radius: 19px;
  background: rgba(248, 249, 252, .84);
}

.a .feature-showcase-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 92px;
  padding: 16px;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.a .feature-showcase-item.is-active {
  border-color: rgba(255, 61, 91, .2);
  background: linear-gradient(110deg, #fff, #fff2f5 54%, #f6f2ff);
  box-shadow: 0 12px 28px rgba(90, 67, 132, .09);
}

.a .feature-showcase-item:focus-visible {
  outline: 3px solid rgba(128, 88, 232, .28);
  outline-offset: 2px;
}

.a .feature-showcase-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  background: #fff;
  color: #687083;
}

.a .feature-showcase-item.is-active .feature-showcase-icon {
  border-color: transparent;
  background: linear-gradient(135deg, #ff3045, #ef4778 48%, #8058e8);
  color: #fff;
  box-shadow: 0 9px 22px rgba(239, 61, 99, .2);
}

.a .feature-showcase-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a .feature-showcase-item-title {
  display: block;
  margin: 1px 0 5px;
  font-size: var(--type-body);
  line-height: 1.4;
}

.a .feature-showcase-item p {
  margin: 0;
  color: #7b8291;
  font-size: var(--type-caption);
  line-height: var(--leading-small);
}

.a .feature-showcase-window {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #e3e5ec;
  border-radius: 19px;
  background: #f6f7fa;
  box-shadow: 0 16px 45px rgba(41, 44, 61, .1);
}

.a .feature-showcase-windowbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid #e8eaf0;
  background: rgba(255, 255, 255, .94);
}

.a .feature-showcase-windowdots {
  display: flex;
  gap: 5px;
}

.a .feature-showcase-windowdots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dbe3;
}

.a .feature-showcase-windowdots i:first-child { background: #ff4057; }
.a .feature-showcase-windowdots i:nth-child(2) { background: #ef9a46; }
.a .feature-showcase-windowdots i:last-child { background: #8058e8; }

.a .feature-showcase-windowbar strong {
  font-size: var(--type-caption);
}

.a .feature-showcase-status {
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2efff;
  color: #6f54c9;
  font-size: var(--type-caption);
  font-weight: 900;
}

.a .feature-showcase-screen {
  position: relative;
  aspect-ratio: 14 / 9;
  overflow: hidden;
  background: #fff;
}

.a .feature-showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .55s ease, transform .9s ease;
  pointer-events: none;
}

.a .feature-showcase-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 850px) {
  .a .feature-showcase-head { grid-template-columns: 1fr; gap: 14px; }
  .a .feature-showcase-layout { grid-template-columns: 1fr; }
  .a .feature-showcase-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
}

@media (prefers-reduced-motion: reduce) {
  .a .feature-showcase-slide { transition: none; }
  .a .feature-showcase-item { transition: none; }
}

@media (max-width: 600px) {
  .a .feature-showcase { padding-top: 58px; padding-bottom: 46px; }
  .a .feature-showcase-layout { padding: 8px; border-radius: 21px; }
  .a .feature-showcase-rail { grid-template-columns: 1fr; }
  .a .feature-showcase-item { min-height: 78px; padding: 13px; }
  .a .feature-showcase-windowbar { min-height: 44px; padding-inline: 12px; }
  .a .feature-showcase-screen { aspect-ratio: 1.18 / 1; }
  .a .feature-showcase-slide { object-fit: cover; object-position: 12% top; }
}
