@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #000319;
  --gray: #b4b4c2;
  --white: #fff;
  --purple-200: #9f92ff;
  --purple-300: #7e6ff0;
  --yellow: #ffcc6d;
  --blue-100: #353b66;
  --blue-200: #191c30;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--gray);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

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

.section-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-block: 160px;
  overflow: hidden;
}

.padding-global {
  width: 100%;
  padding-inline: 16px;
}

.container-lg {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.section-hero_content {
  position: relative;
  display: flex;
}

.section-hero_left {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 75%;
  flex-direction: column;
  gap: 143px;
}

.section-hero_header {
  display: flex;
  max-width: 45rem;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.text-triple-linear {
  background: linear-gradient(145deg, #fff 30%, var(--purple-300) 55%, var(--yellow) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-hero_paragraph {
  max-width: 25rem;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.text-indent {
  display: inline-block;
  width: 40px;
}

.text-white {
  color: var(--white);
}

.section-hero_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.button-shiny {
  position: relative;
  display: flex;
  width: 320px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  padding: 1px;
  border-radius: 999px;
  isolation: isolate;
}

.button-shiny_bg {
  position: absolute;
  z-index: 1;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--blue-200), var(--blue-100));
}

.button-shiny_avatar {
  position: absolute;
  z-index: 4;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 48px;
  overflow: hidden;
  border-radius: 50%;
}

.button-shiny_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-shiny_content {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 16px 0 60px;
  overflow: hidden;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.button-shiny_primary {
  transition: opacity 0.3s ease;
}

.button-shiny_hover {
  position: absolute;
  inset: 0 16px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-shiny_hover-copy {
  display: flex;
  flex-direction: column;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.button-shiny_hover-copy strong {
  font-size: 16px;
  line-height: 1.35;
}

.button-shiny_hover-copy small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.button-shiny_hover svg {
  width: 14px;
  height: 14px;
  transform: translate(-20px, 20px) scale(0);
  transition: transform 0.4s ease;
}

.button-shiny_hover path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-shiny_glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  filter: blur(7px);
  opacity: 0.78;
}

.button-shiny_glow::before,
.button-shiny_glow::after {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffcb6d, #4f34b2 70%);
  content: "";
  animation: glow-orbit 4s linear infinite;
}

.button-shiny_glow::after {
  animation-delay: -2s;
}

.button-shiny:hover .button-shiny_primary,
.button-shiny:focus-visible .button-shiny_primary {
  opacity: 0;
}

.button-shiny:hover .button-shiny_hover,
.button-shiny:focus-visible .button-shiny_hover,
.button-shiny:hover .button-shiny_hover-copy,
.button-shiny:focus-visible .button-shiny_hover-copy {
  opacity: 1;
}

.button-shiny:hover .button-shiny_hover-copy,
.button-shiny:focus-visible .button-shiny_hover-copy {
  transform: translateX(0);
}

.button-shiny:hover .button-shiny_hover svg,
.button-shiny:focus-visible .button-shiny_hover svg {
  transform: translate(0, 0) scale(1);
}

.testimonial-slider {
  position: relative;
  flex: 1;
  height: 43px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(80px);
}

.testimonial.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  margin: 0;
  color: var(--purple-200);
  font-size: 14px;
  line-height: 1.5;
}

.testimonial footer {
  display: flex;
  gap: 4px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.section-hero_ornament {
  position: absolute;
  top: -172px;
  right: -423px;
  width: 797px;
  height: 797px;
  pointer-events: none;
  -webkit-mask: radial-gradient(50% 50%, #000 69.42%, transparent 100%);
  mask: radial-gradient(50% 50%, #000 69.42%, transparent 100%);
}

.section-hero_ornament video {
  width: 100%;
  height: 100%;
}

.section-lighting {
  position: absolute;
  top: -140px;
  left: 32%;
  width: 1038px;
  height: 913px;
  pointer-events: none;
  transform: translateX(-50%);
}

.section-lighting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-entrance {
  opacity: 0;
  transform: translateX(80px);
}

.section-hero_ornament.hero-entrance {
  transform: translateX(120px);
}

@keyframes glow-orbit {
  0% {
    transform: translate(-32px, -32px);
  }
  25% {
    transform: translate(288px, -32px);
  }
  50% {
    transform: translate(288px, 24px);
  }
  75% {
    transform: translate(-32px, 24px);
  }
  100% {
    transform: translate(-32px, -32px);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 56px;
  }

  .section-hero_left {
    max-width: none;
  }

  .section-hero_header {
    max-width: 60%;
  }

  .section-hero_ornament {
    top: -350px;
    right: -288px;
    width: 620px;
    height: 620px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 40px;
  }

  .section-hero_header {
    max-width: 65%;
  }

  .section-hero_footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-slider {
    width: 100%;
  }

  .testimonial {
    align-items: flex-start;
  }
}

@media (max-width: 479px) {
  .section-hero {
    padding-top: 300px;
  }

  .section-hero_header {
    max-width: none;
  }

  .section-hero_ornament {
    top: -600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
