* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.page {
  min-height: 100svh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px 28px;
}

.landing {
  width: min(100%, 1600px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: min(100%, 1600px);
  max-height: 72svh;
  object-fit: contain;
  display: block;
  user-select: none;
  pointer-events: none;
}

.interest-form {
  width: min(650px, 78vw);
  height: 58px;
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  border: 1px solid rgba(180, 180, 180, 0.56);
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  margin-top: 22px;
}

.interest-form input,
.interest-form button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(245, 245, 245, 0.92);
  height: 100%;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
}

.interest-form input {
  padding: 0 25px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.interest-form input::placeholder {
  color: rgba(150, 150, 150, 0.82);
}

.interest-form button {
  border-left: 1px solid rgba(180, 180, 180, 0.56);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2.3px;
  font-weight: 600;
  transition: background 220ms ease, color 220ms ease;
}

.interest-form button:hover,
.interest-form button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.copyright {
  margin: 44px 0 0;
  color: rgba(180, 180, 180, 0.72);
  font-size: 13px;
  letter-spacing: 8px;
  text-align: center;
}

.honeypot {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .page {
    padding: 14px 12px 24px;
    align-items: flex-start;
  }

  .hero {
    width: 150vw;
    max-width: none;
    margin-left: 0;
    max-height: none;
  }

  .interest-form {
    width: min(92vw, 650px);
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 18px;
  }

  .interest-form input,
  .interest-form button {
    height: 52px;
  }

  .interest-form button {
    border-left: 0;
    border-top: 1px solid rgba(180, 180, 180, 0.56);
  }

  .copyright {
    font-size: 11px;
    letter-spacing: 5px;
    margin-top: 34px;
  }
}
