* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #000;
  color: #f2f0ea;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.garage-landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.garage-video-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.garage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.notify-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 20px;
  border-top: 1px solid rgba(242, 240, 234, 0.12);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.86) 38%, #000);
  backdrop-filter: blur(10px);
}

.notify-form {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.notify-form h1 {
  grid-column: 1 / -1;
  margin: 0;
  color: #f2f0ea;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.notify-input {
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(242, 240, 234, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2f0ea;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.notify-input::placeholder {
  color: rgba(242, 240, 234, 0.48);
}

.notify-input:focus {
  border-color: rgba(242, 240, 234, 0.72);
}

.notify-button {
  height: 48px;
  border: 1px solid rgba(242, 240, 234, 0.84);
  border-radius: 4px;
  background: #f2f0ea;
  color: #000;
  padding: 0 20px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.notify-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: rgba(242, 240, 234, 0.72);
  font-size: 13px;
  text-align: center;
}

.notify-honeypot,
.notify-sink {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-waitlist-form {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-email-input,
.hero-notify-button {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  -webkit-text-fill-color: transparent;
  outline: none;
  opacity: 0;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero-email-input {
  left: 50%;
  bottom: 10.5%;
  width: min(52vw, 520px);
  height: min(8vh, 72px);
  transform: translateX(-58%);
  pointer-events: auto;
  caret-color: transparent;
}

.hero-email-input:focus,
.hero-email-input:focus-visible,
.hero-notify-button:focus,
.hero-notify-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.hero-notify-button {
  left: 50%;
  bottom: 10.5%;
  width: min(21vw, 210px);
  height: min(8vh, 72px);
  transform: translateX(94%);
  pointer-events: auto;
}

@media (max-width: 720px) {
  .notify-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notify-button {
    width: 100%;
  }

  .hero-email-input {
    bottom: 11%;
    width: 58vw;
    height: 7vh;
    transform: translateX(-56%);
  }

  .hero-notify-button {
    bottom: 11%;
    width: 28vw;
    height: 7vh;
    transform: translateX(82%);
  }
}
