:root {
  --s-ink: #101419;
  --s-muted: #667681;
  --s-border: #dbe5eb;
  --s-light: #f7f9fb;
  --s-navy: #0c1d27;
  --s-panel: #151b23;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--s-ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button {
  font-family: "Inter", Arial, sans-serif;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.s-inner {
  width: calc(100% - (2 * var(--page-edge)));
  max-width: 1280px;
  margin: 0 auto;
}

.s-eyebrow {
  margin: 0;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.s-eyebrow--light {
  color: rgba(255, 255, 255, .5);
}

.s-eyebrow--muted {
  color: var(--s-muted);
}

.s-button {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--brand-blue);
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background-color var(--duration-press) ease,
    border-color var(--duration-press) ease,
    transform var(--duration-press) var(--ease-out);
}

.s-button:hover,
.s-button:focus-visible {
  border-color: var(--brand-blue-hover);
  background: var(--brand-blue-hover);
}

.s-button--compact {
  min-height: 44px;
  padding: 0 24px;
}

.s-shimmer {
  overflow: hidden;
}

.s-shimmer::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-130%) skewX(-14deg);
}

.s-shimmer:hover::after,
.s-shimmer:focus-visible::after {
  animation: s-shimmer .58s ease forwards;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(circle 220px at var(--s-x, 50%) var(--s-y, 50%), rgba(77, 163, 255, .13), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-ui) ease;
}

.spotlight > * {
  position: relative;
  z-index: 2;
}

.s-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: var(--s-navy);
}

.s-hero__image,
.s-hero__overlay {
  position: absolute;
  inset: 0;
}

.s-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-hero__overlay {
  background: linear-gradient(90deg, rgba(12, 29, 39, .96) 0%, rgba(12, 29, 39, .84) 48%, rgba(12, 29, 39, .78) 100%);
}

.s-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1fr) 620px;
  gap: 48px;
  align-items: center;
}

.s-hero__copy {
  max-width: 560px;
}

.s-hero__copy h1 {
  margin: 14px 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.s-hero__copy > p:not(.s-eyebrow) {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.6;
}

.s-hero__architecture {
  min-width: 0;
}

.s-stats {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.s-stat {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px);
  transition:
    background-color var(--duration-ui) ease,
    border-color var(--duration-ui) ease,
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
}

.s-stat strong {
  display: block;
  margin-bottom: 14px;
  color: #4da3ff;
  font-size: 40px;
  line-height: 1;
}

.s-stat h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.s-stat p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.5;
}

.s-section {
  padding: 96px 0;
}

.s-section--solutions {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.s-section--products {
  background: var(--s-light);
}

.s-section--delivery {
  background: #fff;
}

.s-section__header {
  margin-bottom: 48px;
}

.s-section__header h2,
.s-integration__copy h2 {
  margin: 10px 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.s-section__header > p:last-child,
.s-integration__copy > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--s-muted);
  font-size: 16px;
  line-height: 1.6;
}

.s-solution-carousel {
  display: grid;
  grid-template-columns: 240px minmax(0, 680px) 240px;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.s-preview {
  position: relative;
  width: 240px;
  height: 400px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #d8e1e7;
  opacity: .75;
  transition: opacity var(--duration-ui) ease, transform var(--duration-ui) var(--ease-out);
}

.s-preview:focus-visible {
  opacity: .95;
}

.s-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-solution-panel {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 16px;
  background: #eef1f4;   /* 图片加载前浅色占位（避免黑屏），加载完成后由图片覆盖 */
  box-shadow: 0 24px 48px rgba(17, 24, 32, .1);
  transition:
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
}

.s-solution-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-switch-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1.02);
  transition:
    opacity .5s var(--ease-out),
    transform .5s var(--ease-in-out);
}

.s-switch-image.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.s-switch-image.is-entering-next {
  transform: translate3d(3%, 0, 0) scale(1.02);
}

