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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6%;
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span,
h1 span,
h2 span {
  color: #b7ff3c;
}

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

nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
  color: #b7ff3c;
}

.nav-btn,
.primary-btn {
  background: #b7ff3c;
  color: #050505;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 8%;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2000&q=90")
    center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  color: #b
