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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
}

.page-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 2em;
}

/* === LOGO SECTION === */

.logo {
  display: flex;
  align-items: center;
  gap: .75em;
}

.logo img {
  height: 3em;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand {
  font-family: 'Playfair', serif;
  font-size: 4em;
  line-height: .75;
}

.tagline {
  font-size: .7em;
  font-weight: 100;
  letter-spacing: -0.01em;
  color: #cccccc;
}

/* === MAIN CONTENT SECTION === */

.main-content {
  display: flex;
  flex: 7;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1.4em;
}

.launch-date {
  /* margin-top: 1.5em; */
  display: inline-flex;
  font-size: 13px;
  color: #777777;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

h1 {
  font-family: 'Italiana', sans-serif;
  font-size: 68px;
  font-weight: 500;
  line-height: .75;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.subheading {
  margin-top: -1em;
  font-size: 18px;
  font-weight: 100;
  color: #999999;
  line-height: 1;
}

/* === FORM SECTION === */

form {
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type="email"] {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  transition: all 0.2s;
}

input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

button {
  padding: 15px 32px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

button:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.message {
  top: -16px;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 12px;
}

.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* === TRUST SECTION === */

.trust-section {
  overflow: hidden;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
}

.logos-scroll {
  display: flex;
  gap: 2em;
  animation: scroll 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  opacity: 0.45;
  transition: opacity 0.3s;
  gap: 10px;
}

.logo-item img {
  height: 34px;
  object-fit: contain;
}

.logo-name {
  color: #999;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 0.75;
  cursor: pointer;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === MEDIA QUERIES === */

@media screen and (min-width: 650px) {
  .logo {
      gap: 1.5em;
    }
  
    .logo img {
      height: 4em;
    }
  
    .brand {
      font-size: 5.5em;
    }
  
    .tagline {
      font-size: 1em;
    }

    .subheading {
      margin-top: -.5em;
    }

  .input-group {
    flex-direction: row;
    gap: 12px;
  }
}

@media screen and (min-width: 700px) {
  .logo {
    gap: 2em;
  }

  .logo img {
    height: 6em;
  }

  .brand {
    font-size: 120px;
  }

  .tagline {
    font-size: 1.5em;
  }

  h1 {
    margin-top: 0.1em;
    font-size: 96px;
  }

  .subheading {
    font-size: 36px;
    margin-top: 0;
  }
}

@media screen and (max-height: 650px) {
  .logo img {
    max-height: 4em;
  }

  .brand {
    font-size: 5.5em;
  }

  .tagline {
    font-size: 1em;
  }

  .main-content {
    margin-top: 1.5em;
  }

  .subheading {
    font-size: 2.2em;
  }
}

@media screen and (max-height: 450px) and (min-width: 650px) {
  body {
    overflow-y: auto;
  }

  .page-wrapper {
    width: 100%;
    height: auto;
  }

  .logo {
    margin-top: 10px;
    height: 20px;
  }

  .main-content {
    gap: 2em;
    margin-top: 4em;
  }

  h1 {
    font-size: 4em;
  }

  .subheading {
    font-size: 1.5em;
  }
}

@media screen and (max-height: 375px) {
  .main-content {
    margin-top: 4em;
  }

  h1 {
    font-size: 48px;
  }
}