@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Manrope&display=swap");
:root {
  cursor:none;
  --gray: #e3eaff;
  --black: #050908;
  --white: #ffffff;
}

* {
  cursor:none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  cursor:none;
  font-size: clamp(8px, 1.3vw, 18px);
  font-family: "Manrope", sans-serif;
}

body {
  cursor:none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--black);
  background-color: white;
  min-height: 100lvh;
}

.loader {
  cursor:none;
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 999;
}
.loader div {
  cursor:none;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 8rem;
  height: 8rem;
  margin: 0.25rem;
  border: 0.25rem solid var(--black);
  border-radius: 50%;
  animation: loading-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--black) transparent transparent transparent;
}
.loader div:nth-child(1) {
  cursor:none;
  animation-delay: -0.45s;
}
.loader div:nth-child(2) {
  cursor:none;
  animation-delay: -0.3s;
}
.loader div:nth-child(3) {
  cursor:none;
  animation-delay: -0.15s;
}

@keyframes loading-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cursor {
  cursor:none;
  pointer-events: none;
}
.cursor .big-circle,
.cursor .small-circle {
  position: fixed;
  z-index: 1000;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
}
.cursor .big-circle {
  --circle-size: 2rem;
  width: var(--circle-size);
  height: var(--circle-size);
  border: 1px solid var(--black);
}
.cursor .small-circle {
  --circle-size: 0.3rem;
  width: var(--circle-size);
  height: var(--circle-size);
  background-color: var(--black);
}
.hero {
  cursor:none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem 3rem;
  background-color: var(--gray);
  height: 100vh;
  width: 100vw;
  border-radius: 0;
  overflow: hidden;
}
.hero spline-viewer {
  cursor:none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero2 {
  cursor:none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem 3rem;
  background-color: var(--gray);
  height: 100vh;
  width: 100vw;
  border-radius: 0;
  overflow: hidden;
}
.hero2 spline-viewer {
  cursor:none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

header,
.content {
  cursor:none;
  position: relative;
}

header {
  cursor:none;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  opacity: 0;
}
header .logo {
  cursor:none;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-family: "DM Sans", sans-serif;
  margin-right: auto;
}
header .logo svg {
  cursor:none;
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 0.5rem;
}
header .logo .copyright {
  cursor:none;
  font-size: 0.75rem;
  align-self: start;
}
header nav {
  cursor:none;
  justify-self: center;
}
header nav ul {
  cursor:none;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
}
header nav ul li {
  cursor:none;
  display: inline-flex;
}
header nav ul li a {
  cursor:none;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
}
header .button {
  cursor:none;
  justify-self: end;
}

.content {
  cursor:none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.content h1 {
  cursor:none;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 400;
  border-radius: 2rem;
}
.content h1 .line {
  cursor:none;
  overflow: hidden;
}
.content h1 .line .word {
  cursor:none;
  transform: translateY(100%);
}
.content .text {
  cursor:none;
  max-width: 24rem;
  margin-left: 4rem;
  opacity: 0;
}
.content .text p {
  cursor:none;
  font-size: 1rem;
  line-height: 1.5;
}

.button {
  cursor:none;
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border-radius: 10rem;
  box-shadow: 0 0.25rem 1rem -0.25rem rgba(127, 12, 185, 0);
  transition: box-shadow ease-in-out 0.2s;
}
.button::before {
  cursor:none;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: linear-gradient(
    90deg,
    #80f2b9 0%,
    #f280b9 40%,
    #7f0cb9 70%,
    #0d80b9 100%
  );
  padding-top: 100%;
  animation: bgSpin 5s linear infinite;
}
.button::after {
  cursor:none;
  --border-width: 0.15rem;
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background-color: var(--gray);
  width: calc(100% - var(--border-width) * 2);
  height: calc(100% - var(--border-width) * 2);
  left: var(--border-width);
  top: var(--border-width);
  border-radius: 10rem;
  transform: scale(1);
  transition: transform ease-in-out 0.2s;
}
.button span {
  cursor:none;
  position: relative;
  z-index: 2;
  color: var(--black);
  transition: color ease-in-out 0.2s;
}
.button:hover {
  cursor:none;
  box-shadow: 0 0.25rem 1rem -0.25rem #7f0cb9;
}
.button:hover::after {
  cursor:none;
  transform: scale(0);
}
.button:hover span {
  cursor:none;
  color: var(--white);
}

@keyframes bgSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  a:link {
    text-decoration: none;
  }
  a:visited {
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  a:active {
    text-decoration: none;
  }
  .drop {
    overflow: hidden;
    list-style: none;
    position: absolute;
    padding: 0;
    width: 100%;
    left: 0;
    top: 48px;
    div {
      @include transform(translate(0, -100%));
      @include transition(all 0.5s 0.1s);
      position: relative;
    }
  }
}
