/* ── Field labels ── */
.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 10px;
  font-family: var(--mono);
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* ── Seed grid ── */
.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1.25rem;
}

.seed-word {
  position: relative;
}

.seed-num {
  position: absolute;
  top: 7px;
  left: 8px;
  font-size: 9px;
  color: var(--text-dim);
  font-family: var(--mono);
  pointer-events: none;
  z-index: 1;
}

.seed-input {
  width: 100%;
  padding: 22px 8px 7px 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-text-security: disc;
  text-security: disc;
}

.seed-input:focus {
  border-color: rgba(127,255,110,0.3);
}

.seed-input.visible {
  -webkit-text-security: none;
  text-security: none;
}

/* ── Seed toggle ── */
.seed-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-sec);
  font-family: var(--mono);
  cursor: pointer;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.seed-toggle input[type=checkbox] {
  accent-color: var(--accent);
}

.seed-mode-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.seed-mode-toggle button {
  padding: 6px 16px;
  border: 1px solid #555;
  background: transparent;
  color: #aaa;
  border-radius: 6px;
  cursor: pointer;
}

.seed-mode-toggle button.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}
