/* Home page entrypoint */
/* Home-specific styles currently live in base.css because several sections are reused across other website pages. */

.home-development-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(62, 33, 47, 0.34);
  backdrop-filter: blur(7px);
  animation: home-development-modal-fade-in 0.24s ease both;
}

.home-development-modal.is-leaving {
  animation: home-development-modal-fade-out 0.22s ease forwards;
}

.home-development-modal-card {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 410px);
  padding: 34px 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(224, 93, 145, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 224, 238, 0.94), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 239, 196, 0.5), transparent 32%),
    rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 72px rgba(51, 25, 38, 0.26);
  animation: home-development-modal-card-in 0.28s ease both;
}

.home-development-modal-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff79ad, #e1437c);
  box-shadow: 0 14px 24px rgba(222, 67, 124, 0.24);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
}

.home-development-modal-card h2 {
  margin: 0;
  color: #372431;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.home-development-modal-card p {
  margin: 10px 0 22px;
  color: #806572;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
}

.home-development-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(222, 67, 124, 0.12);
  border-radius: 999px;
  background: rgba(255, 245, 249, 0.9);
  color: #c74174;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.home-development-modal-close:hover {
  background: #ffe6f0;
}

.home-development-modal-action {
  min-width: 142px;
  padding: 11px 20px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff659e, #db3d78);
  box-shadow: 0 12px 22px rgba(220, 60, 120, 0.22);
  color: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.home-development-modal-action:hover {
  transform: translateY(-1px);
}

body.home-development-modal-open {
  overflow: hidden;
}

.home-faq-section {
  margin-top: 18px;
  padding: 28px 0 12px;
  border-top: 1px solid rgba(243, 214, 223, 0.72);
}

.home-faq-list {
  max-width: 860px;
}

@keyframes home-development-modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes home-development-modal-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes home-development-modal-card-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
