@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, :before, :after {
  box-sizing: inherit;
  flex: 0 1 auto;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #0B0B0F;
  color: #fff;
  font: 500 16px/normal Montserrat, sans-serif;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex-grow: 1;
}

img,
iframe,
svg,
video {
  max-width: 100%;
  user-select: none;
}

img {
  height: auto;
}

a img {
  border: none;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding: 0 0 0 1.2em;
  margin: 0 0 1em;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

/*элементы форм*/
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

label {
  user-select: none;
}

/*кнопки*/
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
button,
[type=submit],
[type=reset],
[type=image] {
  cursor: pointer;
}

.btn {
  --angle: 35deg;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  vertical-align: top;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  background: linear-gradient(var(--angle), #3841E4, #7F24B8);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  min-height: 60px;
  border-radius: 18px;
  padding: 0.5em 1.5em;
}
.btn:active {
  transform: translateY(1px);
}

/*заголовки*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 1em 0 0.5em;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.17;
}

/*таблицы*/
/*контейнеры*/
.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/*иконки*/
.mask-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: currentColor;
  flex: 0 0 auto;
}

/*ШАПКА*/
.logo {
  display: inline-block;
  max-width: 100%;
}
.logo__img {
  display: block;
  width: 100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 40px 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.header__logo {
  width: 209px;
}
.header__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.header__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.63em;
}
.header__link-icon {
  font-size: 1.13em;
}

/*ОСНОВНОЕ СОДЕРЖИМОЕ*/
.card {
  --label-color: #EDEDED;
  font-size: 16px;
  line-height: normal;
  width: 27em;
  padding: 2.25em;
  border-radius: 2.25em;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  user-select: none;
  backdrop-filter: blur(7px);
}
.card--black {
  background-color: #0B0B0F;
  color: #424242;
  --label-color: #595959;
}
.card--white {
  background-color: #fff;
  color: #1A1E1C;
  --label-color: #ADADAD;
}
.card__head {
  display: flex;
  align-items: center;
  gap: 2em;
  justify-content: space-between;
  margin: 0 0 2.2em;
}
.card__logo {
  width: 4.4em;
  background-color: currentColor;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}
.card__logo-img {
  display: block;
  width: 100%;
  visibility: hidden;
}
.card__icon {
  font-size: 2.3em;
}
.card__body {
  display: flex;
  align-items: flex-end;
  gap: 2em;
  justify-content: space-between;
}
.card__fields {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.7em 1.5em;
}
.card__field--big {
  width: 100%;
}
.card__field-label {
  font-weight: 600;
  color: var(--label-color);
  margin: 0 0 0.75em;
}
.card__field-value {
  font-size: 0.85em;
}
.card__field-value--big {
  font-size: 1.44em;
  font-weight: bold;
}
.card__field-value b, .card__field-value strong {
  font-weight: 600;
}
.card__chip {
  font-size: 2.8em;
}

@keyframes bottomCard {
  0% {
    top: 71%;
  }
  50% {
    top: 61%;
  }
  100% {
    top: 71%;
  }
}
@keyframes topCard {
  0% {
    top: 29%;
  }
  50% {
    top: 39%;
  }
  100% {
    top: 29%;
  }
}
@keyframes orbit {
  from {
    offset-distance: var(--start, 0%);
    offset-rotate: 0deg;
  }
  to {
    offset-distance: calc(var(--start) + 100%);
    offset-rotate: -4turn;
  }
}
@keyframes intro_decor {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
  50% {
    transform: rotate3d(1.5, 0, 0.7, 360deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 0deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.intro {
  padding: 150px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.intro__lights {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@-moz-document url-prefix() {
  .intro__lights {
    filter: none;
  }
}
.intro__light {
  position: absolute;
  animation: pulse 7s ease-in-out infinite;
}
.intro__light:nth-child(1) {
  height: 60%;
  aspect-ratio: 0.9;
  top: -15%;
  left: -3vw;
  background: radial-gradient(ellipse at center, rgba(24, 255, 227, 0.6), transparent 70%);
  filter: blur(60px);
}
.intro__light:nth-child(2) {
  top: 0;
  right: -5vw;
  width: 33.33%;
  height: 100%;
  background: radial-gradient(circle at left 50% bottom 20%, #174AFF, transparent 20%), radial-gradient(ellipse at 70% 65%, #FF29C3, rgba(0, 194, 255, 0.3) 40%, transparent 60%);
  filter: blur(60px);
  opacity: 0.75;
  transform-origin: right center;
  animation-delay: 3.5s;
}
.intro__bg {
  position: absolute;
  width: 2409.2px;
  aspect-ratio: 2409.2/1248.2;
  max-width: none;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro__bg-orbit {
  fill: none;
  stroke: #fff;
  stroke-opacity: 0.1;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}
.intro__bg-img {
  width: 90px;
  height: 90px;
  offset-rotate: 0deg;
  animation: orbit 28s linear infinite;
}
.intro__bg-img:nth-child(1) {
  --start: -13%;
}
.intro__bg-img:nth-child(2) {
  --start: 2%;
}
.intro__bg-img:nth-child(3) {
  --start: 60%;
}
.intro__bg-img:nth-child(4) {
  --start: 35%;
}
.intro__bg-star {
  fill: #fff;
  animation: orbit 28s linear infinite;
}
.intro__bg-star:nth-child(1) {
  --start: 14%;
}
.intro__bg-star:nth-child(2) {
  --start: 72%;
}
.intro__wrapper {
  display: flex;
  align-items: center;
  gap: 115px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.intro__main {
  width: 720px;
}
.intro__text {
  margin: 0 0 40px;
}
.intro__text:last-child {
  margin-bottom: 0;
}
.intro__btn {
  min-width: min(164px, 100%);
}
.intro__cards {
  width: 534px;
  aspect-ratio: 543/490;
  flex: 0 0 auto;
  position: relative;
}
.intro__card {
  position: absolute;
  left: 50%;
  top: 50%;
  animation-duration: 3.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: translate(-50%, -50%) rotate3d(1.5, -0.5, 0.7, 45deg);
}
.intro__card:nth-child(1) {
  top: 75%;
  animation-name: bottomCard;
}
.intro__card:nth-child(3) {
  top: 24%;
  animation-name: topCard;
}

/*ПОДВАЛ*/
/*АДАПТИВ*/
@media (hover: hover) {
  .btn {
    transition: --angle 0.75s ease;
  }
  .btn:hover {
    --angle: 215deg;
  }
  .header__link {
    transition: all 0.2s ease;
  }
  .header__link:hover {
    color: #7F24B8;
    filter: drop-shadow(0 0 1em #fff);
  }
}
@media (max-width: 1439px) {
  h1 {
    font-size: 30px;
  }
  .wrapper {
    max-width: 992px;
  }
  .intro__bg {
    width: auto;
    height: 100%;
  }
  .intro__wrapper {
    gap: 60px;
  }
  .intro__main {
    width: calc(50% - 30px);
  }
  .intro__cards {
    width: calc(50% - 30px);
  }
  .intro__card {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 20px 0;
  }
  .intro {
    padding: 80px 0;
  }
  .intro__wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .intro__main {
    width: 100%;
    text-align: center;
  }
  .intro__cards {
    order: -1;
    width: 480px;
    max-width: 100%;
    aspect-ratio: 1.4;
  }
  .intro__card {
    animation: none;
    transform: translate(-50%, -50%);
  }
  .intro__card:nth-child(1) {
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
  .intro__card:nth-child(3) {
    top: 0;
    transform: translateX(-50%);
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 22px;
  }
  .btn {
    font-size: 14px;
    min-height: 50px;
    border-radius: 10px;
  }
  .wrapper {
    padding: 0 15px;
  }
  .header {
    font-size: 14px;
  }
  .header__wrapper {
    gap: 15px;
  }
  .header__logo {
    width: 130px;
    flex: 0 1 auto;
  }
  .header__links {
    gap: 10px 1em;
    flex: 0 0 auto;
  }
  .intro {
    padding: 70px 0;
  }
  .intro__text {
    margin-bottom: 25px;
  }
  .intro__btn {
    min-width: min(230px, 100%);
  }
  .intro__cards {
    width: 100%;
    aspect-ratio: 1.1;
  }
  .intro__card {
    font-size: 3.3vw;
  }
}
