/* Join the private beta — the exit funnel veil. Full-screen, above the app
   and the analyst widget, so nothing behind it is clickable. */
.beta-veil {
  position: fixed; inset: 0; z-index: 9700;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 7, 10, 0.92); backdrop-filter: blur(6px);
  padding: 24px; overflow-y: auto;
}
.beta-card {
  background: var(--surface-1, #0d1017);
  border: 1px solid var(--border, #232a3a);
  border-radius: 14px; padding: 32px 30px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.beta-card-wide { max-width: 720px; }
.beta-mark { width: 44px; height: 44px; margin-bottom: 12px; }
.beta-card h2 {
  font-family: var(--font-display, Georgia, serif); font-weight: 300;
  font-size: 1.7rem; color: var(--text-primary, #e6edf3); margin: 0 0 10px;
}
.beta-sub { color: var(--text-secondary, #a8b3c2); font-size: 14px; line-height: 1.6; margin: 0 0 22px; }
.beta-form { text-align: left; display: flex; flex-direction: column; gap: 6px; }
.beta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.beta-form label { font-size: 12px; color: var(--text-secondary, #a8b3c2); margin-top: 8px; }
.beta-opt { color: var(--text-dim, #6b8299); }
.beta-form input, .beta-form select {
  background: var(--surface-2, #151a26); border: 1px solid var(--border, #232a3a);
  border-radius: 8px; padding: 10px 12px; color: var(--text-primary, #e6edf3);
  font-size: 14px; width: 100%;
}
.beta-error { color: var(--status-bad, #f87171); font-size: 13px; margin: 6px 0 0; }
.beta-submit {
  margin-top: 16px; background: var(--accent-blue, #7dd3fc); color: #05070a;
  border: none; border-radius: 8px; padding: 12px; font-size: 15px; font-weight: 600; cursor: pointer;
}
.beta-submit:disabled { opacity: 0.6; cursor: default; }
.beta-out {
  margin-top: 14px; background: none; border: none; color: var(--text-dim, #6b8299);
  font-size: 13px; cursor: pointer;
}
.beta-out:hover { color: var(--text-secondary, #a8b3c2); }
.beta-sched-title { margin-top: 4px; }
/* The scheduler hand-off is a link styled as the primary button (it opens Zoom
   in a new tab), so it needs the block/centring an <a> does not get for free. */
.beta-book-link {
  display: block; text-align: center; text-decoration: none; margin-top: 18px;
}

/* Native slot picker: the real open times, one tappable row each. */
.beta-slots { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.beta-slot {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--surface-2, #151a26); color: var(--text-primary, #e6edf3);
  border: 1px solid var(--border, #232a3a); border-radius: 10px;
  padding: 13px 15px; font-size: 15px; font-weight: 500;
}
.beta-slot:hover { border-color: var(--accent-blue, #7dd3fc); }
.beta-slot:disabled { opacity: 0.55; cursor: default; }
.beta-more {
  align-self: center; margin-top: 4px; background: none; border: none;
  color: var(--accent-blue, #7dd3fc); font-size: 14px; cursor: pointer; padding: 6px;
}
.beta-more:hover { text-decoration: underline; }
.beta-more:disabled { opacity: 0.55; cursor: default; }
.beta-slots-count { text-align: center; font-size: 12px; color: var(--text-dim, #6b8299); margin: 2px 0 0; }

/* The always-present in-demo CTA (leave early into the beta funnel). Bottom-
   left, clear of the analyst launcher (bottom-right) and the countdown pill. */
.beta-cta {
  position: fixed; left: 20px; bottom: 20px; z-index: 9000;
  background: var(--accent-blue, #7dd3fc); color: #05070a;
  border: none; border-radius: 999px; padding: 11px 18px; font-size: 14px;
  font-weight: 600; cursor: pointer; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.beta-cta:hover { filter: brightness(1.06); }
@media (max-width: 640px) {
  .beta-cta { left: 12px; bottom: 12px; padding: 10px 15px; font-size: 13px; }
}
