/* =============================================================================
   Boot-Wizard + Lock-Modal
   ============================================================================= */
.boot-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
}

.boot-wizard {
  width: 100%;
  max-width: 640px;
}

.boot-wizard__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.boot-wizard__brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.20);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.40);
  color: var(--mod-crm);
}

.boot-wizard__intro {
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.boot-wizard__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.boot-wizard__highlight {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.boot-wizard__highlight-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.375rem;
}
.boot-wizard__highlight-body {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

.boot-wizard__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.boot-wizard__path-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 120ms ease;
}
.boot-wizard__path-input:focus-within {
  border-color: rgba(37, 99, 235, 0.50);
}
.boot-wizard__path-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
  padding: 0;
}
.boot-wizard__path-input input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.boot-wizard__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.5rem 0 1rem;
}
.boot-wizard__examples-label {
  font-size: 11px;
  color: var(--text-dim);
}
.boot-wizard__example {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.boot-wizard__example:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.boot-wizard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.boot-wizard__hint {
  font-size: 11px;
  color: var(--text-dim);
  margin: 0;
  flex: 1;
}

/* Lock Modal */
.lock-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lock-modal {
  width: 100%;
  max-width: 520px;
  background: var(--mod-base);
  border: 2px solid rgba(220, 38, 38, 0.6);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.lock-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.lock-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.15);
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.50);
  color: var(--mod-alert);
}

.lock-modal__meta {
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
}
.lock-modal__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 4px 0;
}
.lock-modal__meta-key {
  color: var(--text-muted);
}
.lock-modal__meta-val {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  word-break: break-all;
}

.lock-modal__warning {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.25rem;
}
.lock-modal__warning strong {
  font-weight: 600;
  color: var(--mod-alert);
}

.lock-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
