* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #09090f;
  color: #f2f4ff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 8vw;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 20%,
      rgba(108, 255, 222, 0.15),
      transparent 60%),
    radial-gradient(800px 400px at 80% 10%,
      rgba(124, 92, 255, 0.18),
      transparent 60%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(9, 9, 15, 0.85),
      rgba(9, 9, 15, 0.45));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6cffde;
  box-shadow: 0 0 12px rgba(108, 255, 222, 0.8);
}

.brand__name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero__title {
  margin: 28px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero__subtitle {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: rgba(242, 244, 255, 0.78);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #6cffde, #7c5cff);
  color: #09090f;
  box-shadow: 0 12px 24px rgba(108, 255, 222, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #f2f4ff;
  border: 1px solid rgba(242, 244, 255, 0.3);
}

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

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(242, 244, 255, 0.65);
}

.hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}

.hero__glow--left {
  left: -120px;
  bottom: 10%;
  background: #6cffde;
}

.hero__glow--right {
  right: -120px;
  top: 10%;
  background: #7c5cff;
}

@media (max-width: 720px) {
  .hero {
    padding: 80px 6vw;
  }

  .hero__subtitle {
    font-size: 1rem;
  }
}