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

body {
  font-family: 'Montserrat', sans-serif;
  background: #020816;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding: 40px 20px;
}

.background-overlay {
  position: fixed;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.7)
    ),
    url('images/background.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 1;
}

.background-overlay::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 110, 255, 0.15),
      transparent 60%
    );

  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-top: 40px;

  width: 100%;
  max-width: 700px;
}

.logo {
  width: 240px;
  margin-bottom: 30px;

  filter: drop-shadow(0 0 20px rgba(0,110,255,0.35));
}

h1 {
  font-size: 82px;
  font-weight: 700;
  letter-spacing: 14px;
  line-height: 1;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 14px;

  color: #0084ff;

  margin-top: 12px;
}

.tagline {
  margin-top: 50px;

  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 6px;

  color: rgba(255,255,255,0.75);
}

.divider {
  width: 80px;
  height: 2px;

  background: #0084ff;

  margin: 50px 0 30px 0;

  box-shadow: 0 0 12px rgba(0,132,255,0.8);
}

.coming-soon {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 8px;

  margin-bottom: 24px;
}

.description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;

  color: rgba(255,255,255,0.7);

  max-width: 520px;
  margin-bottom: 40px;
}

.signup-wrapper {
  width: 100%;
  max-width: 620px;
}

.signup-form {
  width: 100%;

  display: flex;
  align-items: center;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(0,132,255,0.35);

  border-radius: 14px;

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.signup-form:focus-within {
  border-color: rgba(0,132,255,0.8);

  box-shadow:
    0 0 25px rgba(0,132,255,0.18);
}

.signup-form input[type="email"] {
  flex: 1;

  background: transparent;
  border: none;
  outline: none;

  color: #ffffff;

  font-size: 16px;
  font-family: inherit;

  padding: 22px 24px;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.signup-form button {
  width: 90px;
  height: 68px;

  border: none;
  outline: none;

  background: linear-gradient(
    135deg,
    #0077ff,
    #0051ff
  );

  color: white;

  font-size: 28px;
  cursor: pointer;

  transition: 0.25s ease;
}

.signup-form button:hover {
  transform: scale(1.03);

  box-shadow:
    0 0 20px rgba(0,110,255,0.6);
}

.hidden-field {
  position: absolute;
  left: -5000px;
}

#mce-responses {
  margin-top: 18px;
}

.response {
  display: none;

  font-size: 14px;
  font-weight: 400;

  color: #ff6666;

  letter-spacing: 1px;
}

.response.success {
  color: #4dff9c;
}

.footer {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 12px;
  letter-spacing: 3px;

  color: rgba(255,255,255,0.4);

  margin-top: 60px;
}

@media (max-width: 768px) {

  h1 {
    font-size: 52px;
    letter-spacing: 8px;
  }

  h2 {
    font-size: 22px;
    letter-spacing: 8px;
  }

  .coming-soon {
    font-size: 28px;
  }

  .tagline {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;

    text-align: center;
  }

}