::-moz-selection {
  background-color: rgba(0, 178, 200, 0.57);
  color: white;
  text-shadow: none;
}

::selection {
  background-color: rgba(0, 178, 200, 0.57);
  color: white;
  text-shadow: none;
}

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

body {
  padding-top: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-width: 320px;
  background-color: #131318;
  font-family: sans-serif;
  overflow: visible;
  text-align: center;
  line-height: 2;
  padding-bottom: 40px;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  max-width: 1024px;
  margin: 0 auto;
  font-size: clamp(5.4375rem, 1.2946rem + 20.7143vw, 9.0625rem);
}

p.description {
  font-size: 0.095em;
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: rgba(114, 119, 128, 0.8);
  

  transition: opacity 1.6s ease, transform 1.6s ease;
  transition-delay: 400ms;
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;

}
p.description span {
  display: inline-flex;
}

h2.text {
  text-transform: uppercase;
  letter-spacing: 1.7px;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 60px;
  text-align: left;
  justify-content: left !important;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}


canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: -1.05em;
  margin-bottom: -50%;
  filter: drop-shadow(25px 70px 20px rgba(34, 38, 48, 0.5));
  z-index: 100;
}

#widget {
  width: 2.5em;
  height: 2.3em;

  margin-top: 0.3em;
  flex-shrink: 0;
  transform: translate3d(0px, 0px, 0px) scale3d(1.04, 1.04, 1);
  border-radius: 0.44em;
  margin-bottom: 0.4em;
  padding: 0.12em;
  background: linear-gradient(#292c36, #21232a);
  background: #21232a;
  box-shadow: 2px 2px 1px -1px rgba(114, 130, 134, 0.35) inset;
}

header {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transform: translateX(0) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.35em;
  background: linear-gradient(180deg, #585c65 0%, #555961 100%);
  box-shadow: 2px 2px 0px -1px rgba(255, 255, 255, 0.3) inset, 0px -1px 1px 2px #3d3d47 inset, 0 -0.1em 0.2em 0.1em rgba(255, 255, 255, 0.15) inset, 0px 0.4em 0.2em -0.1em rgba(19, 23, 24, 0.45);
  transition: transform 1.3s ease;
  transform: translate3d(0px, 0px, 0px) scale3d(0.85, 0.85, 1) !important;
  transition-delay: 50ms;
}

.title {
  font-size: 50%;
  z-index: 1;
  line-height: 1;
  font-family: "Akira Expanded", sans-serif;
  margin: 0;
  margin-right: 0.06em;
  text-align: center;
  -webkit-leading-trim: both;
  text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.6), 0px -1px 0px rgba(255, 255, 255, 0.6), -1px 0px 0px rgba(255, 255, 255, 0.6), 0em 0.25em 0.2em rgba(9, 12, 15, 0.2);
  font-style: normal;
  font-weight: 800;
  align-self: center;
  position: relative;
  color: #b1b6c3;
  color: color(display-p3 0.6976 0.7129 0.759);
  margin-bottom: 0.05em;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 1) !important;
  transition: letter-spacing 2s ease, opacity 2s ease, transform 2s ease;
  transition-delay: 150ms;
  letter-spacing: 0.2em;

}
.title.fadeIn {
  letter-spacing: 0.03em;
}

h2 {
  display: flex;
  color: #a9aab5;
  text-align: center;
  font-size: 0.125em;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.32em;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
}
h2 span {
  font-size: 140%;
}

.fadeIn {
  opacity: 1 !important;
  transform: scale3d(1, 1, 1) !important;
}

.loader {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 150px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease, visibility 500ms ease;
}
.loader.hide {
  opacity: 0 !important;
  visibility: 0 !important;
}
.loader span {
  display: flex;
  background-color: white;
  height: 100%;
  -webkit-animation: loader 1.3s infinite alternate ease-in-out;
          animation: loader 1.3s infinite alternate ease-in-out;
  width: 25%;
}

@-webkit-keyframes loader {
  0% {
    opacity: 0;
    transform: translateX(0%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(300%);
  }
}

@keyframes loader {
  0% {
    opacity: 0;
    transform: translateX(0%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(300%);
  }
}

.liquid-iridium .hero-logo-container {
  
      background-color: #1a1a1a;
      background-image: 
        radial-gradient(circle at 50% 120%, rgba(0,0,0,0.9) 0%, transparent 60%),
        linear-gradient(140deg, 
          #666 0%, 
          #2a2a2a 42%, 
          #050505 48%, 
          #1a1a1a 55%, 
          #444 100%
        );
      box-shadow: 
        0 40px 90px -15px rgba(0,0,0,1),
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 2px 0 5px rgba(255,255,255,0.15),
        inset 0 0 50px rgba(0,0,0,0.9);
      border-radius: 100%;
      border: 1px solid rgba(255,255,255,0.2);
      overflow: hidden;
    }
    .liquid-iridium .hero-logo-container::before {
      content: "";
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 85%; height: 85%;
      border-radius: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
      filter: blur(12px);
      pointer-events: none;
    }
    .liquid-iridium .hero-logo-container::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 45%);
      mix-blend-mode: overlay;
      pointer-events: none;
    }
    .liquid-iridium .hero-logo {
      z-index: 5;
      filter: 
        drop-shadow(0 8px 12px rgba(0,0,0,0.9)) 
        brightness(1.15) 
        contrast(1.15);
      opacity: 0.98;
      transform: scale(0.9);
      mix-blend-mode: normal; 
    }
            .hero-logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 160px;
      height: 160px;
      border-radius: 100%;
 
      position: relative; /* Essential for pseudo-elements */
      z-index: 2;
    }

    .hero-logo {

      width: 60%;
      height: auto;
      z-index: 3;
      position: relative;
    }


   .updown {
      animation: up-down 2s ease-in-out infinite alternate-reverse both;
          } 

          @-webkit-keyframes up-down {
        0% {
          transform: translateY(5px);
        }
        100% {
          transform: translateY(-5px);
        }
      }
      
      @keyframes up-down {
        0% {
          transform: translateY(5px);
        }
        100% {
          transform: translateY(-5px);
        }
    }    
    
    
    .home-hero-wrap{
  /* background: #1d1618 */
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;

}

.home-hero-canvas{
  cursor: default;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}





@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
 .scroll-btn {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
}
.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #dce1e3 0%, #aebbc4 100%);
  border: none;
  border-radius: 30px;
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.8),
    inset -2px -2px 5px rgba(0,0,0,0.2),
    0 0 15px rgba(255,255,255,0.2);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  max-width: 250px;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transition: 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

