/* ═════════════════════════════════════════════════════════════════════════════
 *   VEYA — Sovereign creation screen
 *   First-launch identity. Email/mobile or QR. The math creates the identity.
 * ═════════════════════════════════════════════════════════════════════════════ */

.sovereign-create {
  position: absolute; inset: 0; z-index: 45;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: var(--void);
  overflow-y: auto;
  animation: fadeUp 0.5s ease-out;
}

.sov-card {
  width: 100%; max-width: 380px;
  display: flex; flex-direction: column; gap: 18px;
}

.sov-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; align-self: center;
  animation: pulseGlow 3s ease-in-out infinite;
  color: var(--cyan);
}

.sov-title {
  font-family: var(--display); font-size: 28px; line-height: 1.2;
  font-weight: 500; letter-spacing: -0.02em; text-align: center;
  margin: 0;
}
.sov-title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.sov-body {
  font-size: 14px; line-height: 1.55; color: var(--ink-d);
  text-align: center; margin: 0;
}

.sov-toggle {
  display: flex; gap: 4px; padding: 4px;
  background: var(--void-2); border: 1px solid var(--line);
  border-radius: 12px;
}
.sov-toggle-btn {
  flex: 1; padding: 10px;
  border-radius: 8px;
  color: var(--ink-q); font-size: 13px; font-weight: 500;
  transition: all 0.2s;
}
.sov-toggle-btn.active {
  background: var(--grad); color: white;
}

.sov-pane {
  display: flex; flex-direction: column; gap: 12px;
}

.sov-label {
  font-size: 11px; color: var(--ink-q);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.sov-input {
  width: 100%; padding: 14px 16px;
  background: var(--void-2); border: 1px solid var(--line);
  border-radius: 12px; color: var(--ink);
  font-family: inherit; font-size: 15px;
  outline: 0; transition: border-color 0.2s;
}
.sov-input:focus { border-color: rgba(25, 210, 210, 0.5); }
.sov-input::placeholder { color: var(--ink-q); }

.sov-qr-stage {
  width: 100%; aspect-ratio: 1; max-height: 280px;
  border-radius: 16px; overflow: hidden;
  background: var(--void-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sov-qr-stage video {
  width: 100%; height: 100%; object-fit: cover;
}
.sov-qr-placeholder {
  color: var(--ink-q); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sov-qr-help {
  font-size: 12px; color: var(--ink-q); line-height: 1.5;
  text-align: center; margin: 0;
}

.sov-foot {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}

.sov-cta {
  width: 100%; padding: 16px 24px;
  border-radius: 999px;
  background: var(--ink); color: var(--void);
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.01em; transition: all 0.2s;
}
.sov-cta:hover {
  background: var(--grad); color: var(--ink);
  transform: translateY(-1px);
}

.sov-fineprint {
  font-size: 11px; color: var(--ink-q);
  line-height: 1.5; text-align: center;
  margin: 0;
}
