*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: #f0f8ff;
  background-color: #000;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  text-align: center;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/images/background.png") center center / cover
    no-repeat;
  z-index: -2;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: -1;
}

.header {
  width: 100%;
  max-width: 52rem;
}

.company-name {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(100, 220, 255, 0.35);
}

.slogan {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ee8ff;
  line-height: 1.6;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.launching-soon {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(80, 200, 255, 0.45);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

.footer {
  width: 100%;
  max-width: 48rem;
}

.mission {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: rgba(240, 248, 255, 0.88);
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(240, 248, 255, 0.45);
}

@media (max-width: 600px) {
  .page::before {
    background-position: left center;
    background-size: cover;
  }

  .page {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 2rem 1.25rem;
    justify-content: space-between;
  }
}
