* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.28);
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  transition: opacity 700ms ease;
}

.intro.is-leaving {
  pointer-events: none;
  opacity: 0;
}

.intro video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.intro-controls {
  position: absolute;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  gap: 18px;
}

.text-button {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 4px 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-button:hover,
.text-button:focus-visible {
  border-color: #fff;
}

.site {
  min-height: 100vh;
  opacity: 0;
  transition: opacity 900ms ease;
}

.site.is-visible {
  opacity: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: #000;
}

.coming-soon-art {
  display: block;
  width: min(100%, 1366px);
  height: auto;
  max-height: calc(100svh - 36px);
  object-fit: contain;
}

.footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 96px) clamp(22px, 7vw, 96px) 24px;
}

.footer-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(120px, 230px) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.footer-logo {
  width: min(210px, 100%);
  justify-self: center;
}

.signup {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.signup h1 {
  margin: 0 0 30px;
  max-width: 620px;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.form-row {
  display: flex;
  border-bottom: 1px solid #fff;
}

.form-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px 2px;
  background: transparent;
  color: #fff;
}

.form-row input::placeholder {
  color: #7d7d7d;
}

.form-row button {
  border: 0;
  padding: 14px 0 14px 24px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-row button:hover,
.form-row button:focus-visible {
  opacity: 0.7;
}

.form-message {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.copyright {
  width: min(1080px, 100%);
  margin: 72px auto 0;
  color: #686868;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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: 680px) {
  .hero {
    min-height: 78svh;
    padding: 10px;
  }

  .coming-soon-art {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    width: 126px;
  }

  .signup h1 {
    margin-inline: auto;
  }

  .form-row {
    text-align: left;
  }

  .copyright {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }

  .site {
    opacity: 1;
  }
}
