.hero {
  position: relative; /* wichtig für absolute CTA */
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 20, 0.75);
  z-index: 1;
}

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

.headline {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(90deg, var(--neon-mint), var(--hyper-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.subtext {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #b8b8b8;
}

.hero-cta {
  margin-top: 2.5rem;
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  background: linear-gradient(90deg, var(--neon-mint), var(--hyper-cyan));
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 232, 255, 0.4);
}

@media (max-width: 768px) {
  .headline { font-size: 2.2rem; }
  .subtext { font-size: 1rem; }
}