/* Waitlist — clean layout: solid bg, form above fold, one device mock, app screenshots */

.wl-body {
  margin: 0;
  min-height: 100dvh;
  min-height: 100vh;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  color: #f4f4f0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(57, 255, 20, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #0c0c0e 0%, #060605 40%, #080807 100%);
  -webkit-font-smoothing: antialiased;
}

.wl-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: max(1rem, env(safe-area-inset-top)) clamp(1rem, 4vw, 2rem) max(1.5rem, env(safe-area-inset-bottom));
}

.wl-brand {
  padding-bottom: 1.25rem;
}

/* —— Hero: copy + form left, device right —— */
.wl-top {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 880px) {
  .wl-top {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 2.5rem;
    align-items: start;
  }
}

.wl-h1 {
  font-size: clamp(1.65rem, 0.9rem + 2.4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  max-width: 18ch;
}

.wl-tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.08rem);
  color: #9a9588;
  font-weight: 600;
  line-height: 1.45;
  max-width: 34ch;
}

/* Form card */
.wl-form {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: rgba(18, 18, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  max-width: 420px;
}

.wl-role {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.wl-chip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}

.wl-chip.wl-chip--on {
  border-color: rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.08);
}

.wl-chip input {
  accent-color: #39ff14;
}

.wl-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (min-width: 420px) {
  .wl-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.wl-input {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  font: inherit;
  font-weight: 600;
}

.wl-input::placeholder {
  color: #6a6a78;
}

.wl-btn {
  padding: 0.8rem 1.2rem;
  border-radius: 11px;
  border: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #1a7a32, #39ff14);
  color: #050508;
  white-space: nowrap;
}

.wl-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.wl-msg {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  min-height: 1.25em;
}

.wl-msg--ok {
  color: #39ff14;
}

.wl-msg--err {
  color: #ff8a9a;
}

.wl-msg--info {
  color: #9a9588;
}

.wl-fine {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #7a7568;
  font-weight: 600;
}

.wl-fine strong {
  color: #c9a86c;
  font-weight: 800;
}

/* —— Device mock (single frame — screenshots from images/app/) —— */
.wl-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.wl-device {
  position: relative;
  width: min(300px, 88vw);
  aspect-ratio: 9 / 19.5;
  padding: 0.55rem;
  border-radius: 2.1rem;
  background: linear-gradient(160deg, #2e2e36 0%, #141418 50%, #0a0a0c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 28px 56px rgba(0, 0, 0, 0.5);
}

.wl-device-notch {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1.2rem;
  background: #0a0a0c;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.wl-device-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.65rem;
  overflow: hidden;
  background: #050508;
}

.wl-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.wl-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 1.25rem;
}

.wl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.wl-dot[aria-selected='true'] {
  background: #39ff14;
  transform: scale(1.15);
}

/* —— Short bullet strip —— */
.wl-strip {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wl-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 520px;
}

@media (min-width: 640px) {
  .wl-bullets {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: none;
  }
}

.wl-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #9a9588;
}

.wl-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #39ff14;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.wl-foot {
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.wl-foot .legal-contact {
  font-size: 0.8rem;
}

.wl-foot .legal-copy {
  font-size: 0.75rem;
  margin-top: 0.35rem;
}
