/* Landing v2 — minimal choose page (task 3, 2026-08-08 landing-v2-minimal-choose).
   Same-origin only: no CDN, no @import, no remote font. Scoped to .lv2 and
   consumes the shared tokens.css semantics (--surface-*, --text-*, --link,
   --control, --border-subtle) so it stays theme-aware for free, the same
   convention as landing-v1.css. */
.lv2 {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 64px;
  font-family: var(--font-body);
  color: var(--text-default);
  direction: rtl;
  text-align: right;
}
.lv2 * { box-sizing: border-box; }

.lv2-h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 32px;
  text-align: center;
  color: var(--text-default);
}

.lv2-choices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin: 0 0 24px;
}

.lv2-box {
  flex: 1 1 260px;
  min-width: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  transition: border-color .15s, transform .1s;
}
.lv2-box:hover { border-color: var(--control); }
.lv2-box:focus-visible { outline: 3px solid var(--control); outline-offset: 3px; }

.lv2-box-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--control);
  color: var(--text-on-panel);
  border-color: var(--control);
}
.lv2-box-primary:hover { transform: translateY(-1px); }

.lv2-box-secondary { color: var(--text-default); }

.lv2-box-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.lv2-box-btn:focus-visible { outline: 3px solid var(--control); outline-offset: 3px; }

.lv2-soon {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--text-muted);
}

.lv2-app-form {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: right;
}
/* The [hidden] default (progressive reveal) + the JS toggle set form.hidden, but
   the author `display: flex` above otherwise overrides the UA [hidden]{display:none}
   rule, leaving the form visible on load and the reveal a no-op. This wins by
   specificity so hidden actually hides. */
.lv2-app-form[hidden] {
  display: none;
}
.lv2-app-heading {
  font-size: 14px;
  color: var(--text-muted);
}
.lv2-app-email {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--surface-page);
  color: var(--text-default);
  font: inherit;
}
.lv2-app-email:focus-visible { outline: 3px solid var(--control); outline-offset: 2px; }
.lv2-app-submit {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: none;
  background: var(--control);
  color: var(--text-on-panel);
  font-weight: var(--fw-semibold);
  cursor: pointer;
}
.lv2-app-submit:hover { opacity: .92; }
.lv2-app-submit:focus-visible { outline: 3px solid var(--control); outline-offset: 2px; }

.lv2-app-joined { color: var(--signal-live); font-weight: var(--fw-semibold); margin-top: var(--space-2); }
.lv2-app-error { color: var(--danger); font-weight: var(--fw-semibold); margin-top: var(--space-2); }

.lv2-signin {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}
.lv2-signin a { color: var(--link); }
