/* Waitlist landing — clean, high-contrast, no fluff */

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

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --mid: #6b6b6b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e0e0dd;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
}

html { font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--black);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Page layout ─────────────────────────────── */

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Hero ────────────────────────────────────── */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
}

.hero-inner {
  max-width: 580px;
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 20px;
}

.subhead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 36px;
}

/* ── Waitlist form ───────────────────────────── */

.wl-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.wl-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.wl-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  font-size: 1rem;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}

.wl-input:focus {
  border-color: var(--accent);
}

.wl-input::placeholder { color: #aaa; }

.wl-btn {
  height: 48px;
  padding: 0 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: background 0.15s, opacity 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wl-btn:hover:not(:disabled) { background: var(--accent-hover); }

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

.wl-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.wl-btn.loading .wl-btn-label { opacity: 0.5; }
.wl-btn.loading .wl-btn-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.wl-msg {
  font-size: 0.875rem;
  min-height: 1.4em;
  transition: color 0.15s;
}

.wl-msg--error { color: #dc2626; }
.wl-msg--ok    { color: #16a34a; }

.wl-success {
  font-size: 1.125rem;
  font-weight: 600;
  color: #16a34a;
  padding: 12px 0;
}

.fine-print {
  font-size: 0.8125rem;
  color: #aaa;
  margin-top: 16px;
}

/* ── Value props ─────────────────────────────── */

.props {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.prop {
  flex: 1;
  background: var(--off-white);
  padding: 40px 32px;
  text-align: center;
}

.prop-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
}

.prop h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.prop p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--mid);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 600px) {
  .hero { padding: 60px 20px 48px; }

  .wl-row {
    flex-direction: column;
  }

  .wl-btn {
    width: 100%;
    justify-content: center;
  }

  .props {
    flex-direction: column;
    gap: 1px;
  }

  .prop { padding: 32px 24px; }
}
