.logo > span {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.logo > span img {
  width: 100%;
  height: 100%;
  display: block;
}

.logo > b {
  color: #287ee8;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
}

.logo.inverse > b {
  color: #fff;
}

/* Карточки реальных инструментов на орбитах первого экрана */
.hero-art {
  --orbit-x: 250px;
  --orbit-y: 210px;
  --orbit-x-86: 217px;
  --orbit-y-50: 105px;
  --orbit-x-50: 125px;
  --orbit-y-86: 182px;
  --orbit-x-negative: -250px;
  --orbit-y-negative: -210px;
  --orbit-x-86-negative: -217px;
  --orbit-y-50-negative: -105px;
  --orbit-x-50-negative: -125px;
  --orbit-y-86-negative: -182px;
  isolation: isolate;
}

.hero-circle {
  width: 180px;
  height: 180px;
}

.hero-orbit-card {
  --orbit-start: 0%;
  width: 190px;
  min-height: 126px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  color: #262626;
  background: #fff;
  box-shadow: 0 22px 55px rgba(9, 100, 139, .28);
  animation: hero-orbit-fallback 24s linear infinite;
  will-change: transform, offset-distance;
  transition: border-color .2s, box-shadow .2s;
}

.hero-orbit-card:hover,
.hero-orbit-card:focus-visible {
  border-color: #bdf300;
  box-shadow: 0 26px 65px rgba(9, 78, 112, .4);
}

.hero-art:hover .hero-orbit-card,
.hero-art:focus-within .hero-orbit-card {
  animation-play-state: paused;
}

.hero-orbit-card:focus-visible {
  outline: 3px solid #bdf300;
  outline-offset: 4px;
}

.hero-orbit-card header {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4eef4;
}

.hero-orbit-card header span {
  color: #667987;
  font-size: 10px;
  font-weight: 800;
}

.hero-orbit-card header i {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #409eef;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.hero-card-body {
  padding-top: 11px;
}

.hero-card-body small,
.hero-card-body b,
.hero-card-body strong,
.hero-card-body em {
  display: block;
}

.hero-card-body b {
  font-size: 14px;
  line-height: 1.25;
}

.hero-card-body small {
  margin-top: 4px;
  color: #409eef;
  font-size: 10px;
}

.hero-card-body strong {
  margin-top: 7px;
  font-size: 15px;
}

.hero-card-body em {
  width: max-content;
  margin-top: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  color: #b54131;
  background: #fff0ed;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.hero-card-body .hero-card-success {
  color: #46700a;
  background: #eaffb5;
}

.hero-orbit-card header .hero-robot {
  color: #262626;
  background: #bdf300;
}

.hero-orbit-crm {
  --orbit-start: 2%;
  animation-delay: 0s;
}

.hero-orbit-prices {
  --orbit-start: 35%;
  animation-delay: -8s;
}

.hero-orbit-steps {
  --orbit-start: 68%;
  animation-delay: -16s;
}

@keyframes hero-orbit-fallback {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(var(--orbit-x), 0);
  }

  8.333% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-86), var(--orbit-y-50));
  }

  16.667% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-50), var(--orbit-y-86));
  }

  25% {
    transform: translate(-50%, -50%) translate(0, var(--orbit-y));
  }

  33.333% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-50-negative), var(--orbit-y-86));
  }

  41.667% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-86-negative), var(--orbit-y-50));
  }

  50% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-negative), 0);
  }

  58.333% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-86-negative), var(--orbit-y-50-negative));
  }

  66.667% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-50-negative), var(--orbit-y-86-negative));
  }

  75% {
    transform: translate(-50%, -50%) translate(0, var(--orbit-y-negative));
  }

  83.333% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-50), var(--orbit-y-86-negative));
  }

  91.667% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-86), var(--orbit-y-50-negative));
  }
}

@media (max-width: 1100px) {
  .hero-art {
    --orbit-x: 195px;
    --orbit-y: 205px;
    --orbit-x-86: 169px;
    --orbit-y-50: 103px;
    --orbit-x-50: 98px;
    --orbit-y-86: 178px;
    --orbit-x-negative: -195px;
    --orbit-y-negative: -205px;
    --orbit-x-86-negative: -169px;
    --orbit-y-50-negative: -103px;
    --orbit-x-50-negative: -98px;
    --orbit-y-86-negative: -178px;
  }

  .hero-orbit-card {
    width: 165px;
    min-height: 120px;
    padding: 12px;
  }

}

@media (max-width: 850px) {
  .hero-art {
    height: 500px;
    --orbit-x: 245px;
    --orbit-y: 195px;
    --orbit-x-86: 212px;
    --orbit-y-50: 98px;
    --orbit-x-50: 123px;
    --orbit-y-86: 169px;
    --orbit-x-negative: -245px;
    --orbit-y-negative: -195px;
    --orbit-x-86-negative: -212px;
    --orbit-y-50-negative: -98px;
    --orbit-x-50-negative: -123px;
    --orbit-y-86-negative: -169px;
  }
}

@media (max-width: 560px) {
  .hero-art {
    height: 390px;
    --orbit-x: 105px;
    --orbit-y: 130px;
    --orbit-x-86: 91px;
    --orbit-y-50: 65px;
    --orbit-x-50: 53px;
    --orbit-y-86: 113px;
    --orbit-x-negative: -105px;
    --orbit-y-negative: -130px;
    --orbit-x-86-negative: -91px;
    --orbit-y-50-negative: -65px;
    --orbit-x-50-negative: -53px;
    --orbit-y-86-negative: -113px;
  }

  .hero-orbit-card {
    width: 120px;
    min-height: 106px;
    padding: 10px;
  }

  .hero-circle {
    width: 80px;
    height: 80px;
  }

  .hero-circle span {
    font-size: 11px;
  }

  .hero-circle b {
    font-size: 25px;
  }

  .hero-card-body b {
    font-size: 12px;
  }

  .hero-card-body strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-card {
    animation: none;
  }
}
