/* Letsallbuy — launch waitlist only (Cloudflare Pages) */
:root {
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ink: #1c1917;
  --muted: #57534e;
  --border: #e7e5e4;
  --secondary: #44403c;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.06);
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.launch-waitlist-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 45%, #f8fafc 100%);
}

.launch-waitlist {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 16px 56px;
}

.launch-waitlist__card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 24px 26px;
}

.launch-waitlist__logo-wrap {
  margin: 0 0 20px;
  text-align: center;
}

.launch-waitlist__logo {
  display: block;
  max-width: min(100%, 260px);
  height: auto;
  margin: 0 auto;
}

.launch-waitlist__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}

.launch-waitlist__lead,
.launch-waitlist__hint {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 14px;
}

.launch-waitlist__hint {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.launch-waitlist__form {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #f0ece6;
}

.launch-waitlist__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
}

.launch-waitlist__input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 0.95rem;
}

.launch-waitlist__input:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 1px;
  border-color: #93c5fd;
}

.launch-waitlist__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fafaf9;
  color: var(--secondary);
  transition: background 0.15s, transform 0.1s;
}

.btn:hover {
  background: #f5f5f4;
}

.btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.btn:active {
  transform: translateY(1px);
}

.launch-waitlist__submit {
  justify-self: start;
}

.launch-waitlist__msg {
  min-height: 1.25em;
  margin: 16px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #166534;
}
