.home-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.home-hero {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.home-hero__content {
  max-width: 760px;
  text-align: center;
}

.home-hero__logo-wrap {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(106, 13, 173, 0.16), rgba(106, 13, 173, 0.05));
  border: 1px solid rgba(181, 126, 220, 0.24);
}

.home-hero__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.home-hero__eyebrow {
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: -0.05em;
  max-width: 880px;
  margin-inline: auto;
}

.home-hero__description {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 1.02rem;
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
    padding: 24px 0 40px;
  }

  .home-hero__logo-wrap {
    width: 92px;
    height: 92px;
  }
}