.s-switch-image.is-entering-previous {
  transform: translate3d(-3%, 0, 0) scale(1.02);
}

.s-switch-image.is-leaving-next {
  opacity: 0;
  transform: translate3d(-2%, 0, 0) scale(.985);
}

.s-switch-image.is-leaving-previous {
  opacity: 0;
  transform: translate3d(2%, 0, 0) scale(.985);
}

.s-solution-panel__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(16, 20, 25, .92) 100%);
}

.s-solution-panel__content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: #fff;
}

.s-solution-panel__content > span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 100px;
  align-items: center;
  background: rgba(255, 255, 255, .15);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.s-solution-panel__content h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.s-solution-panel__content p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.6;
}

.s-carousel-navigation {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
}

.s-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--s-border);
  border-radius: 50%;
  place-items: center;
  color: var(--s-ink);
  background: #fff;
  font-size: 17px;
  line-height: 1;
  transition:
    color var(--duration-press) ease,
    border-color var(--duration-press) ease,
    background-color var(--duration-press) ease,
    transform var(--duration-press) var(--ease-out);
}

.s-arrow:hover,
.s-arrow:focus-visible {
  color: #fff;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.s-solution-tabs {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--s-border);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.s-solution-tab {
  position: relative;
  min-height: 60px;
  padding: 16px 12px 0;
  color: var(--s-muted);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  transition:
    color var(--duration-press) ease,
    transform var(--duration-press) var(--ease-out);
}

.s-solution-tab::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--s-ink);
  content: "";
  transform: scaleX(0);
  transition: transform var(--duration-ui) var(--ease-out);
}

.s-solution-tab.is-active {
  color: var(--s-ink);
  font-weight: 600;
}

.s-solution-tab.is-active::before {
  transform: scaleX(1);
}

.s-integration {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--s-navy);
}

.s-integration__image,
.s-integration__overlay {
  position: absolute;
  inset: 0;
}

.s-integration__image {
  background: url("/uploads/integration_keep_what_works_52de5055dd.webp") center / cover no-repeat;
}

.s-integration__overlay {
  background: linear-gradient(to top, rgba(12, 29, 39, .55) 0%, rgba(12, 29, 39, .35) 50%, rgba(12, 29, 39, .25) 100%);
}

.s-integration__inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 96px;
  padding-bottom: 96px;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.s-integration__copy h2 {
  color: #fff;
}

.s-integration__copy > p:last-child {
  color: rgba(255, 255, 255, .7);
}

.s-value-grid {
  display: grid;
  border: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.s-value {
  min-height: 180px;
  padding: 24px;
  background: rgba(12, 29, 39, .82);
  transition:
    background-color var(--duration-ui) ease,
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
}

.s-value:nth-child(1),
.s-value:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.s-value:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.s-value h3 {
  margin: 0 0 10px;
  color: #4da3ff;
  font-size: 24px;
  line-height: 1.25;
}

.s-value p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.6;
}

.s-product-selector {
  display: grid;
  min-height: 520px;
  grid-template-columns: 190px minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: stretch;
}

.s-product-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.s-product-tab {
  min-height: 48px;
  padding: 10px 12px 10px 16px;
  border-left: 2px solid #d8e1e7;
  color: #7a8991;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  transition:
    color var(--duration-press) ease,
    border-color var(--duration-press) ease,
    background-color var(--duration-press) ease,
    transform var(--duration-press) var(--ease-out);
}

.s-product-tab:hover,
.s-product-tab:focus-visible {
  color: var(--s-ink);
}

.s-product-tab.is-active {
  border-left: 3px solid var(--brand-blue);
  color: var(--s-ink);
  background: rgba(22, 119, 255, .06);
  font-weight: 700;
}

.s-product-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #e9eef2;
  box-shadow: 0 22px 52px rgba(16, 20, 25, .08);
  transition:
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
}

.s-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.s-product-copy h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.3;
}

