*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#050816;
  color:white;
  overflow-x:hidden;
  line-height:1.6;
}

/* BACKGROUND GLOW */

body::before{
  content:'';
  position:fixed;
  width:700px;
  height:700px;
  background:
    radial-gradient(circle,#00d9ff33,transparent 70%);
  top:-200px;
  left:-200px;
  z-index:-1;
}

body::after{
  content:'';
  position:fixed;
  width:700px;
  height:700px;
  background:
    radial-gradient(circle,#7a5cff33,transparent 70%);
  bottom:-200px;
  right:-200px;
  z-index:-1;
}

/* CONTAINER */

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

/* =========================================
   HEADER
========================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;

  backdrop-filter:blur(18px);

  background:
    rgba(255,255,255,0.05);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  padding:18px 0;
}

.header-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.site-logo{
  width:58px;
  height:58px;

  object-fit:contain;

  border-radius:16px;

  box-shadow:
    0 0 25px rgba(0,229,255,0.35);
}

.logo h1{
  font-size:24px;
  font-weight:800;
}

/* =========================================
   NAVIGATION
========================================= */

.nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.nav a,
.dropbtn{

  color:#c7d2ea;

  text-decoration:none;

  background:none;
  border:none;

  font-size:15px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s;

  font-family:'Inter',sans-serif;

  position:relative;

  padding:8px 0;
}

/* HOVER */

.nav a:hover,
.dropbtn:hover,
.nav .active{
  color:#00e5ff;
}

/* UNDERLINE */

.nav a::after,
.dropbtn::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#00e5ff;

  transition:0.3s;
}

.nav a:hover::after,
.dropbtn:hover::after,
.nav .active::after{
  width:100%;
}

/* =========================================
   DROPDOWN FIX
========================================= */

.dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

/* DROPDOWN PANEL */

.dropdown-content{

  position:absolute;

  top:100%;
  left:0;

  /* FIXED GAP ISSUE */
  margin-top:0;

  min-width:280px;

  background:
    rgba(10,17,36,0.98);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:20px;

  overflow:hidden;

  display:none;

  backdrop-filter:blur(20px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 40px rgba(0,229,255,0.08);

  animation:
    dropdownFade 0.25s ease;

  z-index:9999;

  /* HOVER SAFE AREA */
  padding-top:12px;
}

/* KEEP OPEN */

.dropdown:hover .dropdown-content,
.dropdown-content:hover{
  display:block;
}

/* MENU LINKS */

.dropdown-content a{

  display:block;

  padding:15px 20px;

  color:#dbe7ff;

  transition:0.3s;

  border-bottom:
    1px solid rgba(255,255,255,0.04);

  text-decoration:none;
}

.dropdown-content a:last-child{
  border-bottom:none;
}

.dropdown-content a:hover{

  background:
    rgba(0,229,255,0.12);

  color:#00e5ff;

  padding-left:28px;
}

/* ANIMATION */

@keyframes dropdownFade{

  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================
   HEADER BUTTONS
========================================= */

.header-buttons{
  display:flex;
  gap:15px;
}

.btn{

  padding:14px 28px;

  border:none;

  border-radius:14px;

  cursor:pointer;

  font-weight:600;

  transition:0.3s;
}

.btn-outline{

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.1);

  color:white;

  backdrop-filter:blur(12px);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.12);
}

.btn-primary{

  background:
    linear-gradient(135deg,#00e5ff,#0066ff);

  color:white;

  box-shadow:
    0 0 25px #00b7ff55;
}

.btn-primary:hover{

  transform:
    translateY(-3px) scale(1.03);

  box-shadow:
    0 0 35px #00c3ff99;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{

  min-height:100vh;

  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:60px;

  padding:80px 0;
}

/* BADGE */

.badge{

  display:inline-block;

  padding:12px 22px;

  border-radius:100px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(0,229,255,0.25);

  color:#7fefff;

  margin-bottom:30px;

  backdrop-filter:blur(12px);
}

/* HERO TITLE */

.hero h2{

  font-size:74px;

  line-height:1.05;

  font-weight:900;
}

.gradient-text{

  background:
    linear-gradient(
      90deg,
      #00e5ff,
      #4f7dff,
      #b75cff
    );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

/* HERO TEXT */

.hero p{

  margin-top:30px;

  color:#a7b1c8;

  font-size:20px;

  line-height:1.8;

  max-width:650px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
}

/* =========================================
   STATS
========================================= */

.stats{
  display:flex;
  gap:25px;
  margin-top:55px;
}

.stat-card{

  flex:1;

  padding:28px;

  border-radius:28px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);
}

.stat-card h3{

  font-size:42px;

  font-weight:900;

  background:
    linear-gradient(
      90deg,
      #00e5ff,
      #b75cff
    );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.stat-card p{
  margin-top:10px;
  font-size:15px;
  color:#95a0ba;
}

/* =========================================
   FEATURES
========================================= */

.features{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{

  color:#7fefff;

  text-transform:uppercase;

  letter-spacing:3px;

  font-size:14px;

  font-weight:700;
}

.section-title h2{

  margin-top:18px;

  font-size:56px;

  font-weight:900;
}

/* GRID */

.feature-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:30px;
}

/* CARD */

.feature-card{

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  padding:40px;

  transition:0.4s;

  backdrop-filter:blur(20px);
}

.feature-card:hover{

  transform:translateY(-10px);

  border-color:#00d9ff66;

  box-shadow:
    0 0 40px #00bfff22;
}

/* ICON */

.feature-icon{

  width:75px;
  height:75px;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      #00e5ff22,
      #7a5cff22
    );

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:36px;

  margin-bottom:25px;
}

/* =========================================
   FOOTER
========================================= */

footer{

  padding:40px 0;

  text-align:center;

  color:#7f8ca8;

  border-top:
    1px solid rgba(255,255,255,0.08);

  margin-top:100px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1000px){

  .hero{
    grid-template-columns:1fr;
  }

  .hero h2{
    font-size:56px;
  }
}

@media(max-width:768px){

  .header-top{
    flex-direction:column;
    gap:20px;
  }

  .nav{
    justify-content:center;
    gap:18px;
  }

  .stats{
    flex-direction:column;
  }
}

@media(max-width:600px){

  .hero h2{
    font-size:42px;
  }

  .nav{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .dropdown-content{

    position:relative;

    width:100%;

    top:10px;

    left:0;
  }
}
