.home-page {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(31, 111, 235, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
}

.home {
  width: min(100%, 720px);
  padding: 56px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home h1 {
  margin: 20px 0 14px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.15;
}

.home p {
  margin: 0 auto;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-width: 180px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(31, 111, 235, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.action:hover {
  transform: translateY(-1px);
  background: var(--primary-hover);
}

@media (max-width: 520px) {
  .home {
    padding: 40px 22px;
  }
}
