/* Ось Personal 3.1.0-alpha.4 — единый верхний блок точно по эталону Главной. */

/*
 * Ошибка прошлых версий: дополнительный полупрозрачный слой накладывался
 * поверх уже существующих оранжевых градиентов отдельных разделов.
 * В результате свечение складывалось и превращалось в большой коричневый шар.
 *
 * Теперь каждый верхний блок получает ОДИН фон — тот же фон, что у
 * .home-lucy-card. Старые локальные свечения и псевдоэлементы полностью
 * заменяются, а не накладываются сверху.
 */
.hero-card,
.money-hero,
.tasks-hero,
.health-hero,
.habits-hero,
.nutrition-hero,
.analytics-hero,
.lucy-hero-card,
.goals-hero,
.people-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 22%, #f5b54445, #0000 34%),
    linear-gradient(135deg, #1b2849fa, #0f192dfa) !important;
  border-color: #f5b5443d !important;
}

/* Удаляем дополнительный слой из предыдущего hotfix. */
.hero-card::before,
.money-hero::before,
.tasks-hero::before,
.health-hero::before,
.habits-hero::before,
.nutrition-hero::before,
.analytics-hero::before,
.lucy-hero-card::before,
.goals-hero::before,
.people-hero::before {
  content: none !important;
  display: none !important;
}

/* Одна тонкая окружность справа снизу — точная копия .home-lucy-card::after. */
.hero-card::after,
.money-hero::after,
.tasks-hero::after,
.health-hero::after,
.habits-hero::after,
.nutrition-hero::after,
.analytics-hero::after,
.lucy-hero-card::after,
.goals-hero::after,
.people-hero::after {
  content: "" !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 1px solid #f5c56829 !important;
  border-radius: 50% !important;
  width: 260px !important;
  height: 260px !important;
  position: absolute !important;
  z-index: 0 !important;
  top: auto !important;
  left: auto !important;
  right: -115px !important;
  bottom: -165px !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  box-shadow: 0 0 55px #f5b54429, inset 0 0 55px #f5b54414 !important;
}

.hero-card > *,
.money-hero > *,
.tasks-hero > *,
.health-hero > *,
.habits-hero > *,
.nutrition-hero > *,
.analytics-hero > *,
.lucy-hero-card > *,
.goals-hero > *,
.people-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-card::after,
  .money-hero::after,
  .tasks-hero::after,
  .health-hero::after,
  .habits-hero::after,
  .nutrition-hero::after,
  .analytics-hero::after,
  .lucy-hero-card::after,
  .goals-hero::after,
  .people-hero::after {
    right: -145px !important;
    bottom: -178px !important;
  }
}
