* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.logo {
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 8px;
}

.tagline {
  position: absolute;
  top: 55%;
  width: 100%;
  text-align: center;
  color: gold;
}

.product {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
}

.product-card {
  border: 1px solid gold;
  padding: 40px;
  width: 300px;
  text-align: center;
}

.product-card button {
  margin-top: 20px;
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 10px 20px;
}

.about, .early-access {
  padding: 80px 20px;
  text-align: center;
}

.early-access input {
  padding: 10px;
  width: 250px;
}

.early-access button {
  padding: 10px 20px;
  background: gold;
  border: none;
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}
