.hero-teaser {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 20px;
  translate: -50% 0;
  width: min(900px, 86vw);
  min-height: 58px;
  padding: 10px 14px 10px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  background: #070e1dcc;
  box-shadow: 0 12px 35px #0006;
  backdrop-filter: blur(14px);
}

.hero-teaser-title {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #f0f5fc;
  font-size: 12px;
  font-weight: 750;
}

.hero-teaser-title small {
  margin: 0;
  color: #6fb8ff;
  font-size: 10px;
  font-weight: 600;
}

.hero-teaser-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42a8ff;
  box-shadow: 0 0 14px #42a8ff;
}

.hero-teaser-features {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  color: #9aa8ba;
  font-size: 11px;
}

.hero-teaser-features span {
  position: relative;
}

.hero-teaser-features span + span::before {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3f8ed0;
  content: "";
}

.hero-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #79beff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero-teaser-link span {
  font-size: 14px;
  transition: translate .2s;
}

.hero-teaser-link:hover {
  color: #fff;
}

.hero-teaser-link:hover span {
  translate: 0 2px;
}

@media (max-width: 640px) {
  .hero-teaser {
    top: 72px;
    width: 88vw;
    min-height: 76px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .hero-teaser-features {
    grid-column: 1 / -1;
    gap: 12px;
    font-size: 10px;
  }

  .hero-teaser-features span + span::before {
    left: -7px;
  }
}
