@import url("/assets/site.v1.css");

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

.waitlist-form {
  width: min(690px, 100%);
  margin: 2.5rem auto 0;
  text-align: left;
}

.waitlist-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.waitlist-row input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 1.1rem;
  border: 1px solid rgba(227, 201, 143, 0.42);
  border-radius: 0;
  outline: 0;
  color: #f4ecdc;
  background: rgba(8, 10, 11, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  font: 1rem var(--sans);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist-row input[type="email"]::placeholder {
  color: rgba(233, 223, 204, 0.46);
}

.waitlist-row input[type="email"]:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(227, 201, 143, 0.12);
}

.waitlist-button {
  min-height: 56px;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
}

.waitlist-button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.waitlist-consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 0.72rem;
  align-items: start;
  max-width: 630px;
  margin-top: 1rem;
  color: rgba(233, 223, 204, 0.6);
  font-size: 0.75rem;
  line-height: 1.55;
}

.waitlist-consent input {
  width: 16px;
  height: 16px;
  margin: 0.12rem 0 0;
  accent-color: var(--gold-bright);
}

.waitlist-consent a,
.waitlist-status a,
.site-footer .copyright a {
  color: var(--gold-bright);
  text-underline-offset: 0.2em;
}

.waitlist-turnstile {
  width: min(100%, 300px);
  min-height: 0;
  margin-top: 1rem;
}

.waitlist-status {
  min-height: 1.5em;
  margin: 0.8rem 0 0;
  color: rgba(233, 223, 204, 0.74);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.5;
}

.waitlist-status[data-state="success"] {
  color: var(--gold-bright);
}

.waitlist-status[data-state="error"] {
  color: #e7a7a1;
}

.waitlist-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.simple-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 75% 15%, rgba(103, 31, 37, 0.16), transparent 33%),
    #101214;
}

.simple-header {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  border-bottom: 1px solid rgba(233, 223, 204, 0.12);
}

.simple-main {
  display: grid;
  place-items: center;
  padding: clamp(4rem, 9vw, 8rem) 1.5rem;
}

.simple-panel {
  width: min(760px, 100%);
}

.simple-panel h1 {
  margin: 0;
  color: #f5eddf;
  font: 400 clamp(3.1rem, 8vw, 6.4rem)/0.95 var(--serif);
  letter-spacing: -0.045em;
}

.simple-lede {
  margin: 1.5rem 0 0;
  color: var(--parchment-dim);
  font: 1.15rem/1.7 var(--serif);
}

.simple-copy {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  color: rgba(233, 223, 204, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

.simple-copy h2 {
  margin: 2.4rem 0 0.6rem;
  color: var(--gold-bright);
  font: 500 1.35rem/1.3 var(--serif);
}

.simple-copy h2:first-child {
  margin-top: 0;
}

.simple-copy p {
  margin: 0.45rem 0;
}

.simple-copy a {
  color: var(--gold-bright);
}

.simple-action {
  margin-top: 2rem;
}

.simple-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.5rem, 5vw, 5.5rem);
  border-top: 1px solid rgba(233, 223, 204, 0.1);
  color: rgba(233, 223, 204, 0.46);
  background: #0b0d0e;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .waitlist-row {
    grid-template-columns: 1fr;
  }

  .waitlist-button {
    width: 100%;
  }

  .simple-header {
    min-height: 80px;
    padding-inline: 1.15rem;
  }

  .simple-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
