* {
  margin: 0;
  padding: 0;
  list-style: none;
}

#home-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 220;
  background: #160625;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
}

#home-splash.hide {
  display: none
}

#home-splash img {
  height: 40px;
  animation: splashANi 2s infinite;
  display: block;
  transform-origin: center bottom;
}


@keyframes splashANi {
  0% {
    transform: translateY(0) scale(1, 1);
  }

  30% {
    transform: translateY(0) scale(1.025, .975);
  }

  60% {
    transform: translateY(-10px) scale(.975, 1.025);
  }

  80% {
    transform: translateY(0px) scale(1, 1);
  }
}

#home-landpage {
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 200;
  background: #1a0a2e;
  color: #fff;

}

#home-landpage * {
  box-sizing: border-box;
}

/* Header */
.hp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  padding: 20px 0;
  backdrop-filter: blur(10px);
}
.hp-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color:#fff;
}
.hp-logo {
  height: 48px;
}
.hp-nav {
  flex:1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.hp-nav a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  color:inherit;
  opacity: .6;
  display: block;
  padding: 10px 0;
  position:relative;
}
.hp-nav a::after{
  content: '';
  position:absolute;
  left:50%;
  width: 32px;
  margin-left: -20px;
  bottom:0;
  height: 4px;
  border-radius: 20px;
  background:#fff;
  display: none;
}
.hp-nav a:hover {
  opacity: 1;
}
.hp-nav a.cur{
  font-weight: 600;
  font-size:16px;
  opacity: 1;
}
.hp-nav a.cur::after{
  display: block;
}



.hp-btn-signin {
  background: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  color:#000;
  font-size:14px;
  font-weight: 600;
  cursor: pointer;
}
.hp-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hp-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Drop Menu */
.hp-drop-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.hp-drop-menu.show {
  display: block;
}
.hp-drop-menu-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.hp-drop-menu-content {
  position: relative;
  background: #2a1a4e;
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-drop-menu-content a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Primary Button */
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding:0 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-btn-primary .txt{
  flex:1;
  padding:0 40px;
}
.hp-btn-primary .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background:#933CFB;
  border-radius: 100px;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

/* Hero Section */
.hp-hero {
  height: 760px;
  box-sizing: border-box;
  padding: 60px 0 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hp-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  height:100%;
}
.hp-hero-text {
  flex: 1;
  max-width: 520px;
}
.hp-hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hp-hero-text h1 strong{
  font-size: 70px;
  display: block;
}


.hp-hero .hp-btn-primary{
  margin-top: 30px;
}

.hp-hero-desc {
  font-size: 14px;
  line-height: 1.4;
  opacity: .6;
}
.hp-hero-cards {
  flex: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 400px;
  height: 100%;
  padding: 0 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%);  
}
.hp-hero-col {
  overflow: hidden;
  width:100%;
  height:100%;
  box-sizing: border-box;
}
.hp-hero-col-1 {
  background:url('/images/home/home-banner-1.png') 0 100% repeat-y;
  background-size:100% auto;
	animation: to-downNew2 80s infinite linear;
}
.hp-hero-col-2 {
  background:url('/images/home/home-banner-2.png') 0 100% repeat-y;
  background-size:100% auto;
	animation: to-topNew2 80s infinite linear;
}

@keyframes to-topNew2 {
  0% {			
    background-position: 0 0;
  }
  100% {
    background-position: 0  calc(100% - (100vh));
  }
}
@keyframes to-downNew2 {
  0% {
    background-position: 0 calc(100% - (100vh))
  }
  100% {
    background-position: 0 0;
  }
}


.hp-main-box{
  background:url(/images/home/home-bg-2.png) center no-repeat;
  background-size: auto 100%;
  padding-bottom: 80px;
}

/* Sections common */
.hp-section {
  padding: 80px 0 0;
}
.hp-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.hp-stxt-p{
  color:#933CFB;
  text-align: center;
  padding: 0 0 50px;
  font-size:20px;
}
.hp-section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 38px;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 24px;
}

.hp-stxt-p{
  font-size:14px;
}

.hp-section-note {
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 24px;
}

/* Steps Section */
.hp-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 24px;
  max-width: 960px;
  margin: 0 auto;
}
.hp-step {
  flex: 1;
  text-align: center;
  max-width: 280px;
  position: relative;
  padding-bottom: 40px;
}
.hp-step-img {
  position: relative;
  margin-bottom: 20px;
}
.hp-step-img  img {
  width: 100%;
  max-width: 240px;
  border-radius: 16px;
}
.hp-step h3 {
  position:absolute;
  bottom:0;
  z-index:2;
  background: linear-gradient(90deg, #AE51FF, #DAA3FF);
  border-radius: 100px;
  height:98px;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
  left:0;
  font-size:16px;
}

/* Feature Sections */
.hp-feature-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hp-section-feature.reverse .hp-feature-inner{
  flex-direction: row-reverse;
}
.hp-section-feature.reverse .hp-feature-inner .hp-feature-img img{
  margin-left: -40px;
}

.hp-feature-img {
  flex: 1;
  width: 60%;
  display: flex;
  justify-content: center;
}
.hp-feature-img img {
  width: 100%;
}
.hp-feature-text {
  flex: 1;
}
.hp-feature-emoji {
  width: 94px;
  height: 94px;
  margin-bottom: -16px;
}
.hp-feature-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}
.hp-feature-text p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: .8;
}
.hp-feature-text .hp-btn-primary {
  margin-top: 16px;
}


.hp-feature-list{
  background: #933CFB;
}

.hp-feature-list .hp-feature-inner{
  flex-direction: column;
}

