@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --bg-primary: rgb(13, 12, 12);
  --bg-secondary: rgb(33, 31, 31);
  --bg-gradient: rgba(40, 36, 36, 0.55);

  --gradient-1: rgba(80, 80, 80, 0.18);
  --gradient-2: rgba(90, 90, 90, 0.14);
  --gradient-3: rgba(70, 70, 70, 0.12);
  --gradient-4: rgba(100, 100, 100, 0.1);

  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-white-95: rgba(255, 255, 255, 0.95);
  --color-white-85: rgba(255, 255, 255, 0.85);
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-65: rgba(255, 255, 255, 0.65);
  --color-white-24: rgba(255, 255, 255, 0.24);
  --color-white-235: rgba(255, 255, 255, 0.235);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-12: rgba(255, 255, 255, 0.12);
  --color-white-075: rgba(255, 255, 255, 0.075);
  --color-white-4: rgba(255, 255, 255, 0.4);


  --color-gray-230: rgba(230, 230, 230, 0.85);
  --color-gray-242: rgba(242, 242, 242, 0.75);
  --color-gray-191: rgba(191, 191, 191, 0.65);
  --color-gray-238: #eeeeee;
  --color-gray-100: #555;
  --color-gray-84: #545454;
  --color-gray-26: #1a1a1a;
  --color-gray-51-08: rgba(51, 51, 51, 0.08);

  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-black-2: rgba(0, 0, 0, 0.2);
  --color-black-1: rgba(0, 0, 0, 0.1);
  --color-black-08: rgba(0, 0, 0, 0.08);
  --color-black-05: rgba(0, 0, 0, 0.05);
  --color-black-24: rgba(0, 0, 0, 0.24);

  --color-green-light: rgb(24, 0, 91,0.2);
  --color-green-dark: rgb(24, 0, 91);
}

html {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
}

@supports (min-height: 100dvh) {
  html {
    min-height: 100dvh;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image:
          linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary)),
          radial-gradient(circle at 50% 50%, var(--bg-gradient), var(--bg-primary) 60%),
          radial-gradient(60rem 40rem at 15% 20%, var(--gradient-1), rgba(var(--color-black-rgb), 0) 60%),
          radial-gradient(60rem 40rem at 85% 25%, var(--gradient-2), rgba(var(--color-black-rgb), 0) 60%),
          radial-gradient(70rem 45rem at 20% 85%, var(--gradient-3), rgba(var(--color-black-rgb), 0) 65%),
          radial-gradient(70rem 45rem at 80% 80%, var(--gradient-4), rgba(var(--color-black-rgb), 0) 65%);

  background-size:
          auto,
          100% 100%,
          120% 120%,
          140% 140%,
          130% 130%,
          150% 150%;
  background-position:
          50% 0%,
          50% 50%,
          15% 20%,
          85% 25%,
          20% 85%,
          80% 80%;
  animation: bg-pan 30s ease-in-out infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

