/* ============================================================
   Yoona.one 2.0 — герой лендинга (Explee-style, тёмный, EN).
   Точка входа в онбординг: поле сайта + «Talk to Yoona» →
   onboarding.html?site=…
   ============================================================ */

/* Херо-секция: контент может быть выше вьюпорта — не обрезаем */
.main-hero {
  height: auto;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 60px;
}

/* Чипы над заголовком */
.hero-chips {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}
.hero-chips li + li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

/* Заголовок */
.main-hero__content-article__title {
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 18px;
}
.main-hero__content-article__title h1 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
}
.hero-title__big {
  display: block;
}
.hero-title__sub {
  display: block;
  font-size: 0.62em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

/* Строка перед полем сайта */
.hero-subline {
  margin: 2px 0 14px;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* Подзаголовок */
.main-hero__content-article__descr {
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.45;
  max-width: 620px;
  margin-bottom: 26px;
}
.main-hero__content-article__descr p {
  margin: 0;
}

/* CTA: $30 бесплатных кредитов */
.hero-credits {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.hero-credits:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(155, 103, 248, 0.7);
}
.hero-credits:active {
  transform: translateY(1px);
}
.hero-credits svg {
  color: #b79cff;
}

/* Поле сайта + кнопка Talk to Yoona */
.hero-start {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(700px, 100%);
  margin: 20px 0 0;
}
.hero-start__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 60px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hero-start__field:focus-within {
  border-color: rgba(155, 103, 248, 0.9);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(155, 103, 248, 0.2);
}
.hero-start__field > svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}
.hero-start__field input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.hero-start__field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.hero-start__btn {
  flex-shrink: 0;
  height: 60px;
  padding: 0 28px;
  font-size: 16px;
}
.hero-start__btn svg {
  fill: #08222c;
}

/* Описание под полем — выделено панелью, чтобы не терялось на фоне */
.main-hero__content-article__text {
  max-width: 700px;
  margin: 26px 0 0;
  padding: 16px 22px;
  border-radius: 16px;
  background: rgba(9, 7, 23, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.main-hero__content-article__text p {
  margin: 0;
}

/* Мобильная адаптация */
@media (max-width: 900px) {
  .main-hero {
    padding-top: 122px;
    padding-bottom: 48px;
  }
  .hero-chips {
    gap: 6px 12px;
    margin-bottom: 14px;
  }
  .hero-chips li {
    font-size: 12.5px;
  }
  .main-hero__content-article__title {
    margin-bottom: 14px;
  }
  .main-hero__content-article__descr {
    margin-bottom: 22px;
  }
  .hero-start {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-start__btn {
    width: 100%;
  }
  .main-hero__content-article__text {
    margin-top: 20px;
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* Невысокие экраны — ужимаем вертикаль */
@media (max-height: 840px) and (min-width: 901px) {
  .main-hero {
    padding-top: 118px;
  }
  .main-hero__content-article__title {
    font-size: clamp(26px, 3.1vw, 44px);
  }
  .hero-start__field,
  .hero-start__btn {
    height: 54px;
  }
  .main-hero__content-article__text {
    margin-top: 20px;
    padding: 13px 20px;
  }
}
