.home-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 46, 113, 0.08), transparent 38%),
    radial-gradient(circle at 80% 0%, rgba(255, 138, 0, 0.1), transparent 36%),
    linear-gradient(135deg, #f7fafc, #eef2ff);
  color: #0f172a;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.home-page--embedded {
  min-height: auto;
  padding: 32px 0;
  background: transparent;
}

.home-hero {
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-hero__card {
  width: min(960px, 100%);
  text-align: center;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: homeFadeInUp 1.2s ease;
}

.home-hero__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  color: #0b1221;
  animation: homeSlideIn 1.3s ease;
}

.home-hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 720px;
  color: #1f2937;
  animation: homeFadeIn 1.6s ease;
}

.home-hero__notice {
  display: inline-block;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(229, 46, 113, 0.08);
  border: 1px solid rgba(229, 46, 113, 0.25);
  color: #9f1239;
  font-weight: 600;
}

.home-hero__cta {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  border: 0;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(229, 46, 113, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: homeBounce 2s infinite;
}

.home-hero__cta:hover,
.home-hero__cta:focus-visible {
  background: linear-gradient(135deg, #e52e71, #ff8a00);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(229, 46, 113, 0.4);
  outline: none;
}

.home-hero__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(229, 46, 113, 0.25), 0 12px 30px rgba(229, 46, 113, 0.35);
}

.home-hero__cta.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
  animation: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .home-page {
    padding: 32px 18px;
  }

  .home-hero__card {
    padding: 36px 26px;
    border-radius: 20px;
  }

  .home-hero__title {
    font-size: 2.15rem;
  }

  .home-hero__text {
    font-size: 0.98rem;
  }

  .home-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-hero__card {
    padding: 28px 22px;
  }

  .home-hero__title {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__card,
  .home-hero__title,
  .home-hero__text,
  .home-hero__cta {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes homeFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes homeFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes homeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

