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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
  min-height:100vh;
}

.noise{
  position:fixed;
  inset:0;
  opacity:0.03;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 20%, white 1px, transparent 1px);
  background-size:6px 6px;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:30px 80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  backdrop-filter:blur(20px);
  background:rgba(5,5,5,0.55);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
  font-size:34px;
  font-weight:900;
  letter-spacing:-2px;
}

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

nav a{
  text-decoration:none;
  color:rgba(255,255,255,0.75);
  font-size:15px;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

.nav-actions{
  display:flex;
  gap:14px;
}

.btn{
  border:none;
  cursor:pointer;
  transition:0.35s;
  font-family:inherit;
}

.btn.ghost{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

.btn.solid{
  background:white;
  color:black;
  font-weight:700;
}

.btn.large{
  padding:20px 34px;
  border-radius:999px;
  font-size:16px;
}

.btn:not(.large){
  padding:12px 22px;
  border-radius:999px;
}

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

.hero{
  width:100%;
  min-height:100vh;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  padding:160px 100px 100px;
  gap:100px;
}

.hero-left{
  max-width:760px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:30px;
  color:rgba(255,255,255,0.6);
  font-size:15px;
}

.hero-title{
  font-size:110px;
  line-height:0.9;
  letter-spacing:-6px;
  font-weight:900;
}

.hero-description{
  margin-top:35px;
  font-size:22px;
  line-height:1.7;
  color:rgba(255,255,255,0.65);
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
}

.hero-right{
  display:flex;
  justify-content:center;
  align-items:center;
}

.dashboard-card{
  width:100%;
  max-width:560px;
  min-height:560px;
  border-radius:40px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(40px);
  padding:40px;
  position:relative;
  overflow:hidden;
  box-shadow:
    0 20px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.dashboard-card::before{
  content:'';
  position:absolute;
  inset:-100px;
  background:
    radial-gradient(circle at top right,
      rgba(0,255,163,0.18),
      transparent 40%);
  pointer-events:none;
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:80px;
}

.label{
  color:rgba(255,255,255,0.55);
  font-size:14px;
}

.card-top h2{
  margin-top:10px;
  font-size:72px;
  letter-spacing:-4px;
  font-weight:900;
}

.growth{
  background:rgba(0,255,163,0.12);
  color:#00ffa3;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(0,255,163,0.2);
  font-weight:700;
}

.chart{
  position:absolute;
  bottom:40px;
  left:40px;
  right:40px;
  height:280px;
  display:flex;
  align-items:flex-end;
  gap:14px;
}

.bar{
  flex:1;
  border-radius:30px 30px 0 0;
  background:linear-gradient(
    180deg,
    #8fffd7,
    #00ffa3
  );
  box-shadow:
    0 0 30px rgba(0,255,163,0.25);
}

@media(max-width:1200px){

  .hero{
    grid-template-columns:1fr;
    padding-top:180px;
  }

  .hero-title{
    font-size:80px;
  }

  .dashboard-card{
    margin-top:50px;
  }
}

@media(max-width:768px){

  .navbar{
    padding:24px;
  }

  nav{
    display:none;
  }

  .hero{
    padding:160px 24px 80px;
  }

  .hero-title{
    font-size:58px;
    letter-spacing:-3px;
  }

  .hero-description{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .dashboard-card{
    min-height:460px;
  }

  .card-top h2{
    font-size:48px;
  }
}
