@charset "UTF-8";

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.pending-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 2rem;
  box-sizing: border-box;
  text-align: center;
  color: #222;
  word-break: keep-all;
}

.pending-page__logo {
  display: block;
  width: 100%;
  max-width: min(90vw, 96rem);
  height: auto;
  margin: 0 auto;
}

.pending-page__title {
  margin: 4rem 0 1.6rem;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #222;
}

.pending-page__desc {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 767.98px) {
  .pending-page {
    padding: 3rem 1.6rem;
  }

  .pending-page__title {
    margin-top: 3rem;
    font-size: 7vw;
  }

  .pending-page__desc {
    font-size: 5vw;
  }
}