.hp-feature-list .one-flist{
  display: flex;
  justify-content: space-between;
  position:relative;
  height: 334px;
  width:100%;
  align-items: center;
}
.hp-feature-list .one-flist img{
  display: block;
  height:100%;
}
.hp-feature-list .f-2 img,
.hp-feature-list .f-4 img{
  position: absolute;
  left:0;
  top:0;
}
.hp-feature-list .f-2,
.hp-feature-list .f-4{
  flex-direction: row-reverse;
}

.hp-feature-list .one-flist .txt{
  width:50%;
  position: relative;
  z-index: 10;
}

.hp-feature-list .one-flist .txt h2{
  font-size: 24px;
  margin-bottom: 30px;
}

.hp-feature-list .one-flist .txt p{
  font-size:12px;
  margin-bottom: 20px;
  opacity: .8;
}

/* CTA Section */
.hp-section-cta {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.hp-cta-inner h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 36px;
}
.hp-cta-inner p {
  font-size: 14px;
  line-height: 1.4;
}
.hp-cta-inner .hp-btn-primary {
  margin-top: 44px;
  background:linear-gradient(90deg, #AE51FF, #DAA3FF)
}

.hp-cta-inner .hp-btn-primary .icon{
  background:#000;
}

/* Footer */
.hp-footer {
  padding: 40px 0;
}
.hp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hp-footer-logo {
  height: 58px;
  margin-bottom: 30px;
}
.hp-footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.hp-footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.hp-footer-nav a:hover {
  color: #fff;
}

.hp-footer .copy{
  font-size:12px;
  opacity: .4;
  margin-top: 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {


  .hp-nav {
    display: none;
  }
  .hp-menu-btn {
    display: flex;
  }

  .hp-header {
    padding:10px 0;
  }
  .hp-header-inner {
    padding:0 14px;
  }

  .hp-hero {
    height: auto;
    padding: 0;
    min-height: auto;
    position:relative;
  }
  .hp-hero-inner {
    flex-direction: column;
    gap: 40px;
    padding:0;
    width:100%;
    box-sizing: border-box;
    height: auto;
  }
  .hp-hero-text {
    position:relative;
    width:100%;
    text-align: left;
    max-width: 100%;
    z-index: 10;
    padding: 500px 14px 50px;
    background: linear-gradient(180deg, #933CFB00 400px, #933CFB 500px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hp-hero-text h1 {
    font-size: 26px;
  }
  .hp-hero-text h1 strong{
    font-size:52px;
  }
  .hp-hero-text > * {
    order:2;
  }
  .hp-hero-text .hp-btn-primary{
    order:1;
    margin:0 0 20px;
    box-shadow: 0px 0px 12px 14px #FFFFFF20;
  }

  .hp-btn-primary{
    height: 70px;
    padding: 8px;
  }

  .hp-btn-primary .txt{
    padding:0 24px;
    flex:none;
    font-size:18px;
  }

  .hp-btn-primary .icon{
    width: 56px;
    height: 56px;
  }

  .hp-hero-cards {
    height: 600px;
    width:100%;
    flex:none;
    position:absolute;
    left:0;
    top:0;
    box-sizing: border-box;
    padding:0 14px;
    z-index:1;
  }
  .hp-hero-col-1 {
    padding-top: 20px;
  }
  .hp-hero-col-2 {
    padding-bottom: 20px;
  }
  .hp-section {
    padding: 0px 0 20px;
  }
  .hp-section-title {
    font-size: 32px;
    padding: 0 24px;
  }

  .hp-main-box{
    background-size: auto 50%;
    padding-bottom: 20px;
  }

  .hp-section-steps{
    padding: 40px 0 0;
  }
  .hp-steps {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
    padding: 0 12px;
  }
  .hp-step {
    max-width: auto;
    width:46%;
    flex:none;
  }
  .hp-step h3 {
    font-size: 12px;
    height: 50px;
    padding:0 12px;
  }
  .hp-step:first-child{
    margin:0 100px;
  }
  .hp-step-img img {
    width:100%;

  }

  .hp-feature-inner,
  .hp-section-feature.reverse .hp-feature-inner {
    flex-direction: column-reverse;
    gap: 6px;
    padding:0;
  }

  .hp-feature-text{
    padding: 0 14px;
  }
  .hp-feature-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .hp-feature-text p{
    font-size:14px;
  }
  .hp-feature-img{
    width:100%;
    overflow: hidden;
  }
  .hp-feature-emoji{
    margin: -50px 0 -10px;
  }
  .hp-feature-img img {
    max-width: auto;
    width:100%;
  }

  .hp-feature-list .one-flist {
    flex-direction: column-reverse;
    height: auto;
  }
  .hp-feature-list .one-flist img{
    width:100%;
    height: auto;
  }
  .hp-feature-list .one-flist .txt{
    width:100%;
    padding:20px 14px 4px; 
  }
  .hp-feature-list .one-flist .txt h2{
    width:70%;
    font-size:20px;

    margin-top: -80px;


  }

  .hp-feature-list .f-2 img, .hp-feature-list .f-4 img{
    position:initial;
    transform: scaleX(-1);
  }


  .hp-section-cta{
    padding-top: 40px;
  }
  .hp-section-cta .hp-btn-primary .txt{
    font-size: 16px;
    padding:0 10px;
  }
  .hp-cta-inner{
    padding: 0 14px;
  }
  .hp-cta-inner h2 {
    font-size: 26px;
  }
  .hp-cta-images {
    flex-wrap: wrap;
  }
  .hp-cta-img {
    width: 45%;
    height: 80px;
  }



  .hp-footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hp-footer-logo{
    margin-bottom: 20px;
  }

  .hp-footer-nav {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
