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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#070707;
    color:#fff;
    overflow-x:hidden;
}

  header {
      width: 100%;
      padding: 28px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #070707;
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 10;
    }
 .logo {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    nav a {
      margin-left: 28px;
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
    }
.hero {
  width: min(100%, 1040px);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 40px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 42px;
}

    .hero-text span {
      display: inline-block;
      background: #111;
      color: #fff;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 25px;
    }

  .hero-text h1 {
  font-size: clamp(52px, 5.2vw, 86px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 620px;
}

    .hero-text p {
      margin-top: 30px;
      font-size: 19px;
      line-height: 1.7;
      max-width: 520px;
      color: #444;
    }

    .buttons {
      margin-top: 38px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 16px 28px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 700;
      border: 2px solid #111;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-4px);
    }

    .btn.dark {
      background: #111;
      color: #fff;
    }

    .btn.light {
      color: #111;
    }
















#progress-bar{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:#7b14c4;
    z-index:9999;
}














.hero{
    min-height:70vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:#070707;
}





.hero-logo{
    width:170px;
    margin-bottom:25px;
    z-index:2;

    filter:
    drop-shadow(0 0 15px #7b14c4)
    drop-shadow(0 0 30px #7b14c4);

    animation:hologram 6s ease-in-out infinite;
}

@keyframes hologram{

    0%,100%{
        transform:
        rotateY(0deg)
        translateY(0);
    }

    50%{
        transform:
        rotateY(12deg)
        translateY(-10px);
    }

}
.laser{
    position:absolute;
    height:2px;
    background:#7b14c4;

    box-shadow:
    0 0 10px #7b14c4,
    0 0 20px #7b14c4,
    0 0 40px #7b14c4;
}

.laser1{
    width:250px;
    top:35%;
    left:-300px;

    animation:laser1 7s linear infinite;
}

.laser2{
    width:350px;
    top:65%;
    right:-350px;

    animation:laser2 8s linear infinite;
}

@keyframes laser1{

    from{
        left:-300px;
    }

    to{
        left:120%;
    }

}

@keyframes laser2{

    from{
        right:-350px;
    }

    to{
        right:120%;
    }

}
.hero h1{
    font-size:80px;
    color:white;
    z-index:2;

    text-shadow:
    0 0 10px #7b14c4,
    0 0 20px #7b14c4;
}

.hero p{
    color:#d0d0d0;
    max-width:700px;
    z-index:2;
}

.badge{
    z-index:2;
    background:#7b14c4;
    color:white;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:12px;
    letter-spacing:3px;
}














.badge{
    background:#7b14c4;
    padding:10px 20px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:20px;
    z-index:2;
}

.hero h1{
    font-size:80px;
    margin-bottom:20px;
    z-index:2;
}

.hero p{
    color:#ccc;
    max-width:700px;
    z-index:2;
}

.terms{
    max-width:1000px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    gap:25px;
}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(123,20,196,.35);
    backdrop-filter:blur(10px);
    padding:35px;
    border-radius:20px;

    opacity:0;
    transform:translateY(50px);

    transition:.7s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:2px;
    background:#7b14c4;
    box-shadow:0 0 20px #7b14c4;
    animation:scan 4s linear infinite;
}

.card.active{
    opacity:1;
    transform:translateY(0);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(123,20,196,.3);
}

.card h2{
    margin-bottom:15px;
    color:#7b14c4;
}

.card p{
    line-height:1.8;
    color:#d8d8d8;
}

footer{
    text-align:center;
    padding:40px;
    color:#888;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }
}

@keyframes scan{
    from{
        left:-100%;
    }

    to{
        left:100%;
    }
}

@media(max-width:768px){

.hero h1{
    font-size:50px;
}

.card{
    padding:25px;
}

}



