.value-stack {
  background: radial-gradient(circle at 80% 0%, rgba(155, 255, 90, 0.22), rgba(0, 0, 0, 0.92) 60%), #050505;
  position: relative;
}
.value-stack::before,
.value-stack::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.value-stack::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
}
.value-stack::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
}
.value-stack .section__inner {
  padding-top: 56px;
  padding-bottom: 64px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.value-stack__header {
  text-align: center;
  margin-bottom: 32px;
}
.value-stack__eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.value-stack__price {
  color: #b9ff4a;
}
.value-stack__value {
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.value-stack__scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px 24px 24px;
  margin-left: 24px;
  margin-right: -24px;
  position: relative;
  scroll-padding-left: 24px;
  scroll-padding-right: 24px;
}

.value-stack__grid {
  display: flex;
  gap: 20px;
  width: max-content;
  margin: 0 auto;
}
.value-stack__scroll::before {
  content: "";
  position: sticky;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  pointer-events: none;
}
.value-stack__scroll::after {
  content: "";
  position: sticky;
  right: 0;
  top: 0;
  width: 72px;
  height: 100%;
  pointer-events: none;
}
.value-stack__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
@media screen and (min-width: 960px) {
  .value-stack__card {
    flex-basis: 360px;
  }
}
.value-stack__card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 26px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.value-stack__card:hover,
.value-stack__card:focus-within {
  border-color: rgba(154, 255, 85, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(154, 255, 85, 0.25);
}
.value-stack__card:hover .value-stack__card-title,
.value-stack__card:focus-within .value-stack__card-title {
  color: #b9ff4a;
}
.value-stack__card:hover .value-stack__badge,
.value-stack__card:focus-within .value-stack__badge {
  background: rgba(154, 255, 85, 0.22);
  color: #b9ff4a;
}
.value-stack__card:hover .value-stack__check,
.value-stack__card:focus-within .value-stack__check {
  background: rgba(154, 255, 85, 0.35);
}
.value-stack__badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(154, 255, 85, 0.12);
  color: #b9ff4a;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.value-stack__card-title {
  margin: 18px 0 12px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
.value-stack__card-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.value-stack__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.value-stack__check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(154, 255, 85, 0.2);
  color: #b9ff4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.value-stack__cta {
  position: relative;
}
