@charset "UTF-8";

.home-onboarding-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(117, 89, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #0e2bd1 0%, #1f6ff5 38%, #38c7f4 100%);
}

.home-onboarding-body::before,
.home-onboarding-body::after {
  display: none;
}

.home-onboarding {
  width: min(100% - 20px, 430px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 0 26px;
  position: relative;
  z-index: 1;
}

.home-onboarding-visual {
  min-height: 56vh;
  padding: 10px 18px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-visual-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.42;
}

.home-visual-glow-left {
  top: 12%;
  left: 2%;
  background: rgba(120, 208, 255, 0.42);
}

.home-visual-glow-right {
  right: 0;
  bottom: 16%;
  background: rgba(255, 255, 255, 0.22);
}

.home-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 34px rgba(10, 28, 102, 0.22);
}

.home-brand-pill img {
  max-width: 122px;
  max-height: 22px;
  object-fit: contain;
}

.home-visual-card {
  width: 100%;
  min-height: 320px;
  padding: 26px 20px 16px;
  border-radius: 42px 42px 64px 64px;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 48px rgba(8, 32, 110, 0.22);
  position: relative;
  overflow: hidden;
}

.home-visual-card::before {
  content: "";
  position: absolute;
  inset: 28px 26px 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
}

.home-visual-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  margin: 20px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(13, 36, 120, 0.22));
}

.home-onboarding-content {
  margin-top: -18px;
  padding: 24px 22px 26px;
  border-radius: 34px 34px 28px 28px;
  background: rgba(255, 255, 255, 0.98);
  color: #281f41;
  box-shadow: 0 -10px 34px rgba(17, 37, 117, 0.12);
  position: relative;
  z-index: 2;
}

.home-progress-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.home-progress-dots span {
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(119, 125, 146, 0.28);
}

.home-progress-dots span.active {
  width: 34px;
  background: linear-gradient(145deg, #8b5cf6, #a855f7);
}

.home-copy-block h1 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 12px;
  color: #2c2250;
}

.home-copy-block p {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #71678f;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 20px;
}

.home-feature-card {
  min-height: 76px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f1ff, #edf6ff);
  border: 1px solid rgba(138, 92, 246, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #45356f;
  font-size: 11px;
  font-weight: 700;
}

.home-feature-card i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #8b5cf6, #a855f7);
  color: #ffffff;
  font-size: 15px;
}

.home-primary-actions {
  display: grid;
  gap: 12px;
}

.home-start-btn,
.home-secondary-btn {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-start-btn {
  background: linear-gradient(145deg, #8b38f7, #b24bff);
  color: #ffffff;
  box-shadow: 0 22px 34px rgba(154, 67, 255, 0.24);
}

.home-secondary-btn {
  background: #f3ecff;
  color: #5f4a90;
  border: 1px solid rgba(138, 92, 246, 0.12);
}

.home-start-btn:hover,
.home-secondary-btn:hover {
  transform: translateY(-1px);
}

.home-start-btn.btn-loading span,
.home-secondary-btn.btn-loading span {
  visibility: hidden;
}

.home-start-btn.btn-loading::after,
.home-secondary-btn.btn-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  animation: spin 0.6s linear infinite;
}

@media (max-width: 480px) {
  .home-onboarding {
    width: calc(100% - 18px);
    padding-bottom: 18px;
  }

  .home-onboarding-visual {
    min-height: 52vh;
    padding-left: 8px;
    padding-right: 8px;
  }

  .home-visual-card {
    min-height: 290px;
    border-radius: 34px 34px 54px 54px;
  }

  .home-copy-block h1 {
    font-size: 25px;
  }

  .home-feature-strip {
    grid-template-columns: 1fr;
  }
}