@supports (min-height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

@keyframes bg-pan {
  0% {
    background-position:
            50% 0%,
            50% 50%,
            15% 20%,
            85% 25%,
            20% 85%,
            80% 80%;
  }

  100% {
    background-position:
            50% 100%,
            48% 52%,
            20% 25%,
            80% 20%,
            25% 80%,
            75% 75%;
  }
}

a,
a:focus,
a:active,
.btn,
.btn:focus,
.btn:active {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

.container {
  max-width: clamp(0px, 1200px, 92.5vw);
  margin-left: auto;
  margin-right: auto;
}

main {
  position: relative;
  z-index: 1;
}

.title {
  width: 100%;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.1;
  margin: 0 0 14px 0;
  background: linear-gradient(180deg, var(--color-white-95), var(--color-gray-230) 60%, var(--color-gray-191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 0px var(--color-white-15);
  position: relative;
  z-index: 2;
  line-height: 1;
}

.lights {
  display: inline-block;
  color: transparent;
  background-image: url('assets/img/circle_bg.svg') !important;
  background-color: transparent;
  background-size: calc(330px + 33vw);
  background-position: 52% 17%;
  background-blend-mode: overlay;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.015em;
}

.subtitle {
  text-align: center;
  width: 100%;
  max-width: 40ch;
  color: var(--color-white-70);
  font-size: clamp(1.07em, 2.5vw, 1.4em);
  line-height: 1.6;
  margin: 0 1rem;
  position: relative;
  line-height: 1.5;
  z-index: 2;
  font-weight: 400;
  text-shadow: 0 0 20px var(--color-white-4);
}

.btn {
  position: relative;
  width: clamp(calc(8em + 10vw), 15em, 92.5vw);
  min-height: 1.4em;
  border-radius: 20em;
  padding: 1.2em 3rem;
  font-size: calc(1.1em + .2vw);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  transition: all .2s ease;
  font-weight: bolder;
  cursor: pointer;
  border: unset;
}

.btn.btn-animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 0.4s ease;
  z-index: -1;
}

.btn.btn-animated:hover {
  box-shadow: 0 1em 2em var(--color-black-2);
}

.btn.btn-animated::after {
  background-color: inherit
}

.btn.btn-animated:hover::after {
  transform: scaleX(1.2) scaleY(1.4);
  opacity: 0;
}

.btn.btn-animated:active {
  box-shadow: 0 0.5em 1em var(--color-black-1);
}

.btn.btn-white {
  background-color: var(--color-gray-242);
  color: var(--color-gray-26);
}

.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
  background-color: var(--color-white);
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.text-primary {
  background-color: var(--bg-primary) !important;
}

.loader1.mini-loader {
  width: calc(3.5rem + .8vw);
  height: calc(3.5rem + .8vw);
  aspect-ratio: 1;
}

.custom-arrow {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
  width: calc(3.8rem + .2vw);
  height: calc(3.8rem + .2vw);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  user-select: none;
  transition: background 0.3s;
  padding: .8rem;
}

.custom-arrow svg {
  width: 100%;
  height: 100%;
}

.custom-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.custom-arrow.left {
  left: 4%;
}

.custom-arrow.left svg {
  transform: rotate(180deg);
}

.custom-arrow.right {
  right: 4%;
}

.custom-arrow:hover,
.custom-arrow:focus {
  background-color: var(--color-white-12);
  color: var(--color-white) !important;
}

.light-show {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 20vw;
  height: 20vw;
  max-width: 80px;
  max-height: 80px;
  background-color: var(--color-black);
  transform-origin: center center;
  will-change: transform;
  perspective: 1000px;
  backface-visibility: hidden;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
}

.light-show.started {
  animation: startShow 1.8s .8s ease forwards;
}

.show-intro {
  font-size: calc(2.4rem + 4.8vw);
  z-index: 9999;
}

.line {
  opacity: 0;
  color: var(--color-gray-100);
  line-height: 0;
}

.line-1 {
  animation: appearGray 0.2s ease forwards, toWhite 0.3s ease forwards;
  animation-delay: 0.1s, 0.4s;
}

.line-2 {
  animation: appearGray 0.2s ease forwards, toWhite 0.3s ease forwards;
  animation-delay: 0.7s, 1.0s;
}

.line-3 {
  animation: appearGray 0.2s ease forwards, blinkWhiteGray 1s ease-in-out 1.6s infinite;
  animation-delay: 1.3s, 1.6s;
}

.modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
  width: 100%;
  background-color: var(--color-gray-238);
  padding-left: calc(1rem + 1vw) !important;
  padding-right: calc(1rem + 1vw) !important;
  border: unset;
}

.modal .btn-close {
  width: calc(3rem + .5vw);
  height: calc(3rem + .5vw);;
  border-radius: 50%;
  color: var(--color-white);
  transition: all .15s ease;
  box-shadow: unset;
  filter: unset !important;
  opacity: 1;
  margin: 0 !important;
}

.modal .btn-close.btn-close-primary {
  background-color: rgba(var(--dark-primary-color-rgb), .6);
}

.modal .btn-close svg {
  width: 100%;
  height: 100%;
}

.modal .btn-close.btn-close-primary:hover {
  background-color: rgba(var(--dark-primary-color-rgb), 1) !important;
}

.modal .btn-close.btn-close-muted:hover {
  background-color: var(--color-gray-51-08);
}

.modal .btn-close.btn-close-white,
.modal .btn-close.btn-close-white:hover {
  background-color: var(--color-white) !important;
  box-shadow: var(--color-black-24) 0px 3px 8px;
}

@keyframes appearGray {
  from {
    opacity: 0;
    transform: translateY(-30px);
    color: var(--color-gray-100);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
    color: var(--color-gray-100);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes toWhite {
  from {
    color: var(--color-gray-100);
  }

  to {
    color: var(--color-white);
  }
}

@keyframes blinkWhiteGray {
  0% {
    color: var(--color-gray-100);
  }

  50% {
    color: var(--color-white);
  }

  100% {
    color: var(--color-gray-100);
  }
}

.line-1.fade-out-up {
  animation: fadeOutUp 0.4s ease both;
}

.line-2.fade-out-up {
  animation: fadeOutUp 0.4s .2s ease both;
}

.line-3.fade-out-up {
  animation: fadeOutUp 0.4s .4s ease both;
}

.mx-w-350 {
  max-width: 350px;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.show-nav {
  width: 100%;
  position: fixed;
  max-width: 85vw;
  left: 7.5vw;
  top: 3rem;
  z-index: 999;
  animation: fadeInUp .2s ease both;
}

.first {
  transform: scale(50);
  opacity: 1;
  animation: unset !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@keyframes startShow {
  0% {
    transform: scale(1);
  }

  10% {
    opacity: 1;
  }

  90% {
    background: radial-gradient(circle,
    var(--color-black) 0%,
    var(--color-black) 100%);
  }

  100% {
    transform: scale(50);
    opacity: 1;
    background: radial-gradient(circle,
    var(--color-black) 0%,
    var(--color-black) 100%);
  }
}

.show-img {
  max-width: 90vw;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
}

#canv {
  position: fixed;
  inset: 0;
  z-index: 0;
  animation: smooth-draw 2.4s ease-in-out infinite alternate;
  will-change: opacity, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.fade-in-1,
.fade-in-2,
.fade-in-3 {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 1.2s ease forwards;
  will-change: opacity, transform;
}

.fade-in-2 {
  animation-delay: .18s;
}

.fade-in-3 {
  animation-delay: .32s;
}

@keyframes fade-out-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}


.fade-out {
  opacity: 1;
  transform: translateY(0);
  animation: fade-out-down 0.8s ease forwards;
  will-change: opacity, transform;
}

.fade-out-1 {
  opacity: 1;
  transform: translateY(0);
  animation: fade-out-down 0.8s ease forwards;
}

.fade-out-2 {
  opacity: 1;
  transform: translateY(0);
  animation: fade-out-down 0.8s ease forwards;
  animation-delay: .18s;
}

.fade-out-3 {
  opacity: 1;
  transform: translateY(0);
  animation: fade-out-down 0.8s ease forwards;
  animation-delay: .32s;
}

.loader1 {
  width: 20vw;
  height: 20vw;
  max-width: 80px;
  max-height: 80px;
  background: linear-gradient(
          165deg,
          rgba(255, 255, 255, 1) 0%,
          rgb(220, 220, 220) 40%,
          rgb(170, 170, 170) 98%,
          rgb(10, 10, 10) 100%
  );
  border-radius: 50%;
  position: relative;
}

.loader1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border-bottom: 0 solid #ffffff05;
  box-shadow: 0 -10px 20px 20px #ffffff40 inset,
  0 -5px 15px 10px #ffffff50 inset, 0 -2px 5px #ffffff80 inset,
  0 -3px 2px #ffffffbb inset, 0 2px 0px #ffffff, 0 2px 3px #ffffff,
  0 5px 5px #ffffff90, 0 10px 15px #ffffff60, 0 10px 20px 20px #ffffff40;
  filter: blur(3px);
  animation: 2s rotate linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg) }
}


.loader2 {
  width: 100%;
  height: 5px;
  display: inline-block;
  position: relative;
  background: var(--color-white-235);
  overflow: hidden;
}

.loader2::after {
  content: '';
  box-sizing: border-box;
  width: 0;
  height: 5px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  animation: animFw 10s linear infinite;
}

@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smooth-draw {
  0% {
    opacity: 0.9;
    filter: blur(0.4px);
  }

  100% {
    opacity: 1;
    filter: blur(0px);
  }
}

.voice-permission-icon {
  width: 6rem;
  height: 6rem;
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
}
