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

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 20% 20%, #0f0f0f, #000 70%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; position: relative; z-index: 10;
}
.logo { font-weight: 700; font-size: 1.25rem; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: #aaa; text-decoration: none; transition: color .3s; }
.nav-links a:hover { color: #fff; }
.dashboard-btn { position: relative; }
.dashboard-btn button {
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.26), #2e2e2e);
  color: #fff; padding: .5rem 1rem; border: 0;
  border-radius: .5rem; cursor: pointer; font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.badge {
  position: absolute; top: -14px; right: -24px;
  background: #ffea00; color: #000; font-size: .7rem; font-weight: 800;
  padding: 3px 7px; border-radius: 4px; transform: rotate(10deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.hero {
  text-align: center; padding: 6rem 2rem; max-width: 900px;
  margin: 0 auto; position: relative; z-index: 1;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; }
.gradient-text {
  background: linear-gradient(to right, #ffffff, #e6e6e6, #474747);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { color: #bbb; margin-top: 1rem; font-size: 1.15rem; }
.buttons { margin-top: 2rem; display: flex; justify-content: center; gap: 1rem; }
button.primary {
  background: #fff; color: #000; padding: .9rem 1.8rem; border-radius: 999px;
  font-weight: 700; border: 0; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
button.ghost {
  background: transparent; border: 1px solid #666; padding: .9rem 1.8rem;
  border-radius: 999px; color: #fff; cursor: pointer;
  transition: all .3s;
}
button.ghost:hover { border-color: #aaa; }

.carousel {
  position: absolute;
  right: -50%;
  top: 20%;
  width: 300px;
  height: 500px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
   mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
}
.carousel-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.carousel-item {
  margin: .5rem 0;
  padding: .7rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  border: 1px solid rgba(255,255,255,.12);
  color: #e5e7eb;
  font-size: .95rem;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.carousel-item::before {
  content: "";
  display: inline-block;
  width: .5rem; height: .5rem; border-radius: 999px;
  background: #ffffff; margin-right: .5rem; vertical-align: middle;
}

.stats { text-align: center; padding: 2rem; color: #aaa; }
.stats .highlight { color: #fff; font-weight: 700; }

#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
