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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#090d16;
  color:white;
  overflow-x:hidden;
}

/* BACKGROUND */

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left,#27408b1f,transparent 30%),
    radial-gradient(circle at bottom right,#1d3f9c18,transparent 30%);
  z-index:-2;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size:42px 42px;
  z-index:-1;
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:1000;

  width:100%;

  padding:22px 7%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(9,13,22,0.78);

  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
  font-size:28px;
  font-weight:800;
  letter-spacing:-1px;
}

nav{
  display:flex;
  gap:38px;
}

nav a{
  text-decoration:none;
  color:#9ca7c7;
  transition:0.2s;
  font-weight:500;
}

nav a:hover{
  color:white;
}

.discord-link{
  text-decoration:none;
}

.discord-link button{
  border:none;
  background:#3f67ff;
  color:white;
  padding:13px 20px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}

/* HERO */

.hero{
  padding:140px 7% 70px;
}

.hero-text{
  max-width:850px;
}

.alpha-tag{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:#11192a;
  border:1px solid rgba(255,255,255,0.05);

  font-size:13px;
  letter-spacing:1px;
  font-weight:700;

  margin-bottom:28px;
}

.hero h1{
  font-size:76px;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:24px;
}

.hero p{
  font-size:18px;
  line-height:1.9;
  color:#afb9d5;
  max-width:720px;
}

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

.primary-btn{
  border:none;
  background:#4670ff;
  color:white;
  padding:16px 22px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.06);
  background:#12192a;
  color:white;
  padding:16px 22px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}

/* SCREENSHOT */

.screenshot-section{
  padding:0 7% 100px;
}

.screenshot-box{
  width:100%;
  background:#0f1728;
  border-radius:24px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
  0 20px 80px rgba(0,0,0,0.5),
  0 0 90px rgba(44,87,255,0.14);
}

.window-bar{
  height:52px;
  background:#10192a;

  border-bottom:1px solid rgba(255,255,255,0.05);

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 20px;
}

.dots{
  display:flex;
  gap:8px;
}

.dots span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#34476d;
}

.window-title{
  color:#b6c2df;
  font-size:14px;
}

.screenshot-box img{
  width:100%;
  height:auto;
  display:block;
}

/* SECTION */

.section{
  padding:120px 7%;
}

.section-top{
  margin-bottom:50px;
}

.section-top h2{
  font-size:52px;
  margin-bottom:14px;
  letter-spacing:-2px;
}

.section-top p{
  color:#a7b1cd;
  line-height:1.8;
  max-width:760px;
}

/* CARDS */

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:#10192a;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:22px;
  padding:34px;
}

.card h3{
  margin-bottom:14px;
  font-size:22px;
}

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

/* FEATURES */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature{
  background:#10192a;
  border:1px solid rgba(255,255,255,0.05);

  border-radius:18px;

  padding:24px;

  font-weight:600;

  transition:0.2s;
}

.feature:hover{
  transform:translateY(-3px);
  border-color:#4c74ff44;
}

/* ANTI */

.anti-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.anti-box{
  background:#10192a;
  border-radius:24px;
  padding:34px;

  border:1px solid rgba(255,255,255,0.05);
}

.anti-box h3{
  font-size:28px;
  margin-bottom:22px;
}

.green{
  color:#6dff9b;
}

.red{
  color:#ff7a7a;
}

.list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.list div{
  background:#151f35;
  border-radius:14px;
  padding:16px 18px;
}

/* SERVERS */

.servers{
  margin-top:70px;
}

.servers h3{
  font-size:32px;
  margin-bottom:24px;
}

.server-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.server{
  background:#10192a;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:18px;
  padding:22px;
}

/* BOTTOM */

.bottom{
  padding:140px 7%;
  text-align:center;
}

.bottom h2{
  font-size:62px;
  margin-bottom:18px;
  letter-spacing:-2px;
}

.bottom p{
  color:#aab4d1;
  font-size:18px;
  line-height:1.8;
  max-width:720px;
  margin:auto;
}

/* FOOTER */

footer{
  padding:40px;
  text-align:center;
  color:#7985a8;

  border-top:1px solid rgba(255,255,255,0.05);
}

/* MOBILE */

@media(max-width:1100px){

  .card-grid{
    grid-template-columns:1fr;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .anti-grid{
    grid-template-columns:1fr;
  }

  .server-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:850px){

  nav{
    display:none;
  }

  header{
    padding:18px 5%;
  }

  .hero{
    padding:120px 5% 60px;
  }

  .screenshot-section{
    padding:0 5% 80px;
  }

  .section{
    padding:100px 5%;
  }

  .bottom{
    padding:100px 5%;
  }

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

  .section-top h2{
    font-size:38px;
  }

  .bottom h2{
    font-size:40px;
  }

  .hero p{
    font-size:16px;
  }

}
