.header-kickstarter {
  padding: 10px 14px !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
@media (min-width: 640px) {
  .header-kickstarter {
    min-height: 44px !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }
}
.header-kickstarter img {
  display: none !important;
}

#waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}
#waitlist-modal[hidden] {
  display: none !important;
}
.waitlist-card {
  width: 100%;
  max-width: 440px;
  border: 1px solid #000;
  background: #ffef20;
  box-shadow: 6px 6px 0 #000;
  padding: 28px 24px 24px;
  position: relative;
  font-family: Monologo, "Courier New", monospace;
  color: #1d1d1b;
}
.waitlist-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.waitlist-card p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
.waitlist-card label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.waitlist-card input {
  width: 100%;
  height: 44px;
  margin: 0 0 14px;
  border: 1px solid #000;
  background: #fff;
  padding: 0 12px;
  font: inherit;
  font-size: 15px;
  box-sizing: border-box;
}
.waitlist-card button[type="submit"] {
  width: 100%;
  height: 52px;
  border: 1px solid #000;
  background: #05ce78;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px #000;
}
.waitlist-card button[type="submit"]:hover {
  background: #23dd91;
}
.waitlist-card button[type="submit"]:active {
  transform: translateY(4px);
  box-shadow: none;
}
.waitlist-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.waitlist-status {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.waitlist-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 180px;
  padding: 12px 0 8px;
}
.waitlist-loading[hidden],
.waitlist-success[hidden] {
  display: none !important;
}
.waitlist-loading p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.waitlist-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid #000;
  background: #05ce78;
  box-shadow: 4px 4px 0 #000;
  animation: waitlist-spin 0.75s linear infinite;
}
@keyframes waitlist-spin {
  to {
    transform: rotate(360deg);
  }
}

.waitlist-success {
  text-align: center;
  padding: 18px 4px 8px;
}
.waitlist-success h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}
.waitlist-success p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.waitlist-success.is-in {
  animation: waitlist-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes waitlist-pop {
  0% {
    opacity: 0;
    transform: scale(0.86) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.waitlist-paper {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  border: 1px solid #000;
  transform: translate(-50%, -50%);
  animation-name: waitlist-paper-fly;
  animation-timing-function: cubic-bezier(0.12, 0.72, 0.28, 1);
  animation-fill-mode: forwards;
}
@keyframes waitlist-paper-fly {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)) scale(0.85);
  }
}