.s-product-copy > p:not(.s-eyebrow) {
  margin: 0 0 24px;
  color: var(--s-muted);
  font-size: 14px;
  line-height: 1.6;
}

.s-product-arrows {
  display: flex;
  margin-top: 28px;
  gap: 10px;
}

.s-delivery-steps {
  position: relative;
  display: grid;
  margin: 64px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
}

.s-delivery-steps::before {
  position: absolute;
  top: 63px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 119, 255, 0), rgba(22, 119, 255, .2), rgba(22, 119, 255, 0));
  content: "";
}

.s-delivery-steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.s-delivery-node {
  position: relative;
  display: grid;
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  border: 1px solid var(--s-border);
  border-radius: 32px;
  place-items: center;
  color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 14px 34px -10px rgba(17, 47, 40, .12);
  transition:
    border-color var(--duration-ui) ease,
    box-shadow .3s var(--ease-out),
    transform .3s var(--ease-out);
}

.s-delivery-node::before {
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf4ff, #fff);
  content: "";
}

.s-delivery-node img {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
}

.s-delivery-node b {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--brand-blue);
  font-size: 12px;
}

.s-delivery-node--active {
  color: #fff;
  background: var(--s-navy);
}

.s-delivery-node--active::before {
  background: linear-gradient(135deg, #4da3ff, #102431);
}

.s-delivery-steps h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
}

.s-delivery-steps p {
  margin: 0 auto;
  color: #7a8992;
  font-size: 12px;
  line-height: 1.6;
}

.s-cta {
  padding: 80px 0 48px;
  overflow: hidden;
  background: var(--s-ink);
}

.s-cta__panel {
  position: relative;
  padding: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  color: #fff;
  background-color: var(--s-panel);
  background-image: url("../assets/images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.s-cta__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-ui) ease;
}

.s-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 620px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}

.s-cta__content h2 {
  margin: 14px 0 16px;
  font-size: 28px;
}

.s-cta__content > p:not(.s-eyebrow) {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.6;
}

@keyframes s-shimmer {
  from { transform: translateX(-130%) skewX(-14deg); }
  to { transform: translateX(270%) skewX(-14deg); }
}

@keyframes s-card-fade {
  from { opacity: .45; }
  to { opacity: 1; }
}

.s-hero__architecture.reveal.visible .s-stat,
.s-value-grid.reveal.visible .s-value,
.s-delivery-steps.reveal.visible li {
  animation: s-card-fade .36s var(--ease-out) both;
}

.s-hero__architecture.reveal.visible .s-stat:nth-child(2),
.s-value-grid.reveal.visible .s-value:nth-child(2),
.s-delivery-steps.reveal.visible li:nth-child(2) {
  animation-delay: 50ms;
}

.s-hero__architecture.reveal.visible .s-stat:nth-child(3),
.s-value-grid.reveal.visible .s-value:nth-child(3),
.s-delivery-steps.reveal.visible li:nth-child(3) {
  animation-delay: 100ms;
}

.s-value-grid.reveal.visible .s-value:nth-child(4),
.s-delivery-steps.reveal.visible li:nth-child(4) {
  animation-delay: 150ms;
}

@media (max-width: 1199px) {
  .s-hero {
    min-height: 680px;
  }

  .s-hero__inner {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    align-content: center;
  }

  .s-hero__copy {
    max-width: 680px;
  }

  .s-stat {
    min-height: 150px;
  }

  .s-preview {
    display: none;
  }

  .s-solution-carousel {
    grid-template-columns: minmax(0, 780px);
  }

  .s-integration__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .s-integration__copy {
    max-width: 680px;
  }

  .s-product-selector {
    min-height: 0;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 32px;
  }

  .s-product-media {
    min-height: 460px;
  }

  .s-product-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
  }

  .s-product-copy .s-eyebrow,
  .s-product-copy h3,
  .s-product-copy > p {
    grid-column: 1;
  }

  .s-product-copy .s-button,
  .s-product-arrows {
    grid-column: 2;
  }

  .s-product-copy .s-button {
    grid-row: 1 / 3;
    align-self: center;
  }

  .s-product-arrows {
    grid-row: 3 / 5;
    margin-top: 0;
    align-self: end;
  }

  .s-delivery-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .s-delivery-steps::before {
    display: none;
  }
}

@media (max-width: 639px) {
  .s-section {
    padding: 64px 0;
  }

  .s-hero {
    min-height: 760px;
  }

  .s-hero__inner {
    min-height: 760px;
    padding: 56px 0;
    gap: 36px;
  }

  .s-hero__copy h1 {
    font-size: 34px;
  }

  .s-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .s-stat {
    display: grid;
    min-height: 0;
    padding: 16px;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
  }

  .s-stat strong {
    grid-row: 1 / 3;
    margin: 0;
    align-self: center;
    font-size: 32px;
  }

  .s-stat h2 {
    margin: 0 0 4px;
  }

  .s-section__header {
    margin-bottom: 36px;
  }

  .s-solution-panel {
    height: 440px;
  }

  .s-solution-panel__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .s-solution-panel__content h3 {
    font-size: 21px;
  }

  .s-carousel-navigation {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .s-solution-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .s-solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .s-solution-tab {
    min-width: 148px;
  }

  .s-integration__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .s-value-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .s-value {
    min-height: 0;
  }

  .s-value:nth-child(1),
  .s-value:nth-child(2),
  .s-value:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .s-product-selector {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .s-product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .s-product-tab {
    min-height: 52px;
    border: 1px solid var(--s-border);
    border-radius: 4px;
    text-align: center;
  }

  .s-product-tab.is-active {
    border: 1px solid var(--brand-blue);
  }

  .s-product-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .s-product-copy {
    display: flex;
  }

  .s-product-copy h3 {
    font-size: 24px;
  }

  .s-delivery-steps {
    margin-top: 44px;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .s-delivery-node {
    width: 112px;
    height: 112px;
  }

  .s-delivery-steps h3 {
    font-size: 18px;
  }

  .s-cta {
    padding: 56px 0 32px;
  }

  .s-cta__panel {
    padding: 44px 22px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .s-button:hover,
  .s-arrow:hover {
    transform: translateY(-1px);
  }

  .s-preview:hover {
    opacity: .95;
    transform: translateY(-3px);
  }

  .s-stat:hover,
  .s-value:hover {
    transform: translateY(-4px);
  }

  .s-stat:hover {
    border-color: rgba(77, 163, 255, .38);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
  }

  .s-value:hover {
    background: rgba(20, 47, 62, .92);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  }

  .s-solution-panel:hover,
  .s-product-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 58px rgba(17, 24, 32, .16);
  }

  .s-preview:hover .s-switch-image.is-active,
  .s-solution-panel:hover .s-switch-image.is-active,
  .s-product-media:hover .s-switch-image.is-active {
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .s-delivery-steps li:hover .s-delivery-node {
    border-color: rgba(22, 119, 255, .34);
    box-shadow: 0 20px 42px -10px rgba(22, 119, 255, .22);
    transform: translateY(-4px);
  }

  .spotlight:hover::before {
    opacity: 1;
  }
}

@media (hover: none) {
  .s-button:active,
  .s-arrow:active,
  .s-solution-tab:active,
  .s-product-tab:active,
  .s-preview:active {
    transform: scale(.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .s-switch-image,
  .s-switch-image.is-active,
  .s-switch-image.is-entering-next,
  .s-switch-image.is-entering-previous,
  .s-switch-image.is-leaving-next,
  .s-switch-image.is-leaving-previous {
    transform: none !important;
    transition-property: opacity !important;
    transition-duration: 160ms !important;
  }

  .s-stat,
  .s-value,
  .s-solution-panel,
  .s-product-media,
  .s-delivery-node {
    transform: none !important;
  }
}
